diff --git a/src/libs/RetellAI/Generated/RetellAI.IRetellAiClient.CreateWebCallV3.g.cs b/src/libs/RetellAI/Generated/RetellAI.IRetellAiClient.CreateWebCallV3.g.cs
new file mode 100644
index 00000000..d42596f2
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.IRetellAiClient.CreateWebCallV3.g.cs
@@ -0,0 +1,73 @@
+#nullable enable
+
+namespace RetellAI
+{
+ public partial interface IRetellAiClient
+ {
+ ///
+ /// Create a new web call and return browser connection details.
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateWebCallV3Async(
+
+ global::RetellAI.CreateWebCallV3Request request,
+ global::RetellAI.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create a new web call and return browser connection details.
+ ///
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task> CreateWebCallV3AsResponseAsync(
+
+ global::RetellAI.CreateWebCallV3Request request,
+ global::RetellAI.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ ///
+ /// Create a new web call and return browser connection details.
+ ///
+ ///
+ /// Unique id of agent used for the call. Your agent would contain the LLM Websocket url used for this call.
+ /// Example: oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD
+ ///
+ ///
+ /// Agent version reference. Supports a numeric version (for example 3) or a tag/environment name (for example "prod"). The string "latest" resolves to the most recently created version (the largest version number), and "latest_published" resolves to the most recently published version. When a tag is provided, resolution uses that exact tag assignment (including its dynamic variables). If the tag exists but is currently unassigned, it resolves to latest. When a numeric version, latest, or latest_published is provided, resolution applies dynamic variables from the preferred tag for that resolved version (most recently assigned), if any.
+ ///
+ ///
+ /// Override configuration for agent, retell LLM, or conversation flow settings for a specific call.
+ ///
+ ///
+ /// An arbitrary object for storage purpose only. You can put anything here like your internal customer id associated with the call. Not used for processing. You can later get this field from the call object.
+ ///
+ ///
+ /// Add optional dynamic variables in key value pairs of string that injects into your Response Engine prompt and tool description. Only applicable for Response Engine.
+ /// Example: {"customer_name":"John Doe"}
+ ///
+ ///
+ /// Start the call at this conversation flow node (stage). Must be a valid node id in the agent's conversation flow. Only applicable when the agent uses conversation flow as the response engine. Ignored for retell-llm agents.
+ /// Example: collect_info
+ ///
+ ///
+ /// Start the conversation in this state (stage). Must be a valid state name in the agent's Retell LLM. Only applicable when the agent uses Retell LLM with states. Ignored for conversation-flow agents.
+ /// Example: information_collection
+ ///
+ /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
+ /// The token to cancel the operation with
+ ///
+ global::System.Threading.Tasks.Task CreateWebCallV3Async(
+ string agentId,
+ global::RetellAI.AgentVersionReference? agentVersion = default,
+ global::RetellAI.AgentOverrideRequest? agentOverride = default,
+ object? metadata = default,
+ global::System.Collections.Generic.Dictionary? retellLlmDynamicVariables = default,
+ string? currentNodeId = default,
+ string? currentState = default,
+ global::RetellAI.AutoSDKRequestOptions? requestOptions = default,
+ global::System.Threading.CancellationToken cancellationToken = default);
+ }
+}
\ No newline at end of file
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus.g.cs
new file mode 100644
index 00000000..630f5f1a
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatusJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatusExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatusExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus2.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus2.g.cs
new file mode 100644
index 00000000..5d12e72e
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus2.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus2JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus2 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus2Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus2);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus2 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus2Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus2Nullable.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus2Nullable.g.cs
new file mode 100644
index 00000000..bb402482
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus2Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus2NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus2? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus2Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus2)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus2?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus2? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus2Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus3.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus3.g.cs
new file mode 100644
index 00000000..2d66c48a
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus3.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus3JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus3 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus3Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus3);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus3 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus3Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus3Nullable.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus3Nullable.g.cs
new file mode 100644
index 00000000..38bff06b
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus3Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus3NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus3? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus3Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus3)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus3?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus3? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus3Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus4.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus4.g.cs
new file mode 100644
index 00000000..2f90cdd0
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus4.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus4JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus4 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus4Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus4);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus4 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus4Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus4Nullable.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus4Nullable.g.cs
new file mode 100644
index 00000000..5105c3a6
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus4Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus4NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus4? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus4Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus4)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus4?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus4? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus4Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus5.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus5.g.cs
new file mode 100644
index 00000000..011aae4a
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus5.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus5JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus5 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus5Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus5);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus5 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus5Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus5Nullable.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus5Nullable.g.cs
new file mode 100644
index 00000000..f572b48a
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus5Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus5NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus5? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus5Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus5)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus5?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus5? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus5Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus6.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus6.g.cs
new file mode 100644
index 00000000..24bc11ed
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus6.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus6JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus6 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus6Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus6)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus6);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus6 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus6Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus6Nullable.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus6Nullable.g.cs
new file mode 100644
index 00000000..6510b41d
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatus6Nullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatus6NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus6? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatus6Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus6)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus6?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus6? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatus6Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatusNullable.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatusNullable.g.cs
new file mode 100644
index 00000000..33b8c783
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.CreateWebCallV3ResponseStatusNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class CreateWebCallV3ResponseStatusNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.CreateWebCallV3ResponseStatus? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.CreateWebCallV3ResponseStatusExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.CreateWebCallV3ResponseStatus)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.CreateWebCallV3ResponseStatus?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.CreateWebCallV3ResponseStatus? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::RetellAI.CreateWebCallV3ResponseStatusExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.V3CreateWebCallResponseTransport.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.V3CreateWebCallResponseTransport.g.cs
new file mode 100644
index 00000000..7b9e68bd
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.V3CreateWebCallResponseTransport.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class V3CreateWebCallResponseTransportJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.V3CreateWebCallResponseTransport Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.V3CreateWebCallResponseTransportExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.V3CreateWebCallResponseTransport)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.V3CreateWebCallResponseTransport);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.V3CreateWebCallResponseTransport value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::RetellAI.V3CreateWebCallResponseTransportExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonConverters.V3CreateWebCallResponseTransportNullable.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.V3CreateWebCallResponseTransportNullable.g.cs
new file mode 100644
index 00000000..9e059ea3
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonConverters.V3CreateWebCallResponseTransportNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace RetellAI.JsonConverters
+{
+ ///
+ public sealed class V3CreateWebCallResponseTransportNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::RetellAI.V3CreateWebCallResponseTransport? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::RetellAI.V3CreateWebCallResponseTransportExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::RetellAI.V3CreateWebCallResponseTransport)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::RetellAI.V3CreateWebCallResponseTransport?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::RetellAI.V3CreateWebCallResponseTransport? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::RetellAI.V3CreateWebCallResponseTransportExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonSerializerContext.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonSerializerContext.g.cs
index 508bc95a..a4a61257 100644
--- a/src/libs/RetellAI/Generated/RetellAI.JsonSerializerContext.g.cs
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonSerializerContext.g.cs
@@ -721,9 +721,14 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V2CallResponse), TypeInfoPropertyName = "V2CallResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V2WebCallResponse), TypeInfoPropertyName = "V2WebCallResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V2PhoneCallResponse), TypeInfoPropertyName = "V2PhoneCallResponse2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.IceServer))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.OneOf>), TypeInfoPropertyName = "OneOfStringIListString2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CallResponse), TypeInfoPropertyName = "V3CallResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3WebCallResponse), TypeInfoPropertyName = "V3WebCallResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3PhoneCallResponse), TypeInfoPropertyName = "V3PhoneCallResponse2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CreateWebCallResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CreateWebCallResponseTransport), TypeInfoPropertyName = "V3CreateWebCallResponseTransport2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CallBase))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CallBaseCallStatus), TypeInfoPropertyName = "V3CallBaseCallStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CallBaseDataStorageSetting), TypeInfoPropertyName = "V3CallBaseDataStorageSetting2")]
@@ -918,6 +923,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdatePhoneNumberRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreatePhoneCallRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3Request))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.RegisterPhoneCallRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.RegisterPhoneCallRequestDirection), TypeInfoPropertyName = "RegisterPhoneCallRequestDirection2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateCallMetadataRequest))]
@@ -1020,12 +1026,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponse4))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponseStatus2), TypeInfoPropertyName = "ListTestCaseDefinitionsResponseStatus22")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponse5))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponseStatus3), TypeInfoPropertyName = "ListTestCaseDefinitionsResponseStatus32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponse6))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponseStatus4), TypeInfoPropertyName = "ListTestCaseDefinitionsResponseStatus42")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponseStatus), TypeInfoPropertyName = "UpdateTestCaseDefinitionResponseStatus2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponse2))]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1044,6 +1044,12 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.LLMModel?), TypeInfoPropertyName = "NullableLLMModel_RetellAI_LLMModel")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponseStatus3), TypeInfoPropertyName = "ListTestCaseDefinitionsResponseStatus32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponse6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.ListTestCaseDefinitionsResponseStatus4), TypeInfoPropertyName = "ListTestCaseDefinitionsResponseStatus42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponseStatus), TypeInfoPropertyName = "UpdateTestCaseDefinitionResponseStatus2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponse2))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponseStatus2), TypeInfoPropertyName = "UpdateTestCaseDefinitionResponseStatus22")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponse3))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.UpdateTestCaseDefinitionResponseStatus3), TypeInfoPropertyName = "UpdateTestCaseDefinitionResponseStatus32")]
@@ -1532,12 +1538,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateAgentVersionResponse6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateAgentVersionResponseStatus5), TypeInfoPropertyName = "CreateAgentVersionResponseStatus52")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponseStatus), TypeInfoPropertyName = "PublishAgentVersionResponseStatus2_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponse2))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponseStatus2), TypeInfoPropertyName = "PublishAgentVersionResponseStatus22")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponse3))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponseStatus3), TypeInfoPropertyName = "PublishAgentVersionResponseStatus32")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponse4))]
internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1556,6 +1556,12 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.LLMModel?), TypeInfoPropertyName = "NullableLLMModel_RetellAI_LLMModel")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponseStatus), TypeInfoPropertyName = "PublishAgentVersionResponseStatus2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponse2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponseStatus2), TypeInfoPropertyName = "PublishAgentVersionResponseStatus22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponse3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponseStatus3), TypeInfoPropertyName = "PublishAgentVersionResponseStatus32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponse4))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponseStatus4), TypeInfoPropertyName = "PublishAgentVersionResponseStatus42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponse5))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PublishAgentVersionResponseStatus5), TypeInfoPropertyName = "PublishAgentVersionResponseStatus52")]
@@ -1701,6 +1707,18 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallResponseStatus5), TypeInfoPropertyName = "CreateWebCallResponseStatus52")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallResponse6))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallResponseStatus6), TypeInfoPropertyName = "CreateWebCallResponseStatus62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3Response))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus), TypeInfoPropertyName = "CreateWebCallV3ResponseStatus2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3Response2))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus2), TypeInfoPropertyName = "CreateWebCallV3ResponseStatus22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3Response3))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus3), TypeInfoPropertyName = "CreateWebCallV3ResponseStatus32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3Response4))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus4), TypeInfoPropertyName = "CreateWebCallV3ResponseStatus42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3Response5))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus5), TypeInfoPropertyName = "CreateWebCallV3ResponseStatus52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3Response6))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus6), TypeInfoPropertyName = "CreateWebCallV3ResponseStatus62")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteCallResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteCallResponseStatus), TypeInfoPropertyName = "DeleteCallResponseStatus2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteCallResponse2))]
@@ -2032,24 +2050,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.NullableLLMModel?), TypeInfoPropertyName = "NullableNullableLLMModel2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentRequestSttMode?), TypeInfoPropertyName = "NullableAgentRequestSttMode2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentRequestVocabSpecialization?), TypeInfoPropertyName = "NullableAgentRequestVocabSpecialization2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentRequestDenoisingMode?), TypeInfoPropertyName = "NullableAgentRequestDenoisingMode2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(long?))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentResponse?), TypeInfoPropertyName = "NullableAgentResponse2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AllOf?), TypeInfoPropertyName = "NullableAllOfStringFilterAgentListFilterChannel2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentListFilterChannelOp?), TypeInfoPropertyName = "NullableAgentListFilterChannelOp2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentListFilterChannelValue?), TypeInfoPropertyName = "NullableAgentListFilterChannelValue2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentListItemResponseChannel?), TypeInfoPropertyName = "NullableAgentListItemResponseChannel2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapNode?), TypeInfoPropertyName = "NullableAgentSwapNode2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.NodeBase?), TypeInfoPropertyName = "NullableNodeBase2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapNodeVariant2Type?), TypeInfoPropertyName = "NullableAgentSwapNodeVariant2Type2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PostCallAnalysisSetting?), TypeInfoPropertyName = "NullablePostCallAnalysisSetting2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapWebhookSetting?), TypeInfoPropertyName = "NullableAgentSwapWebhookSetting2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.TransferFailedEdge?), TypeInfoPropertyName = "NullableTransferFailedEdge2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.NodeInstruction?), TypeInfoPropertyName = "NullableNodeInstruction2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapToolType?), TypeInfoPropertyName = "NullableAgentSwapToolType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapToolExecutionMessageType?), TypeInfoPropertyName = "NullableAgentSwapToolExecutionMessageType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AnalysisData?), TypeInfoPropertyName = "NullableAnalysisData2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PostChatAnalysisData?), TypeInfoPropertyName = "NullablePostChatAnalysisData2")]
internal sealed partial class SourceGenerationContextChunk3 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -2068,6 +2068,24 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.LLMModel?), TypeInfoPropertyName = "NullableLLMModel_RetellAI_LLMModel")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentRequestDenoisingMode?), TypeInfoPropertyName = "NullableAgentRequestDenoisingMode2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(long?))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentResponse?), TypeInfoPropertyName = "NullableAgentResponse2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AllOf?), TypeInfoPropertyName = "NullableAllOfStringFilterAgentListFilterChannel2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentListFilterChannelOp?), TypeInfoPropertyName = "NullableAgentListFilterChannelOp2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentListFilterChannelValue?), TypeInfoPropertyName = "NullableAgentListFilterChannelValue2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentListItemResponseChannel?), TypeInfoPropertyName = "NullableAgentListItemResponseChannel2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapNode?), TypeInfoPropertyName = "NullableAgentSwapNode2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.NodeBase?), TypeInfoPropertyName = "NullableNodeBase2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapNodeVariant2Type?), TypeInfoPropertyName = "NullableAgentSwapNodeVariant2Type2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PostCallAnalysisSetting?), TypeInfoPropertyName = "NullablePostCallAnalysisSetting2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapWebhookSetting?), TypeInfoPropertyName = "NullableAgentSwapWebhookSetting2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.TransferFailedEdge?), TypeInfoPropertyName = "NullableTransferFailedEdge2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.NodeInstruction?), TypeInfoPropertyName = "NullableNodeInstruction2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapToolType?), TypeInfoPropertyName = "NullableAgentSwapToolType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AgentSwapToolExecutionMessageType?), TypeInfoPropertyName = "NullableAgentSwapToolExecutionMessageType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.AnalysisData?), TypeInfoPropertyName = "NullableAnalysisData2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.PostChatAnalysisData?), TypeInfoPropertyName = "NullablePostChatAnalysisData2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.BookAppointmentCalToolType?), TypeInfoPropertyName = "NullableBookAppointmentCalToolType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDoubleString2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.BooleanAnalysisDataType?), TypeInfoPropertyName = "NullableBooleanAnalysisDataType2")]
@@ -2332,9 +2350,11 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V2CallResponse?), TypeInfoPropertyName = "NullableV2CallResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V2WebCallResponse?), TypeInfoPropertyName = "NullableV2WebCallResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V2PhoneCallResponse?), TypeInfoPropertyName = "NullableV2PhoneCallResponse2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.OneOf>?), TypeInfoPropertyName = "NullableOneOfStringIListString2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CallResponse?), TypeInfoPropertyName = "NullableV3CallResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3WebCallResponse?), TypeInfoPropertyName = "NullableV3WebCallResponse2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3PhoneCallResponse?), TypeInfoPropertyName = "NullableV3PhoneCallResponse2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CreateWebCallResponseTransport?), TypeInfoPropertyName = "NullableV3CreateWebCallResponseTransport2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CallBaseCallStatus?), TypeInfoPropertyName = "NullableV3CallBaseCallStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3CallBaseDataStorageSetting?), TypeInfoPropertyName = "NullableV3CallBaseDataStorageSetting2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.V3PhoneCallResponseVariant1CallType?), TypeInfoPropertyName = "NullableV3PhoneCallResponseVariant1CallType2")]
@@ -2542,6 +2562,24 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateAssetResponseStatus?), TypeInfoPropertyName = "NullableCreateAssetResponseStatus2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateAssetResponseStatus2?), TypeInfoPropertyName = "NullableCreateAssetResponseStatus22")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateAssetResponseStatus3?), TypeInfoPropertyName = "NullableCreateAssetResponseStatus32")]
+ internal sealed partial class SourceGenerationContextChunk4 : global::System.Text.Json.Serialization.JsonSerializerContext
+ {
+ }
+
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
+ DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
+ Converters = new global::System.Type[]
+ {
+ })]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.NullableLLMModel), TypeInfoPropertyName = "NullableLLMModel_RetellAI_NullableLLMModel")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList), TypeInfoPropertyName = "IListDouble_System_Collections_Generic_IList_double")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList), TypeInfoPropertyName = "IListDouble_System_Collections_Generic_IList_double_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.LLMModel?), TypeInfoPropertyName = "NullableLLMModel_RetellAI_LLMModel")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateAssetResponseStatus4?), TypeInfoPropertyName = "NullableCreateAssetResponseStatus42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateKnowledgeBaseResponseStatus?), TypeInfoPropertyName = "NullableCreateKnowledgeBaseResponseStatus2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateKnowledgeBaseResponseStatus2?), TypeInfoPropertyName = "NullableCreateKnowledgeBaseResponseStatus22")]
@@ -2562,24 +2600,6 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateSmsChatResponseStatus6?), TypeInfoPropertyName = "NullableCreateSmsChatResponseStatus62")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteAgentResponseStatus?), TypeInfoPropertyName = "NullableDeleteAgentResponseStatus2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteAgentResponseStatus2?), TypeInfoPropertyName = "NullableDeleteAgentResponseStatus22")]
- internal sealed partial class SourceGenerationContextChunk4 : global::System.Text.Json.Serialization.JsonSerializerContext
- {
- }
-
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
- DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
- Converters = new global::System.Type[]
- {
- })]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.NullableLLMModel), TypeInfoPropertyName = "NullableLLMModel_RetellAI_NullableLLMModel")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList), TypeInfoPropertyName = "IListDouble_System_Collections_Generic_IList_double")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList), TypeInfoPropertyName = "IListDouble_System_Collections_Generic_IList_double_3")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.LLMModel?), TypeInfoPropertyName = "NullableLLMModel_RetellAI_LLMModel")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteAgentResponseStatus3?), TypeInfoPropertyName = "NullableDeleteAgentResponseStatus32")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteAgentResponseStatus4?), TypeInfoPropertyName = "NullableDeleteAgentResponseStatus42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteChatResponseStatus?), TypeInfoPropertyName = "NullableDeleteChatResponseStatus2_3")]
@@ -2810,6 +2830,12 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallResponseStatus4?), TypeInfoPropertyName = "NullableCreateWebCallResponseStatus42")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallResponseStatus5?), TypeInfoPropertyName = "NullableCreateWebCallResponseStatus52")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallResponseStatus6?), TypeInfoPropertyName = "NullableCreateWebCallResponseStatus62")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus?), TypeInfoPropertyName = "NullableCreateWebCallV3ResponseStatus2_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus2?), TypeInfoPropertyName = "NullableCreateWebCallV3ResponseStatus22")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus3?), TypeInfoPropertyName = "NullableCreateWebCallV3ResponseStatus32")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus4?), TypeInfoPropertyName = "NullableCreateWebCallV3ResponseStatus42")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus5?), TypeInfoPropertyName = "NullableCreateWebCallV3ResponseStatus52")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.CreateWebCallV3ResponseStatus6?), TypeInfoPropertyName = "NullableCreateWebCallV3ResponseStatus62")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteCallResponseStatus?), TypeInfoPropertyName = "NullableDeleteCallResponseStatus2_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteCallResponseStatus2?), TypeInfoPropertyName = "NullableDeleteCallResponseStatus22")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.DeleteCallResponseStatus3?), TypeInfoPropertyName = "NullableDeleteCallResponseStatus32")]
@@ -3027,6 +3053,8 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.OneOf>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
@@ -3046,6 +3074,24 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ internal sealed partial class SourceGenerationContextChunk5 : global::System.Text.Json.Serialization.JsonSerializerContext
+ {
+ }
+
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonSourceGenerationOptions(
+ DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
+ Converters = new global::System.Type[]
+ {
+ })]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.NullableLLMModel), TypeInfoPropertyName = "NullableLLMModel_RetellAI_NullableLLMModel")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList), TypeInfoPropertyName = "IListDouble_System_Collections_Generic_IList_double")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList), TypeInfoPropertyName = "IListDouble_System_Collections_Generic_IList_double_3")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::RetellAI.LLMModel?), TypeInfoPropertyName = "NullableLLMModel_RetellAI_LLMModel")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List), TypeInfoPropertyName = "ListDouble_System_Collections_Generic_List_double_3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
@@ -3058,7 +3104,7 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
- internal sealed partial class SourceGenerationContextChunk5 : global::System.Text.Json.Serialization.JsonSerializerContext
+ internal sealed partial class SourceGenerationContextChunk6 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
///
@@ -3237,6 +3283,7 @@ static void AddConverters(global::System.Text.Json.JsonSerializerOptions options
options.Converters.Add(new global::RetellAI.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::RetellAI.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::RetellAI.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::RetellAI.JsonConverters.OneOfJsonConverter>());
options.Converters.Add(new global::RetellAI.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::RetellAI.JsonConverters.AnyOfJsonConverter());
options.Converters.Add(new global::RetellAI.JsonConverters.OneOfJsonConverter());
@@ -4137,6 +4184,10 @@ public override bool CanConvert(global::System.Type typeToConvert)
|| typeToConvert == typeof(global::RetellAI.V2CallBaseDataStorageSetting?)
+ || typeToConvert == typeof(global::RetellAI.V3CreateWebCallResponseTransport)
+
+ || typeToConvert == typeof(global::RetellAI.V3CreateWebCallResponseTransport?)
+
|| typeToConvert == typeof(global::RetellAI.V3CallBaseCallStatus)
|| typeToConvert == typeof(global::RetellAI.V3CallBaseCallStatus?)
@@ -5845,6 +5896,30 @@ public override bool CanConvert(global::System.Type typeToConvert)
|| typeToConvert == typeof(global::RetellAI.CreateWebCallResponseStatus6?)
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus?)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus2)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus2?)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus3)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus3?)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus4)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus4?)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus5)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus5?)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus6)
+
+ || typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus6?)
+
|| typeToConvert == typeof(global::RetellAI.DeleteCallResponseStatus)
|| typeToConvert == typeof(global::RetellAI.DeleteCallResponseStatus?)
@@ -8528,6 +8603,16 @@ public override bool CanConvert(global::System.Type typeToConvert)
return new global::RetellAI.JsonConverters.V2CallBaseDataStorageSettingNullableJsonConverter();
}
+ if (typeToConvert == typeof(global::RetellAI.V3CreateWebCallResponseTransport))
+ {
+ return new global::RetellAI.JsonConverters.V3CreateWebCallResponseTransportJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.V3CreateWebCallResponseTransport?))
+ {
+ return new global::RetellAI.JsonConverters.V3CreateWebCallResponseTransportNullableJsonConverter();
+ }
+
if (typeToConvert == typeof(global::RetellAI.V3CallBaseCallStatus))
{
return new global::RetellAI.JsonConverters.V3CallBaseCallStatusJsonConverter();
@@ -12798,6 +12883,66 @@ public override bool CanConvert(global::System.Type typeToConvert)
return new global::RetellAI.JsonConverters.CreateWebCallResponseStatus6NullableJsonConverter();
}
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatusJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus?))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatusNullableJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus2))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus2JsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus2?))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus2NullableJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus3))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus3JsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus3?))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus3NullableJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus4))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus4JsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus4?))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus4NullableJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus5))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus5JsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus5?))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus5NullableJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus6))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus6JsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::RetellAI.CreateWebCallV3ResponseStatus6?))
+ {
+ return new global::RetellAI.JsonConverters.CreateWebCallV3ResponseStatus6NullableJsonConverter();
+ }
+
if (typeToConvert == typeof(global::RetellAI.DeleteCallResponseStatus))
{
return new global::RetellAI.JsonConverters.DeleteCallResponseStatusJsonConverter();
@@ -14174,7 +14319,7 @@ public override bool CanConvert(global::System.Type typeToConvert)
private sealed class LazyChunkResolver : global::System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver
{
private readonly object _gate = new();
- private readonly global::System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver?[] _resolvers = new global::System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver?[6];
+ private readonly global::System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver?[] _resolvers = new global::System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver?[7];
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo? GetTypeInfo(
global::System.Type type,
@@ -14221,6 +14366,8 @@ private sealed class LazyChunkResolver : global::System.Text.Json.Serialization.
4 => new SourceGenerationContextChunk4(new global::System.Text.Json.JsonSerializerOptions()),
5 => new SourceGenerationContextChunk5(new global::System.Text.Json.JsonSerializerOptions()),
+
+ 6 => new SourceGenerationContextChunk6(new global::System.Text.Json.JsonSerializerOptions()),
_ => throw new global::System.ArgumentOutOfRangeException(nameof(index)),
};
}
diff --git a/src/libs/RetellAI/Generated/RetellAI.JsonSerializerContextTypes.g.cs b/src/libs/RetellAI/Generated/RetellAI.JsonSerializerContextTypes.g.cs
index ff68e133..d20e28ba 100644
--- a/src/libs/RetellAI/Generated/RetellAI.JsonSerializerContextTypes.g.cs
+++ b/src/libs/RetellAI/Generated/RetellAI.JsonSerializerContextTypes.g.cs
@@ -2749,4935 +2749,5007 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::RetellAI.V3CallResponse? Type679 { get; set; }
+ public global::RetellAI.IceServer? Type679 { get; set; }
///
///
///
- public global::RetellAI.V3WebCallResponse? Type680 { get; set; }
+ public global::RetellAI.OneOf>? Type680 { get; set; }
///
///
///
- public global::RetellAI.V3PhoneCallResponse? Type681 { get; set; }
+ public global::RetellAI.V3CallResponse? Type681 { get; set; }
///
///
///
- public global::RetellAI.V3CallBase? Type682 { get; set; }
+ public global::RetellAI.V3WebCallResponse? Type682 { get; set; }
///
///
///
- public global::RetellAI.V3CallBaseCallStatus? Type683 { get; set; }
+ public global::RetellAI.V3PhoneCallResponse? Type683 { get; set; }
///
///
///
- public global::RetellAI.V3CallBaseDataStorageSetting? Type684 { get; set; }
+ public global::RetellAI.V3CreateWebCallResponse? Type684 { get; set; }
///
///
///
- public global::RetellAI.V3CallBaseLatency? Type685 { get; set; }
+ public global::RetellAI.V3CreateWebCallResponseTransport? Type685 { get; set; }
///
///
///
- public global::RetellAI.V3CallBaseCallCost? Type686 { get; set; }
+ public global::System.Collections.Generic.IList? Type686 { get; set; }
///
///
///
- public global::RetellAI.V3CallBaseLlmTokenUsage? Type687 { get; set; }
+ public global::RetellAI.V3CallBase? Type687 { get; set; }
///
///
///
- public global::RetellAI.V3PhoneCallResponseVariant1? Type688 { get; set; }
+ public global::RetellAI.V3CallBaseCallStatus? Type688 { get; set; }
///
///
///
- public global::RetellAI.V3PhoneCallResponseVariant1CallType? Type689 { get; set; }
+ public global::RetellAI.V3CallBaseDataStorageSetting? Type689 { get; set; }
///
///
///
- public global::RetellAI.V3PhoneCallResponseVariant1Direction? Type690 { get; set; }
+ public global::RetellAI.V3CallBaseLatency? Type690 { get; set; }
///
///
///
- public global::RetellAI.V3PhoneCallResponseVariant1TelephonyIdentifier? Type691 { get; set; }
+ public global::RetellAI.V3CallBaseCallCost? Type691 { get; set; }
///
///
///
- public global::RetellAI.V3WebCallResponseVariant1? Type692 { get; set; }
+ public global::RetellAI.V3CallBaseLlmTokenUsage? Type692 { get; set; }
///
///
///
- public global::RetellAI.V3WebCallResponseVariant1CallType? Type693 { get; set; }
+ public global::RetellAI.V3PhoneCallResponseVariant1? Type693 { get; set; }
///
///
///
- public global::RetellAI.V3ListCallsRequest? Type694 { get; set; }
+ public global::RetellAI.V3PhoneCallResponseVariant1CallType? Type694 { get; set; }
///
///
///
- public global::RetellAI.V3ListCallsRequestSortOrder? Type695 { get; set; }
+ public global::RetellAI.V3PhoneCallResponseVariant1Direction? Type695 { get; set; }
///
///
///
- public global::RetellAI.V2PhoneCallResponseVariant1? Type696 { get; set; }
+ public global::RetellAI.V3PhoneCallResponseVariant1TelephonyIdentifier? Type696 { get; set; }
///
///
///
- public global::RetellAI.V2PhoneCallResponseVariant1CallType? Type697 { get; set; }
+ public global::RetellAI.V3WebCallResponseVariant1? Type697 { get; set; }
///
///
///
- public global::RetellAI.V2PhoneCallResponseVariant1Direction? Type698 { get; set; }
+ public global::RetellAI.V3WebCallResponseVariant1CallType? Type698 { get; set; }
///
///
///
- public global::RetellAI.V2PhoneCallResponseVariant1TelephonyIdentifier? Type699 { get; set; }
+ public global::RetellAI.V3ListCallsRequest? Type699 { get; set; }
///
///
///
- public global::RetellAI.V2WebCallResponseVariant1? Type700 { get; set; }
+ public global::RetellAI.V3ListCallsRequestSortOrder? Type700 { get; set; }
///
///
///
- public global::RetellAI.V2WebCallResponseVariant1CallType? Type701 { get; set; }
+ public global::RetellAI.V2PhoneCallResponseVariant1? Type701 { get; set; }
///
///
///
- public global::RetellAI.VoiceResponse? Type702 { get; set; }
+ public global::RetellAI.V2PhoneCallResponseVariant1CallType? Type702 { get; set; }
///
///
///
- public global::RetellAI.VoiceResponseProvider? Type703 { get; set; }
+ public global::RetellAI.V2PhoneCallResponseVariant1Direction? Type703 { get; set; }
///
///
///
- public global::RetellAI.VoiceResponseGender? Type704 { get; set; }
+ public global::RetellAI.V2PhoneCallResponseVariant1TelephonyIdentifier? Type704 { get; set; }
///
///
///
- public global::RetellAI.VoicemailActionBridgeTransfer? Type705 { get; set; }
+ public global::RetellAI.V2WebCallResponseVariant1? Type705 { get; set; }
///
///
///
- public global::RetellAI.VoicemailActionBridgeTransferType? Type706 { get; set; }
+ public global::RetellAI.V2WebCallResponseVariant1CallType? Type706 { get; set; }
///
///
///
- public global::RetellAI.VoicemailActionHangup? Type707 { get; set; }
+ public global::RetellAI.VoiceResponse? Type707 { get; set; }
///
///
///
- public global::RetellAI.VoicemailActionHangupType? Type708 { get; set; }
+ public global::RetellAI.VoiceResponseProvider? Type708 { get; set; }
///
///
///
- public global::RetellAI.VoicemailActionPrompt? Type709 { get; set; }
+ public global::RetellAI.VoiceResponseGender? Type709 { get; set; }
///
///
///
- public global::RetellAI.VoicemailActionPromptType? Type710 { get; set; }
+ public global::RetellAI.VoicemailActionBridgeTransfer? Type710 { get; set; }
///
///
///
- public global::RetellAI.VoicemailActionStaticText? Type711 { get; set; }
+ public global::RetellAI.VoicemailActionBridgeTransferType? Type711 { get; set; }
///
///
///
- public global::RetellAI.VoicemailActionStaticTextType? Type712 { get; set; }
+ public global::RetellAI.VoicemailActionHangup? Type712 { get; set; }
///
///
///
- public global::RetellAI.IvrActionHangup? Type713 { get; set; }
+ public global::RetellAI.VoicemailActionHangupType? Type713 { get; set; }
///
///
///
- public global::RetellAI.IvrActionHangupType? Type714 { get; set; }
+ public global::RetellAI.VoicemailActionPrompt? Type714 { get; set; }
///
///
///
- public global::RetellAI.IvrAction? Type715 { get; set; }
+ public global::RetellAI.VoicemailActionPromptType? Type715 { get; set; }
///
///
///
- public global::RetellAI.WarmTransferPromptType? Type716 { get; set; }
+ public global::RetellAI.VoicemailActionStaticText? Type716 { get; set; }
///
///
///
- public global::RetellAI.WarmTransferStaticMessageType? Type717 { get; set; }
+ public global::RetellAI.VoicemailActionStaticTextType? Type717 { get; set; }
///
///
///
- public global::RetellAI.ConductorOverageConfigVariant1? Type718 { get; set; }
+ public global::RetellAI.IvrActionHangup? Type718 { get; set; }
///
///
///
- public global::RetellAI.ConductorOverageConfigVariant1Mode? Type719 { get; set; }
+ public global::RetellAI.IvrActionHangupType? Type719 { get; set; }
///
///
///
- public global::RetellAI.ConductorOverageConfigVariant2? Type720 { get; set; }
+ public global::RetellAI.IvrAction? Type720 { get; set; }
///
///
///
- public global::RetellAI.ConductorOverageConfigVariant2Mode? Type721 { get; set; }
+ public global::RetellAI.WarmTransferPromptType? Type721 { get; set; }
///
///
///
- public global::RetellAI.ConductorOverageConfigVariant3? Type722 { get; set; }
+ public global::RetellAI.WarmTransferStaticMessageType? Type722 { get; set; }
///
///
///
- public global::RetellAI.ConductorOverageConfigVariant3Mode? Type723 { get; set; }
+ public global::RetellAI.ConductorOverageConfigVariant1? Type723 { get; set; }
///
///
///
- public global::RetellAI.Contact? Type724 { get; set; }
+ public global::RetellAI.ConductorOverageConfigVariant1Mode? Type724 { get; set; }
///
///
///
- public global::RetellAI.ContactListResponse? Type725 { get; set; }
+ public global::RetellAI.ConductorOverageConfigVariant2? Type725 { get; set; }
///
///
///
- public global::RetellAI.ContactListResponseVariant2? Type726 { get; set; }
+ public global::RetellAI.ConductorOverageConfigVariant2Mode? Type726 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type727 { get; set; }
+ public global::RetellAI.ConductorOverageConfigVariant3? Type727 { get; set; }
///
///
///
- public global::RetellAI.ContactConversation? Type728 { get; set; }
+ public global::RetellAI.ConductorOverageConfigVariant3Mode? Type728 { get; set; }
///
///
///
- public global::RetellAI.ContactCall? Type729 { get; set; }
+ public global::RetellAI.Contact? Type729 { get; set; }
///
///
///
- public global::RetellAI.ContactChat? Type730 { get; set; }
+ public global::RetellAI.ContactListResponse? Type730 { get; set; }
///
///
///
- public global::RetellAI.ContactCallType? Type731 { get; set; }
+ public global::RetellAI.ContactListResponseVariant2? Type731 { get; set; }
///
///
///
- public global::RetellAI.ContactCallDirection? Type732 { get; set; }
+ public global::System.Collections.Generic.IList? Type732 { get; set; }
///
///
///
- public global::RetellAI.ContactCallSentiment? Type733 { get; set; }
+ public global::RetellAI.ContactConversation? Type733 { get; set; }
///
///
///
- public global::RetellAI.ContactChatType? Type734 { get; set; }
+ public global::RetellAI.ContactCall? Type734 { get; set; }
///
///
///
- public global::RetellAI.ContactChatDirection? Type735 { get; set; }
+ public global::RetellAI.ContactChat? Type735 { get; set; }
///
///
///
- public global::RetellAI.ContactChatSentiment? Type736 { get; set; }
+ public global::RetellAI.ContactCallType? Type736 { get; set; }
///
///
///
- public global::RetellAI.ContactConversationListResponse? Type737 { get; set; }
+ public global::RetellAI.ContactCallDirection? Type737 { get; set; }
///
///
///
- public global::RetellAI.ContactConversationListResponseVariant2? Type738 { get; set; }
+ public global::RetellAI.ContactCallSentiment? Type738 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type739 { get; set; }
+ public global::RetellAI.ContactChatType? Type739 { get; set; }
///
///
///
- public global::RetellAI.AppType? Type740 { get; set; }
+ public global::RetellAI.ContactChatDirection? Type740 { get; set; }
///
///
///
- public global::RetellAI.AppConnectionStatus? Type741 { get; set; }
+ public global::RetellAI.ContactChatSentiment? Type741 { get; set; }
///
///
///
- public global::RetellAI.OAuthConfigRequest? Type742 { get; set; }
+ public global::RetellAI.ContactConversationListResponse? Type742 { get; set; }
///
///
///
- public global::RetellAI.OAuthConfigRequestType? Type743 { get; set; }
+ public global::RetellAI.ContactConversationListResponseVariant2? Type743 { get; set; }
///
///
///
- public global::RetellAI.ApiKeyAuthConfigRequest? Type744 { get; set; }
+ public global::System.Collections.Generic.IList? Type744 { get; set; }
///
///
///
- public global::RetellAI.ApiKeyAuthConfigRequestType? Type745 { get; set; }
+ public global::RetellAI.AppType? Type745 { get; set; }
///
///
///
- public global::RetellAI.BasicAuthConfigRequest? Type746 { get; set; }
+ public global::RetellAI.AppConnectionStatus? Type746 { get; set; }
///
///
///
- public global::RetellAI.BasicAuthConfigRequestType? Type747 { get; set; }
+ public global::RetellAI.OAuthConfigRequest? Type747 { get; set; }
///
///
///
- public global::RetellAI.AuthConfigRequest? Type748 { get; set; }
+ public global::RetellAI.OAuthConfigRequestType? Type748 { get; set; }
///
///
///
- public global::RetellAI.OAuthConfigResponse? Type749 { get; set; }
+ public global::RetellAI.ApiKeyAuthConfigRequest? Type749 { get; set; }
///
///
///
- public global::RetellAI.OAuthConfigResponseType? Type750 { get; set; }
+ public global::RetellAI.ApiKeyAuthConfigRequestType? Type750 { get; set; }
///
///
///
- public global::RetellAI.ApiKeyAuthConfigResponse? Type751 { get; set; }
+ public global::RetellAI.BasicAuthConfigRequest? Type751 { get; set; }
///
///
///
- public global::RetellAI.ApiKeyAuthConfigResponseType? Type752 { get; set; }
+ public global::RetellAI.BasicAuthConfigRequestType? Type752 { get; set; }
///
///
///
- public global::RetellAI.AccessTokenAuthConfigResponse? Type753 { get; set; }
+ public global::RetellAI.AuthConfigRequest? Type753 { get; set; }
///
///
///
- public global::RetellAI.AccessTokenAuthConfigResponseType? Type754 { get; set; }
+ public global::RetellAI.OAuthConfigResponse? Type754 { get; set; }
///
///
///
- public global::RetellAI.BasicAuthConfigResponse? Type755 { get; set; }
+ public global::RetellAI.OAuthConfigResponseType? Type755 { get; set; }
///
///
///
- public global::RetellAI.BasicAuthConfigResponseType? Type756 { get; set; }
+ public global::RetellAI.ApiKeyAuthConfigResponse? Type756 { get; set; }
///
///
///
- public global::RetellAI.RefreshTokenAuthConfigResponse? Type757 { get; set; }
+ public global::RetellAI.ApiKeyAuthConfigResponseType? Type757 { get; set; }
///
///
///
- public global::RetellAI.RefreshTokenAuthConfigResponseType? Type758 { get; set; }
+ public global::RetellAI.AccessTokenAuthConfigResponse? Type758 { get; set; }
///
///
///
- public global::RetellAI.AppAuthConfigResponse? Type759 { get; set; }
+ public global::RetellAI.AccessTokenAuthConfigResponseType? Type759 { get; set; }
///
///
///
- public global::RetellAI.CRMSyncMapping? Type760 { get; set; }
+ public global::RetellAI.BasicAuthConfigResponse? Type760 { get; set; }
///
///
///
- public global::RetellAI.AppCRMConfig? Type761 { get; set; }
+ public global::RetellAI.BasicAuthConfigResponseType? Type761 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type762 { get; set; }
+ public global::RetellAI.RefreshTokenAuthConfigResponse? Type762 { get; set; }
///
///
///
- public global::RetellAI.AppResponse? Type763 { get; set; }
+ public global::RetellAI.RefreshTokenAuthConfigResponseType? Type763 { get; set; }
///
///
///
- public global::RetellAI.AppResponseTenantType? Type764 { get; set; }
+ public global::RetellAI.AppAuthConfigResponse? Type764 { get; set; }
///
///
///
- public global::RetellAI.AppUsageResponse? Type765 { get; set; }
+ public global::RetellAI.CRMSyncMapping? Type765 { get; set; }
///
///
///
- public global::RetellAI.AgentAppUsage? Type766 { get; set; }
+ public global::RetellAI.AppCRMConfig? Type766 { get; set; }
///
///
///
- public global::RetellAI.KnowledgeBaseAppUsage? Type767 { get; set; }
+ public global::System.Collections.Generic.IList? Type767 { get; set; }
///
///
///
- public global::RetellAI.AgentAppUsageType? Type768 { get; set; }
+ public global::RetellAI.AppResponse? Type768 { get; set; }
///
///
///
- public global::RetellAI.KnowledgeBaseAppUsageType? Type769 { get; set; }
+ public global::RetellAI.AppResponseTenantType? Type769 { get; set; }
///
///
///
- public global::RetellAI.CRMCustomFieldSchema? Type770 { get; set; }
+ public global::RetellAI.AppUsageResponse? Type770 { get; set; }
///
///
///
- public global::RetellAI.CRMCustomFieldSchemaType? Type771 { get; set; }
+ public global::RetellAI.AgentAppUsage? Type771 { get; set; }
///
///
///
- public global::RetellAI.CRMAnalysisDataMapping? Type772 { get; set; }
+ public global::RetellAI.KnowledgeBaseAppUsage? Type772 { get; set; }
///
///
///
- public global::RetellAI.CRMAnalysisDataMappingUpdateMode? Type773 { get; set; }
+ public global::RetellAI.AgentAppUsageType? Type773 { get; set; }
///
///
///
- public global::RetellAI.CRMConfig? Type774 { get; set; }
+ public global::RetellAI.KnowledgeBaseAppUsageType? Type774 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type775 { get; set; }
+ public global::RetellAI.CRMCustomFieldSchema? Type775 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type776 { get; set; }
+ public global::RetellAI.CRMCustomFieldSchemaType? Type776 { get; set; }
///
///
///
- public global::RetellAI.JobStatus? Type777 { get; set; }
+ public global::RetellAI.CRMAnalysisDataMapping? Type777 { get; set; }
///
///
///
- public global::RetellAI.JobStatusStatus? Type778 { get; set; }
+ public global::RetellAI.CRMAnalysisDataMappingUpdateMode? Type778 { get; set; }
///
///
///
- public global::RetellAI.JobStatusTriggeredBy? Type779 { get; set; }
+ public global::RetellAI.CRMConfig? Type779 { get; set; }
///
///
///
- public global::RetellAI.ChartGroupType? Type780 { get; set; }
+ public global::System.Collections.Generic.IList? Type780 { get; set; }
///
///
///
- public global::RetellAI.DashboardSource? Type781 { get; set; }
+ public global::System.Collections.Generic.IList? Type781 { get; set; }
///
///
///
- public global::RetellAI.ChartGroupItem? Type782 { get; set; }
+ public global::RetellAI.JobStatus? Type782 { get; set; }
///
///
///
- public global::RetellAI.ChartGroupItemVariant1? Type783 { get; set; }
+ public global::RetellAI.JobStatusStatus? Type783 { get; set; }
///
///
///
- public global::RetellAI.ChartGroupItemVariant1Type? Type784 { get; set; }
+ public global::RetellAI.JobStatusTriggeredBy? Type784 { get; set; }
///
///
///
- public global::RetellAI.ChartGroupItemVariant2? Type785 { get; set; }
+ public global::RetellAI.ChartGroupType? Type785 { get; set; }
///
///
///
- public global::RetellAI.ChartGroupItemVariant2Type? Type786 { get; set; }
+ public global::RetellAI.DashboardSource? Type786 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItem? Type787 { get; set; }
+ public global::RetellAI.ChartGroupItem? Type787 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemKeywordSource? Type788 { get; set; }
+ public global::RetellAI.ChartGroupItemVariant1? Type788 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemKeywordSourceSource? Type789 { get; set; }
+ public global::RetellAI.ChartGroupItemVariant1Type? Type789 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemKeywordSourceSourceType? Type790 { get; set; }
+ public global::RetellAI.ChartGroupItemVariant2? Type790 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemKeywordSourceMeasurement? Type791 { get; set; }
+ public global::RetellAI.ChartGroupItemVariant2Type? Type791 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemKeywordSourceMeasurementType? Type792 { get; set; }
+ public global::RetellAI.ChartShowItem? Type792 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemNumericSource? Type793 { get; set; }
+ public global::RetellAI.ChartShowItemKeywordSource? Type793 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemNumericSourceSource? Type794 { get; set; }
+ public global::RetellAI.ChartShowItemKeywordSourceSource? Type794 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemNumericSourceSourceType? Type795 { get; set; }
+ public global::RetellAI.ChartShowItemKeywordSourceSourceType? Type795 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemNumericSourceMeasurement? Type796 { get; set; }
+ public global::RetellAI.ChartShowItemKeywordSourceMeasurement? Type796 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemNumericSourceMeasurementType? Type797 { get; set; }
+ public global::RetellAI.ChartShowItemKeywordSourceMeasurementType? Type797 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomFieldSource? Type798 { get; set; }
+ public global::RetellAI.ChartShowItemNumericSource? Type798 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomFieldSourceSource? Type799 { get; set; }
+ public global::RetellAI.ChartShowItemNumericSourceSource? Type799 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomFieldSourceSourceType? Type800 { get; set; }
+ public global::RetellAI.ChartShowItemNumericSourceSourceType? Type800 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomFieldSourceSourceCast? Type801 { get; set; }
+ public global::RetellAI.ChartShowItemNumericSourceMeasurement? Type801 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomFieldSourceMeasurement? Type802 { get; set; }
+ public global::RetellAI.ChartShowItemNumericSourceMeasurementType? Type802 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomFieldSourceMeasurementType? Type803 { get; set; }
+ public global::RetellAI.ChartShowItemCustomFieldSource? Type803 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemConcurrencySource? Type804 { get; set; }
+ public global::RetellAI.ChartShowItemCustomFieldSourceSource? Type804 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemConcurrencySourceSource? Type805 { get; set; }
+ public global::RetellAI.ChartShowItemCustomFieldSourceSourceType? Type805 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemConcurrencySourceSourceType? Type806 { get; set; }
+ public global::RetellAI.ChartShowItemCustomFieldSourceSourceCast? Type806 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemConcurrencySourceMeasurement? Type807 { get; set; }
+ public global::RetellAI.ChartShowItemCustomFieldSourceMeasurement? Type807 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemConcurrencySourceMeasurementType? Type808 { get; set; }
+ public global::RetellAI.ChartShowItemCustomFieldSourceMeasurementType? Type808 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomToolSource? Type809 { get; set; }
+ public global::RetellAI.ChartShowItemConcurrencySource? Type809 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomToolSourceSource? Type810 { get; set; }
+ public global::RetellAI.ChartShowItemConcurrencySourceSource? Type810 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomToolSourceSourceType? Type811 { get; set; }
+ public global::RetellAI.ChartShowItemConcurrencySourceSourceType? Type811 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomToolSourceMeasurement? Type812 { get; set; }
+ public global::RetellAI.ChartShowItemConcurrencySourceMeasurement? Type812 { get; set; }
///
///
///
- public global::RetellAI.ChartShowItemCustomToolSourceMeasurementType? Type813 { get; set; }
+ public global::RetellAI.ChartShowItemConcurrencySourceMeasurementType? Type813 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRange? Type814 { get; set; }
+ public global::RetellAI.ChartShowItemCustomToolSource? Type814 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant1? Type815 { get; set; }
+ public global::RetellAI.ChartShowItemCustomToolSourceSource? Type815 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant1Type? Type816 { get; set; }
+ public global::RetellAI.ChartShowItemCustomToolSourceSourceType? Type816 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant1Window? Type817 { get; set; }
+ public global::RetellAI.ChartShowItemCustomToolSourceMeasurement? Type817 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant1WindowUnit? Type818 { get; set; }
+ public global::RetellAI.ChartShowItemCustomToolSourceMeasurementType? Type818 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant2? Type819 { get; set; }
+ public global::RetellAI.ChartTimeRange? Type819 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant2Type? Type820 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant1? Type820 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type821 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant1Type? Type821 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant3? Type822 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant1Window? Type822 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant3Type? Type823 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant1WindowUnit? Type823 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant3Unit? Type824 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant2? Type824 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant4? Type825 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant2Type? Type825 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant4Type? Type826 { get; set; }
+ public global::System.Collections.Generic.IList? Type826 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type827 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant3? Type827 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant5? Type828 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant3Type? Type828 { get; set; }
///
///
///
- public global::RetellAI.ChartTimeRangeVariant5Type? Type829 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant3Unit? Type829 { get; set; }
///
///
///
- public global::RetellAI.ChartConfig? Type830 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant4? Type830 { get; set; }
///
///
///
- public global::RetellAI.ChartConfigType? Type831 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant4Type? Type831 { get; set; }
///
///
///
- public global::RetellAI.OneOf? Type832 { get; set; }
+ public global::System.Collections.Generic.IList? Type832 { get; set; }
///
///
///
- public global::RetellAI.ChartConfigSizeEnum? Type833 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant5? Type833 { get; set; }
///
///
///
- public global::RetellAI.ChartConfigSizeEnum2? Type834 { get; set; }
+ public global::RetellAI.ChartTimeRangeVariant5Type? Type834 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type835 { get; set; }
+ public global::RetellAI.ChartConfig? Type835 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type836 { get; set; }
+ public global::RetellAI.ChartConfigType? Type836 { get; set; }
///
///
///
- public global::RetellAI.AnyOf? Type837 { get; set; }
+ public global::RetellAI.OneOf? Type837 { get; set; }
///
///
///
- public global::RetellAI.ChartConfigUnit? Type838 { get; set; }
+ public global::RetellAI.ChartConfigSizeEnum? Type838 { get; set; }
///
///
///
- public global::RetellAI.ChartDefinition? Type839 { get; set; }
+ public global::RetellAI.ChartConfigSizeEnum2? Type839 { get; set; }
///
///
///
- public global::RetellAI.ChartConfigWithId? Type840 { get; set; }
+ public global::System.Collections.Generic.IList? Type840 { get; set; }
///
///
///
- public global::RetellAI.ChartsMap? Type841 { get; set; }
+ public global::System.Collections.Generic.IList? Type841 { get; set; }
///
///
///
- public global::RetellAI.ChartUpdate? Type842 { get; set; }
+ public global::RetellAI.AnyOf? Type842 { get; set; }
///
///
///
- public global::RetellAI.ChartUpdateVariant2? Type843 { get; set; }
+ public global::RetellAI.ChartConfigUnit? Type843 { get; set; }
///
///
///
- public global::RetellAI.ChartUpdateVariant2Size? Type844 { get; set; }
+ public global::RetellAI.ChartDefinition? Type844 { get; set; }
///
///
///
- public global::RetellAI.ChartUpdatesMap? Type845 { get; set; }
+ public global::RetellAI.ChartConfigWithId? Type845 { get; set; }
///
///
///
- public global::RetellAI.OneOf? Type846 { get; set; }
+ public global::RetellAI.ChartsMap? Type846 { get; set; }
///
///
///
- public global::RetellAI.DashboardUpdateRequest? Type847 { get; set; }
+ public global::RetellAI.ChartUpdate? Type847 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type848 { get; set; }
+ public global::RetellAI.ChartUpdateVariant2? Type848 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallRequest? Type849 { get; set; }
+ public global::RetellAI.ChartUpdateVariant2Size? Type849 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type850 { get; set; }
+ public global::RetellAI.ChartUpdatesMap? Type850 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestRequest? Type851 { get; set; }
+ public global::RetellAI.OneOf? Type851 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type852 { get; set; }
+ public global::RetellAI.DashboardUpdateRequest? Type852 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type853 { get; set; }
+ public global::RetellAI.AllOf? Type853 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionRequest? Type854 { get; set; }
+ public global::RetellAI.CreateBatchCallRequest? Type854 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type855 { get; set; }
+ public global::System.Collections.Generic.IList? Type855 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionRequest? Type856 { get; set; }
+ public global::RetellAI.CreateBatchTestRequest? Type856 { get; set; }
///
///
///
- public global::RetellAI.CreateChatRequest? Type857 { get; set; }
+ public global::RetellAI.AllOf? Type857 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetRequest? Type858 { get; set; }
+ public global::RetellAI.AllOf? Type858 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberRequest? Type859 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionRequest? Type859 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberRequestNumberProvider? Type860 { get; set; }
+ public global::System.Collections.Generic.IList? Type860 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberRequestCountryCode? Type861 { get; set; }
+ public global::RetellAI.CreateChatCompletionRequest? Type861 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatRequest? Type862 { get; set; }
+ public global::RetellAI.CreateChatRequest? Type862 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceRequest? Type863 { get; set; }
+ public global::RetellAI.CreateAssetRequest? Type863 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceRequestVoiceProvider? Type864 { get; set; }
+ public global::RetellAI.CreatePhoneNumberRequest? Type864 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceRequest? Type865 { get; set; }
+ public global::RetellAI.CreatePhoneNumberRequestNumberProvider? Type865 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceRequestVoiceProvider? Type866 { get; set; }
+ public global::RetellAI.CreatePhoneNumberRequestCountryCode? Type866 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceRequest? Type867 { get; set; }
+ public global::RetellAI.CreateSmsChatRequest? Type867 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceRequestVoiceProvider? Type868 { get; set; }
+ public global::RetellAI.CloneVoiceRequest? Type868 { get; set; }
///
///
///
- public global::RetellAI.ImportPhoneNumberRequest? Type869 { get; set; }
+ public global::RetellAI.CloneVoiceRequestVoiceProvider? Type869 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsRequest? Type870 { get; set; }
+ public global::RetellAI.AddCommunityVoiceRequest? Type870 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataRequest? Type871 { get; set; }
+ public global::RetellAI.AddCommunityVoiceRequestVoiceProvider? Type871 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataRequestDataStorageSetting? Type872 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceRequest? Type872 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberRequest? Type873 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceRequestVoiceProvider? Type873 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallRequest? Type874 { get; set; }
+ public global::RetellAI.ImportPhoneNumberRequest? Type874 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallRequest? Type875 { get; set; }
+ public global::RetellAI.ListAgentsRequest? Type875 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallRequest? Type876 { get; set; }
+ public global::RetellAI.UpdateChatMetadataRequest? Type876 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallRequestDirection? Type877 { get; set; }
+ public global::RetellAI.UpdateChatMetadataRequestDataStorageSetting? Type877 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataRequest? Type878 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberRequest? Type878 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataRequestDataStorageSetting? Type879 { get; set; }
+ public global::RetellAI.CreatePhoneCallRequest? Type879 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallRequest? Type880 { get; set; }
+ public global::RetellAI.CreateWebCallRequest? Type880 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallRequestFieldsToOverride? Type881 { get; set; }
+ public global::RetellAI.CreateWebCallV3Request? Type881 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallRequestFieldsToOverrideDataStorageSetting? Type882 { get; set; }
+ public global::RetellAI.RegisterPhoneCallRequest? Type882 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallRequestCallControl? Type883 { get; set; }
+ public global::RetellAI.RegisterPhoneCallRequestDirection? Type883 { get; set; }
///
///
///
- public global::RetellAI.CreateContactRequest? Type884 { get; set; }
+ public global::RetellAI.UpdateCallMetadataRequest? Type884 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileRequest? Type885 { get; set; }
+ public global::RetellAI.UpdateCallMetadataRequestDataStorageSetting? Type885 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportRequest? Type886 { get; set; }
+ public global::RetellAI.UpdateLiveCallRequest? Type886 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactRequest? Type887 { get; set; }
+ public global::RetellAI.UpdateLiveCallRequestFieldsToOverride? Type887 { get; set; }
///
///
///
- public global::RetellAI.CreateAppRequest? Type888 { get; set; }
+ public global::RetellAI.UpdateLiveCallRequestFieldsToOverrideDataStorageSetting? Type888 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppRequest? Type889 { get; set; }
+ public global::RetellAI.UpdateLiveCallRequestCallControl? Type889 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigRequest? Type890 { get; set; }
+ public global::RetellAI.CreateContactRequest? Type890 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataRequest? Type891 { get; set; }
+ public global::RetellAI.UploadContactImportFileRequest? Type891 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataRequestBackfillCallFilter? Type892 { get; set; }
+ public global::RetellAI.CreateContactImportRequest? Type892 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsType? Type893 { get; set; }
+ public global::RetellAI.UpdateContactRequest? Type893 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsType? Type894 { get; set; }
+ public global::RetellAI.CreateAppRequest? Type894 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsSortOrder? Type895 { get; set; }
+ public global::RetellAI.UpdateAppRequest? Type895 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsSortOrder? Type896 { get; set; }
+ public global::RetellAI.UpdateCrmConfigRequest? Type896 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsSortOrder? Type897 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataRequest? Type897 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsSortOrder? Type898 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataRequestBackfillCallFilter? Type898 { get; set; }
///
///
///
- public global::RetellAI.ListPhoneNumbersSortOrder? Type899 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsType? Type899 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMSortOrder? Type900 { get; set; }
+ public global::RetellAI.ListBatchTestsType? Type900 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsSortOrder? Type901 { get; set; }
+ public global::RetellAI.ListAgentVersionsSortOrder? Type901 { get; set; }
///
///
///
- public global::RetellAI.ListAppsSortOrder? Type902 { get; set; }
+ public global::RetellAI.ListAgentsSortOrder? Type902 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesSortOrder? Type903 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsSortOrder? Type903 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponse? Type904 { get; set; }
+ public global::RetellAI.ListConversationFlowsSortOrder? Type904 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus? Type905 { get; set; }
+ public global::RetellAI.ListPhoneNumbersSortOrder? Type905 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponse2? Type906 { get; set; }
+ public global::RetellAI.ListRetellLLMSortOrder? Type906 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus2? Type907 { get; set; }
+ public global::RetellAI.ListExportRequestsSortOrder? Type907 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponse3? Type908 { get; set; }
+ public global::RetellAI.ListAppsSortOrder? Type908 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus3? Type909 { get; set; }
+ public global::RetellAI.ListAppUsagesSortOrder? Type909 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponse4? Type910 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponse? Type910 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus4? Type911 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus? Type911 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponse5? Type912 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponse2? Type912 { get; set; }
///
///
///
- public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus5? Type913 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus2? Type913 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentResponse? Type914 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponse3? Type914 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentResponseStatus? Type915 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus3? Type915 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentResponse2? Type916 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponse4? Type916 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentResponseStatus2? Type917 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus4? Type917 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentResponse3? Type918 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponse5? Type918 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentResponseStatus3? Type919 { get; set; }
+ public global::RetellAI.AddKnowledgeBaseSourcesResponseStatus5? Type919 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentResponse4? Type920 { get; set; }
+ public global::RetellAI.CreateAgentResponse? Type920 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentResponseStatus4? Type921 { get; set; }
+ public global::RetellAI.CreateAgentResponseStatus? Type921 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallResponse? Type922 { get; set; }
+ public global::RetellAI.CreateAgentResponse2? Type922 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallResponseStatus? Type923 { get; set; }
+ public global::RetellAI.CreateAgentResponseStatus2? Type923 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallResponse2? Type924 { get; set; }
+ public global::RetellAI.CreateAgentResponse3? Type924 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallResponseStatus2? Type925 { get; set; }
+ public global::RetellAI.CreateAgentResponseStatus3? Type925 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallResponse3? Type926 { get; set; }
+ public global::RetellAI.CreateAgentResponse4? Type926 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallResponseStatus3? Type927 { get; set; }
+ public global::RetellAI.CreateAgentResponseStatus4? Type927 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallResponse4? Type928 { get; set; }
+ public global::RetellAI.CreateBatchCallResponse? Type928 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchCallResponseStatus4? Type929 { get; set; }
+ public global::RetellAI.CreateBatchCallResponseStatus? Type929 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponse? Type930 { get; set; }
+ public global::RetellAI.CreateBatchCallResponse2? Type930 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponseStatus? Type931 { get; set; }
+ public global::RetellAI.CreateBatchCallResponseStatus2? Type931 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponse2? Type932 { get; set; }
+ public global::RetellAI.CreateBatchCallResponse3? Type932 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponseStatus2? Type933 { get; set; }
+ public global::RetellAI.CreateBatchCallResponseStatus3? Type933 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponse3? Type934 { get; set; }
+ public global::RetellAI.CreateBatchCallResponse4? Type934 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponseStatus3? Type935 { get; set; }
+ public global::RetellAI.CreateBatchCallResponseStatus4? Type935 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponse4? Type936 { get; set; }
+ public global::RetellAI.CreateBatchTestResponse? Type936 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponseStatus4? Type937 { get; set; }
+ public global::RetellAI.CreateBatchTestResponseStatus? Type937 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponse5? Type938 { get; set; }
+ public global::RetellAI.CreateBatchTestResponse2? Type938 { get; set; }
///
///
///
- public global::RetellAI.CreateBatchTestResponseStatus5? Type939 { get; set; }
+ public global::RetellAI.CreateBatchTestResponseStatus2? Type939 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponse? Type940 { get; set; }
+ public global::RetellAI.CreateBatchTestResponse3? Type940 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponseStatus? Type941 { get; set; }
+ public global::RetellAI.CreateBatchTestResponseStatus3? Type941 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponse2? Type942 { get; set; }
+ public global::RetellAI.CreateBatchTestResponse4? Type942 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponseStatus2? Type943 { get; set; }
+ public global::RetellAI.CreateBatchTestResponseStatus4? Type943 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponse3? Type944 { get; set; }
+ public global::RetellAI.CreateBatchTestResponse5? Type944 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponseStatus3? Type945 { get; set; }
+ public global::RetellAI.CreateBatchTestResponseStatus5? Type945 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponse4? Type946 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponse? Type946 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponseStatus4? Type947 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponseStatus? Type947 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponse5? Type948 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponse2? Type948 { get; set; }
///
///
///
- public global::RetellAI.CreateTestCaseDefinitionResponseStatus5? Type949 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponseStatus2? Type949 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponse? Type950 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponse3? Type950 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponseStatus? Type951 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponseStatus3? Type951 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponse2? Type952 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponse4? Type952 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponseStatus2? Type953 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponseStatus4? Type953 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponse3? Type954 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponse5? Type954 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponseStatus3? Type955 { get; set; }
+ public global::RetellAI.CreateTestCaseDefinitionResponseStatus5? Type955 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponse4? Type956 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponse? Type956 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponseStatus4? Type957 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponseStatus? Type957 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponse5? Type958 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponse2? Type958 { get; set; }
///
///
///
- public global::RetellAI.DeleteTestCaseDefinitionResponseStatus5? Type959 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponseStatus2? Type959 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponse? Type960 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponse3? Type960 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponseStatus? Type961 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponseStatus3? Type961 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponse2? Type962 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponse4? Type962 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponseStatus2? Type963 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponseStatus4? Type963 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponse3? Type964 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponse5? Type964 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponseStatus3? Type965 { get; set; }
+ public global::RetellAI.DeleteTestCaseDefinitionResponseStatus5? Type965 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponse4? Type966 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponse? Type966 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponseStatus4? Type967 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponseStatus? Type967 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponse5? Type968 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponse2? Type968 { get; set; }
///
///
///
- public global::RetellAI.GetTestCaseDefinitionResponseStatus5? Type969 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponseStatus2? Type969 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type970 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponse3? Type970 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponse2? Type971 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponseStatus3? Type971 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type972 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponse4? Type972 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponse3? Type973 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponseStatus4? Type973 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponseStatus? Type974 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponse5? Type974 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponse4? Type975 { get; set; }
+ public global::RetellAI.GetTestCaseDefinitionResponseStatus5? Type975 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponseStatus2? Type976 { get; set; }
+ public global::RetellAI.AllOf? Type976 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponse5? Type977 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponse2? Type977 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponseStatus3? Type978 { get; set; }
+ public global::System.Collections.Generic.IList? Type978 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponse6? Type979 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponse3? Type979 { get; set; }
///
///
///
- public global::RetellAI.ListTestCaseDefinitionsResponseStatus4? Type980 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponseStatus? Type980 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponse? Type981 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponse4? Type981 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponseStatus? Type982 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponseStatus2? Type982 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponse2? Type983 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponse5? Type983 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponseStatus2? Type984 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponseStatus3? Type984 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponse3? Type985 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponse6? Type985 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponseStatus3? Type986 { get; set; }
+ public global::RetellAI.ListTestCaseDefinitionsResponseStatus4? Type986 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponse4? Type987 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponse? Type987 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponseStatus4? Type988 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponseStatus? Type988 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponse5? Type989 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponse2? Type989 { get; set; }
///
///
///
- public global::RetellAI.UpdateTestCaseDefinitionResponseStatus5? Type990 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponseStatus2? Type990 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponse? Type991 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponse3? Type991 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponseStatus? Type992 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponseStatus3? Type992 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponse2? Type993 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponse4? Type993 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponseStatus2? Type994 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponseStatus4? Type994 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponse3? Type995 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponse5? Type995 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponseStatus3? Type996 { get; set; }
+ public global::RetellAI.UpdateTestCaseDefinitionResponseStatus5? Type996 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponse4? Type997 { get; set; }
+ public global::RetellAI.GetBatchTestResponse? Type997 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponseStatus4? Type998 { get; set; }
+ public global::RetellAI.GetBatchTestResponseStatus? Type998 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponse5? Type999 { get; set; }
+ public global::RetellAI.GetBatchTestResponse2? Type999 { get; set; }
///
///
///
- public global::RetellAI.GetBatchTestResponseStatus5? Type1000 { get; set; }
+ public global::RetellAI.GetBatchTestResponseStatus2? Type1000 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1001 { get; set; }
+ public global::RetellAI.GetBatchTestResponse3? Type1001 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponse2? Type1002 { get; set; }
+ public global::RetellAI.GetBatchTestResponseStatus3? Type1002 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1003 { get; set; }
+ public global::RetellAI.GetBatchTestResponse4? Type1003 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponse3? Type1004 { get; set; }
+ public global::RetellAI.GetBatchTestResponseStatus4? Type1004 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponseStatus? Type1005 { get; set; }
+ public global::RetellAI.GetBatchTestResponse5? Type1005 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponse4? Type1006 { get; set; }
+ public global::RetellAI.GetBatchTestResponseStatus5? Type1006 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponseStatus2? Type1007 { get; set; }
+ public global::RetellAI.AllOf? Type1007 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponse5? Type1008 { get; set; }
+ public global::RetellAI.ListBatchTestsResponse2? Type1008 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponseStatus3? Type1009 { get; set; }
+ public global::System.Collections.Generic.IList? Type1009 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponse6? Type1010 { get; set; }
+ public global::RetellAI.ListBatchTestsResponse3? Type1010 { get; set; }
///
///
///
- public global::RetellAI.ListBatchTestsResponseStatus4? Type1011 { get; set; }
+ public global::RetellAI.ListBatchTestsResponseStatus? Type1011 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponse? Type1012 { get; set; }
+ public global::RetellAI.ListBatchTestsResponse4? Type1012 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponseStatus? Type1013 { get; set; }
+ public global::RetellAI.ListBatchTestsResponseStatus2? Type1013 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponse2? Type1014 { get; set; }
+ public global::RetellAI.ListBatchTestsResponse5? Type1014 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponseStatus2? Type1015 { get; set; }
+ public global::RetellAI.ListBatchTestsResponseStatus3? Type1015 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponse3? Type1016 { get; set; }
+ public global::RetellAI.ListBatchTestsResponse6? Type1016 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponseStatus3? Type1017 { get; set; }
+ public global::RetellAI.ListBatchTestsResponseStatus4? Type1017 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponse4? Type1018 { get; set; }
+ public global::RetellAI.GetTestRunResponse? Type1018 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponseStatus4? Type1019 { get; set; }
+ public global::RetellAI.GetTestRunResponseStatus? Type1019 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponse5? Type1020 { get; set; }
+ public global::RetellAI.GetTestRunResponse2? Type1020 { get; set; }
///
///
///
- public global::RetellAI.GetTestRunResponseStatus5? Type1021 { get; set; }
+ public global::RetellAI.GetTestRunResponseStatus2? Type1021 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1022 { get; set; }
+ public global::RetellAI.GetTestRunResponse3? Type1022 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponse2? Type1023 { get; set; }
+ public global::RetellAI.GetTestRunResponseStatus3? Type1023 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1024 { get; set; }
+ public global::RetellAI.GetTestRunResponse4? Type1024 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponse3? Type1025 { get; set; }
+ public global::RetellAI.GetTestRunResponseStatus4? Type1025 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponseStatus? Type1026 { get; set; }
+ public global::RetellAI.GetTestRunResponse5? Type1026 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponse4? Type1027 { get; set; }
+ public global::RetellAI.GetTestRunResponseStatus5? Type1027 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponseStatus2? Type1028 { get; set; }
+ public global::RetellAI.AllOf? Type1028 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponse5? Type1029 { get; set; }
+ public global::RetellAI.ListTestRunsResponse2? Type1029 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponseStatus3? Type1030 { get; set; }
+ public global::System.Collections.Generic.IList? Type1030 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponse6? Type1031 { get; set; }
+ public global::RetellAI.ListTestRunsResponse3? Type1031 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponseStatus4? Type1032 { get; set; }
+ public global::RetellAI.ListTestRunsResponseStatus? Type1032 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponse7? Type1033 { get; set; }
+ public global::RetellAI.ListTestRunsResponse4? Type1033 { get; set; }
///
///
///
- public global::RetellAI.ListTestRunsResponseStatus5? Type1034 { get; set; }
+ public global::RetellAI.ListTestRunsResponseStatus2? Type1034 { get; set; }
///
///
///
- public global::RetellAI.CreateChatAgentResponse? Type1035 { get; set; }
+ public global::RetellAI.ListTestRunsResponse5? Type1035 { get; set; }
///
///
///
- public global::RetellAI.CreateChatAgentResponseStatus? Type1036 { get; set; }
+ public global::RetellAI.ListTestRunsResponseStatus3? Type1036 { get; set; }
///
///
///
- public global::RetellAI.CreateChatAgentResponse2? Type1037 { get; set; }
+ public global::RetellAI.ListTestRunsResponse6? Type1037 { get; set; }
///
///
///
- public global::RetellAI.CreateChatAgentResponseStatus2? Type1038 { get; set; }
+ public global::RetellAI.ListTestRunsResponseStatus4? Type1038 { get; set; }
///
///
///
- public global::RetellAI.CreateChatAgentResponse3? Type1039 { get; set; }
+ public global::RetellAI.ListTestRunsResponse7? Type1039 { get; set; }
///
///
///
- public global::RetellAI.CreateChatAgentResponseStatus3? Type1040 { get; set; }
+ public global::RetellAI.ListTestRunsResponseStatus5? Type1040 { get; set; }
///
///
///
- public global::RetellAI.CreateChatAgentResponse4? Type1041 { get; set; }
+ public global::RetellAI.CreateChatAgentResponse? Type1041 { get; set; }
///
///
///
- public global::RetellAI.CreateChatAgentResponseStatus4? Type1042 { get; set; }
+ public global::RetellAI.CreateChatAgentResponseStatus? Type1042 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponse? Type1043 { get; set; }
+ public global::RetellAI.CreateChatAgentResponse2? Type1043 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponse2? Type1044 { get; set; }
+ public global::RetellAI.CreateChatAgentResponseStatus2? Type1044 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponseStatus? Type1045 { get; set; }
+ public global::RetellAI.CreateChatAgentResponse3? Type1045 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponse3? Type1046 { get; set; }
+ public global::RetellAI.CreateChatAgentResponseStatus3? Type1046 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponseStatus2? Type1047 { get; set; }
+ public global::RetellAI.CreateChatAgentResponse4? Type1047 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponse4? Type1048 { get; set; }
+ public global::RetellAI.CreateChatAgentResponseStatus4? Type1048 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponseStatus3? Type1049 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponse? Type1049 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponse5? Type1050 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponse2? Type1050 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponseStatus4? Type1051 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponseStatus? Type1051 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponse6? Type1052 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponse3? Type1052 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponseStatus5? Type1053 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponseStatus2? Type1053 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponse7? Type1054 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponse4? Type1054 { get; set; }
///
///
///
- public global::RetellAI.AgentPlaygroundCompletionResponseStatus6? Type1055 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponseStatus3? Type1055 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponse? Type1056 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponse5? Type1056 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponse2? Type1057 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponseStatus4? Type1057 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponseStatus? Type1058 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponse6? Type1058 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponse3? Type1059 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponseStatus5? Type1059 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponseStatus2? Type1060 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponse7? Type1060 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponse4? Type1061 { get; set; }
+ public global::RetellAI.AgentPlaygroundCompletionResponseStatus6? Type1061 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponseStatus3? Type1062 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponse? Type1062 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponse5? Type1063 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponse2? Type1063 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponseStatus4? Type1064 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponseStatus? Type1064 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponse6? Type1065 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponse3? Type1065 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponseStatus5? Type1066 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponseStatus2? Type1066 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponse7? Type1067 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponse4? Type1067 { get; set; }
///
///
///
- public global::RetellAI.CreateChatCompletionResponseStatus6? Type1068 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponseStatus3? Type1068 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponse? Type1069 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponse5? Type1069 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponseStatus? Type1070 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponseStatus4? Type1070 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponse2? Type1071 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponse6? Type1071 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponseStatus2? Type1072 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponseStatus5? Type1072 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponse3? Type1073 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponse7? Type1073 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponseStatus3? Type1074 { get; set; }
+ public global::RetellAI.CreateChatCompletionResponseStatus6? Type1074 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponse4? Type1075 { get; set; }
+ public global::RetellAI.CreateChatResponse? Type1075 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponseStatus4? Type1076 { get; set; }
+ public global::RetellAI.CreateChatResponseStatus? Type1076 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponse5? Type1077 { get; set; }
+ public global::RetellAI.CreateChatResponse2? Type1077 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponseStatus5? Type1078 { get; set; }
+ public global::RetellAI.CreateChatResponseStatus2? Type1078 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponse6? Type1079 { get; set; }
+ public global::RetellAI.CreateChatResponse3? Type1079 { get; set; }
///
///
///
- public global::RetellAI.CreateChatResponseStatus6? Type1080 { get; set; }
+ public global::RetellAI.CreateChatResponseStatus3? Type1080 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponse? Type1081 { get; set; }
+ public global::RetellAI.CreateChatResponse4? Type1081 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponseStatus? Type1082 { get; set; }
+ public global::RetellAI.CreateChatResponseStatus4? Type1082 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponse2? Type1083 { get; set; }
+ public global::RetellAI.CreateChatResponse5? Type1083 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponseStatus2? Type1084 { get; set; }
+ public global::RetellAI.CreateChatResponseStatus5? Type1084 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponse3? Type1085 { get; set; }
+ public global::RetellAI.CreateChatResponse6? Type1085 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponseStatus3? Type1086 { get; set; }
+ public global::RetellAI.CreateChatResponseStatus6? Type1086 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponse4? Type1087 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponse? Type1087 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponseStatus4? Type1088 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponseStatus? Type1088 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponse5? Type1089 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponse2? Type1089 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowComponentResponseStatus5? Type1090 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponseStatus2? Type1090 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponse? Type1091 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponse3? Type1091 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponseStatus? Type1092 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponseStatus3? Type1092 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponse2? Type1093 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponse4? Type1093 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponseStatus2? Type1094 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponseStatus4? Type1094 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponse3? Type1095 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponse5? Type1095 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponseStatus3? Type1096 { get; set; }
+ public global::RetellAI.CreateConversationFlowComponentResponseStatus5? Type1096 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponse4? Type1097 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponse? Type1097 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponseStatus4? Type1098 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponseStatus? Type1098 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponse5? Type1099 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponse2? Type1099 { get; set; }
///
///
///
- public global::RetellAI.CreateConversationFlowResponseStatus5? Type1100 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponseStatus2? Type1100 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetResponse? Type1101 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponse3? Type1101 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetResponseStatus? Type1102 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponseStatus3? Type1102 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetResponse2? Type1103 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponse4? Type1103 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetResponseStatus2? Type1104 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponseStatus4? Type1104 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetResponse3? Type1105 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponse5? Type1105 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetResponseStatus3? Type1106 { get; set; }
+ public global::RetellAI.CreateConversationFlowResponseStatus5? Type1106 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetResponse4? Type1107 { get; set; }
+ public global::RetellAI.CreateAssetResponse? Type1107 { get; set; }
///
///
///
- public global::RetellAI.CreateAssetResponseStatus4? Type1108 { get; set; }
+ public global::RetellAI.CreateAssetResponseStatus? Type1108 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponse? Type1109 { get; set; }
+ public global::RetellAI.CreateAssetResponse2? Type1109 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponseStatus? Type1110 { get; set; }
+ public global::RetellAI.CreateAssetResponseStatus2? Type1110 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponse2? Type1111 { get; set; }
+ public global::RetellAI.CreateAssetResponse3? Type1111 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponseStatus2? Type1112 { get; set; }
+ public global::RetellAI.CreateAssetResponseStatus3? Type1112 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponse3? Type1113 { get; set; }
+ public global::RetellAI.CreateAssetResponse4? Type1113 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponseStatus3? Type1114 { get; set; }
+ public global::RetellAI.CreateAssetResponseStatus4? Type1114 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponse4? Type1115 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponse? Type1115 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponseStatus4? Type1116 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponseStatus? Type1116 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponse5? Type1117 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponse2? Type1117 { get; set; }
///
///
///
- public global::RetellAI.CreateKnowledgeBaseResponseStatus5? Type1118 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponseStatus2? Type1118 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberResponse? Type1119 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponse3? Type1119 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberResponseStatus? Type1120 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponseStatus3? Type1120 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberResponse2? Type1121 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponse4? Type1121 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberResponseStatus2? Type1122 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponseStatus4? Type1122 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberResponse3? Type1123 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponse5? Type1123 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneNumberResponseStatus3? Type1124 { get; set; }
+ public global::RetellAI.CreateKnowledgeBaseResponseStatus5? Type1124 { get; set; }
///
///
///
- public global::RetellAI.CreateRetellLLMResponse? Type1125 { get; set; }
+ public global::RetellAI.CreatePhoneNumberResponse? Type1125 { get; set; }
///
///
///
- public global::RetellAI.CreateRetellLLMResponseStatus? Type1126 { get; set; }
+ public global::RetellAI.CreatePhoneNumberResponseStatus? Type1126 { get; set; }
///
///
///
- public global::RetellAI.CreateRetellLLMResponse2? Type1127 { get; set; }
+ public global::RetellAI.CreatePhoneNumberResponse2? Type1127 { get; set; }
///
///
///
- public global::RetellAI.CreateRetellLLMResponseStatus2? Type1128 { get; set; }
+ public global::RetellAI.CreatePhoneNumberResponseStatus2? Type1128 { get; set; }
///
///
///
- public global::RetellAI.CreateRetellLLMResponse3? Type1129 { get; set; }
+ public global::RetellAI.CreatePhoneNumberResponse3? Type1129 { get; set; }
///
///
///
- public global::RetellAI.CreateRetellLLMResponseStatus3? Type1130 { get; set; }
+ public global::RetellAI.CreatePhoneNumberResponseStatus3? Type1130 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponse? Type1131 { get; set; }
+ public global::RetellAI.CreateRetellLLMResponse? Type1131 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponseStatus? Type1132 { get; set; }
+ public global::RetellAI.CreateRetellLLMResponseStatus? Type1132 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponse2? Type1133 { get; set; }
+ public global::RetellAI.CreateRetellLLMResponse2? Type1133 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponseStatus2? Type1134 { get; set; }
+ public global::RetellAI.CreateRetellLLMResponseStatus2? Type1134 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponse3? Type1135 { get; set; }
+ public global::RetellAI.CreateRetellLLMResponse3? Type1135 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponseStatus3? Type1136 { get; set; }
+ public global::RetellAI.CreateRetellLLMResponseStatus3? Type1136 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponse4? Type1137 { get; set; }
+ public global::RetellAI.CreateSmsChatResponse? Type1137 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponseStatus4? Type1138 { get; set; }
+ public global::RetellAI.CreateSmsChatResponseStatus? Type1138 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponse5? Type1139 { get; set; }
+ public global::RetellAI.CreateSmsChatResponse2? Type1139 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponseStatus5? Type1140 { get; set; }
+ public global::RetellAI.CreateSmsChatResponseStatus2? Type1140 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponse6? Type1141 { get; set; }
+ public global::RetellAI.CreateSmsChatResponse3? Type1141 { get; set; }
///
///
///
- public global::RetellAI.CreateSmsChatResponseStatus6? Type1142 { get; set; }
+ public global::RetellAI.CreateSmsChatResponseStatus3? Type1142 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentResponse? Type1143 { get; set; }
+ public global::RetellAI.CreateSmsChatResponse4? Type1143 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentResponseStatus? Type1144 { get; set; }
+ public global::RetellAI.CreateSmsChatResponseStatus4? Type1144 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentResponse2? Type1145 { get; set; }
+ public global::RetellAI.CreateSmsChatResponse5? Type1145 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentResponseStatus2? Type1146 { get; set; }
+ public global::RetellAI.CreateSmsChatResponseStatus5? Type1146 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentResponse3? Type1147 { get; set; }
+ public global::RetellAI.CreateSmsChatResponse6? Type1147 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentResponseStatus3? Type1148 { get; set; }
+ public global::RetellAI.CreateSmsChatResponseStatus6? Type1148 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentResponse4? Type1149 { get; set; }
+ public global::RetellAI.DeleteAgentResponse? Type1149 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentResponseStatus4? Type1150 { get; set; }
+ public global::RetellAI.DeleteAgentResponseStatus? Type1150 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatResponse? Type1151 { get; set; }
+ public global::RetellAI.DeleteAgentResponse2? Type1151 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatResponseStatus? Type1152 { get; set; }
+ public global::RetellAI.DeleteAgentResponseStatus2? Type1152 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatResponse2? Type1153 { get; set; }
+ public global::RetellAI.DeleteAgentResponse3? Type1153 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatResponseStatus2? Type1154 { get; set; }
+ public global::RetellAI.DeleteAgentResponseStatus3? Type1154 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatResponse3? Type1155 { get; set; }
+ public global::RetellAI.DeleteAgentResponse4? Type1155 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatResponseStatus3? Type1156 { get; set; }
+ public global::RetellAI.DeleteAgentResponseStatus4? Type1156 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatResponse4? Type1157 { get; set; }
+ public global::RetellAI.DeleteChatResponse? Type1157 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatResponseStatus4? Type1158 { get; set; }
+ public global::RetellAI.DeleteChatResponseStatus? Type1158 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatAgentResponse? Type1159 { get; set; }
+ public global::RetellAI.DeleteChatResponse2? Type1159 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatAgentResponseStatus? Type1160 { get; set; }
+ public global::RetellAI.DeleteChatResponseStatus2? Type1160 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatAgentResponse2? Type1161 { get; set; }
+ public global::RetellAI.DeleteChatResponse3? Type1161 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatAgentResponseStatus2? Type1162 { get; set; }
+ public global::RetellAI.DeleteChatResponseStatus3? Type1162 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatAgentResponse3? Type1163 { get; set; }
+ public global::RetellAI.DeleteChatResponse4? Type1163 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatAgentResponseStatus3? Type1164 { get; set; }
+ public global::RetellAI.DeleteChatResponseStatus4? Type1164 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatAgentResponse4? Type1165 { get; set; }
+ public global::RetellAI.DeleteChatAgentResponse? Type1165 { get; set; }
///
///
///
- public global::RetellAI.DeleteChatAgentResponseStatus4? Type1166 { get; set; }
+ public global::RetellAI.DeleteChatAgentResponseStatus? Type1166 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowComponentResponse? Type1167 { get; set; }
+ public global::RetellAI.DeleteChatAgentResponse2? Type1167 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowComponentResponseStatus? Type1168 { get; set; }
+ public global::RetellAI.DeleteChatAgentResponseStatus2? Type1168 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowComponentResponse2? Type1169 { get; set; }
+ public global::RetellAI.DeleteChatAgentResponse3? Type1169 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowComponentResponseStatus2? Type1170 { get; set; }
+ public global::RetellAI.DeleteChatAgentResponseStatus3? Type1170 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowComponentResponse3? Type1171 { get; set; }
+ public global::RetellAI.DeleteChatAgentResponse4? Type1171 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowComponentResponseStatus3? Type1172 { get; set; }
+ public global::RetellAI.DeleteChatAgentResponseStatus4? Type1172 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowComponentResponse4? Type1173 { get; set; }
+ public global::RetellAI.DeleteConversationFlowComponentResponse? Type1173 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowComponentResponseStatus4? Type1174 { get; set; }
+ public global::RetellAI.DeleteConversationFlowComponentResponseStatus? Type1174 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponse? Type1175 { get; set; }
+ public global::RetellAI.DeleteConversationFlowComponentResponse2? Type1175 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponseStatus? Type1176 { get; set; }
+ public global::RetellAI.DeleteConversationFlowComponentResponseStatus2? Type1176 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponse2? Type1177 { get; set; }
+ public global::RetellAI.DeleteConversationFlowComponentResponse3? Type1177 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponseStatus2? Type1178 { get; set; }
+ public global::RetellAI.DeleteConversationFlowComponentResponseStatus3? Type1178 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponse3? Type1179 { get; set; }
+ public global::RetellAI.DeleteConversationFlowComponentResponse4? Type1179 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponseStatus3? Type1180 { get; set; }
+ public global::RetellAI.DeleteConversationFlowComponentResponseStatus4? Type1180 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponse4? Type1181 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponse? Type1181 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponseStatus4? Type1182 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponseStatus? Type1182 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponse5? Type1183 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponse2? Type1183 { get; set; }
///
///
///
- public global::RetellAI.DeleteConversationFlowResponseStatus5? Type1184 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponseStatus2? Type1184 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseSourceResponse? Type1185 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponse3? Type1185 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseSourceResponseStatus? Type1186 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponseStatus3? Type1186 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseSourceResponse2? Type1187 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponse4? Type1187 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseSourceResponseStatus2? Type1188 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponseStatus4? Type1188 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseSourceResponse3? Type1189 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponse5? Type1189 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseSourceResponseStatus3? Type1190 { get; set; }
+ public global::RetellAI.DeleteConversationFlowResponseStatus5? Type1190 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseSourceResponse4? Type1191 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseSourceResponse? Type1191 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseSourceResponseStatus4? Type1192 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseSourceResponseStatus? Type1192 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseResponse? Type1193 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseSourceResponse2? Type1193 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseResponseStatus? Type1194 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseSourceResponseStatus2? Type1194 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseResponse2? Type1195 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseSourceResponse3? Type1195 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseResponseStatus2? Type1196 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseSourceResponseStatus3? Type1196 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseResponse3? Type1197 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseSourceResponse4? Type1197 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseResponseStatus3? Type1198 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseSourceResponseStatus4? Type1198 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseResponse4? Type1199 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseResponse? Type1199 { get; set; }
///
///
///
- public global::RetellAI.DeleteKnowledgeBaseResponseStatus4? Type1200 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseResponseStatus? Type1200 { get; set; }
///
///
///
- public global::RetellAI.DeletePhoneNumberResponse? Type1201 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseResponse2? Type1201 { get; set; }
///
///
///
- public global::RetellAI.DeletePhoneNumberResponseStatus? Type1202 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseResponseStatus2? Type1202 { get; set; }
///
///
///
- public global::RetellAI.DeletePhoneNumberResponse2? Type1203 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseResponse3? Type1203 { get; set; }
///
///
///
- public global::RetellAI.DeletePhoneNumberResponseStatus2? Type1204 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseResponseStatus3? Type1204 { get; set; }
///
///
///
- public global::RetellAI.DeletePhoneNumberResponse3? Type1205 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseResponse4? Type1205 { get; set; }
///
///
///
- public global::RetellAI.DeletePhoneNumberResponseStatus3? Type1206 { get; set; }
+ public global::RetellAI.DeleteKnowledgeBaseResponseStatus4? Type1206 { get; set; }
///
///
///
- public global::RetellAI.DeleteRetellLLMResponse? Type1207 { get; set; }
+ public global::RetellAI.DeletePhoneNumberResponse? Type1207 { get; set; }
///
///
///
- public global::RetellAI.DeleteRetellLLMResponseStatus? Type1208 { get; set; }
+ public global::RetellAI.DeletePhoneNumberResponseStatus? Type1208 { get; set; }
///
///
///
- public global::RetellAI.DeleteRetellLLMResponse2? Type1209 { get; set; }
+ public global::RetellAI.DeletePhoneNumberResponse2? Type1209 { get; set; }
///
///
///
- public global::RetellAI.DeleteRetellLLMResponseStatus2? Type1210 { get; set; }
+ public global::RetellAI.DeletePhoneNumberResponseStatus2? Type1210 { get; set; }
///
///
///
- public global::RetellAI.DeleteRetellLLMResponse3? Type1211 { get; set; }
+ public global::RetellAI.DeletePhoneNumberResponse3? Type1211 { get; set; }
///
///
///
- public global::RetellAI.DeleteRetellLLMResponseStatus3? Type1212 { get; set; }
+ public global::RetellAI.DeletePhoneNumberResponseStatus3? Type1212 { get; set; }
///
///
///
- public global::RetellAI.DeleteRetellLLMResponse4? Type1213 { get; set; }
+ public global::RetellAI.DeleteRetellLLMResponse? Type1213 { get; set; }
///
///
///
- public global::RetellAI.DeleteRetellLLMResponseStatus4? Type1214 { get; set; }
+ public global::RetellAI.DeleteRetellLLMResponseStatus? Type1214 { get; set; }
///
///
///
- public global::RetellAI.EndChatResponse? Type1215 { get; set; }
+ public global::RetellAI.DeleteRetellLLMResponse2? Type1215 { get; set; }
///
///
///
- public global::RetellAI.EndChatResponseStatus? Type1216 { get; set; }
+ public global::RetellAI.DeleteRetellLLMResponseStatus2? Type1216 { get; set; }
///
///
///
- public global::RetellAI.EndChatResponse2? Type1217 { get; set; }
+ public global::RetellAI.DeleteRetellLLMResponse3? Type1217 { get; set; }
///
///
///
- public global::RetellAI.EndChatResponseStatus2? Type1218 { get; set; }
+ public global::RetellAI.DeleteRetellLLMResponseStatus3? Type1218 { get; set; }
///
///
///
- public global::RetellAI.EndChatResponse3? Type1219 { get; set; }
+ public global::RetellAI.DeleteRetellLLMResponse4? Type1219 { get; set; }
///
///
///
- public global::RetellAI.EndChatResponseStatus3? Type1220 { get; set; }
+ public global::RetellAI.DeleteRetellLLMResponseStatus4? Type1220 { get; set; }
///
///
///
- public global::RetellAI.EndChatResponse4? Type1221 { get; set; }
+ public global::RetellAI.EndChatResponse? Type1221 { get; set; }
///
///
///
- public global::RetellAI.EndChatResponseStatus4? Type1222 { get; set; }
+ public global::RetellAI.EndChatResponseStatus? Type1222 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1223 { get; set; }
+ public global::RetellAI.EndChatResponse2? Type1223 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponse2? Type1224 { get; set; }
+ public global::RetellAI.EndChatResponseStatus2? Type1224 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1225 { get; set; }
+ public global::RetellAI.EndChatResponse3? Type1225 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponse3? Type1226 { get; set; }
+ public global::RetellAI.EndChatResponseStatus3? Type1226 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponseStatus? Type1227 { get; set; }
+ public global::RetellAI.EndChatResponse4? Type1227 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponse4? Type1228 { get; set; }
+ public global::RetellAI.EndChatResponseStatus4? Type1228 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponseStatus2? Type1229 { get; set; }
+ public global::RetellAI.AllOf? Type1229 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponse5? Type1230 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponse2? Type1230 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponseStatus3? Type1231 { get; set; }
+ public global::System.Collections.Generic.IList? Type1231 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponse6? Type1232 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponse3? Type1232 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponseStatus4? Type1233 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponseStatus? Type1233 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponse7? Type1234 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponse4? Type1234 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponseStatus5? Type1235 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponseStatus2? Type1235 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponse8? Type1236 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponse5? Type1236 { get; set; }
///
///
///
- public global::RetellAI.ListAgentVersionsResponseStatus6? Type1237 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponseStatus3? Type1237 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1238 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponse6? Type1238 { get; set; }
///
///
///
- public global::RetellAI.GetAgentVersionsResponse? Type1239 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponseStatus4? Type1239 { get; set; }
///
///
///
- public global::RetellAI.GetAgentVersionsResponseStatus? Type1240 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponse7? Type1240 { get; set; }
///
///
///
- public global::RetellAI.GetAgentVersionsResponse2? Type1241 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponseStatus5? Type1241 { get; set; }
///
///
///
- public global::RetellAI.GetAgentVersionsResponseStatus2? Type1242 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponse8? Type1242 { get; set; }
///
///
///
- public global::RetellAI.GetAgentVersionsResponse3? Type1243 { get; set; }
+ public global::RetellAI.ListAgentVersionsResponseStatus6? Type1243 { get; set; }
///
///
///
- public global::RetellAI.GetAgentVersionsResponseStatus3? Type1244 { get; set; }
+ public global::System.Collections.Generic.IList? Type1244 { get; set; }
///
///
///
- public global::RetellAI.GetAgentVersionsResponse4? Type1245 { get; set; }
+ public global::RetellAI.GetAgentVersionsResponse? Type1245 { get; set; }
///
///
///
- public global::RetellAI.GetAgentVersionsResponseStatus4? Type1246 { get; set; }
+ public global::RetellAI.GetAgentVersionsResponseStatus? Type1246 { get; set; }
///
///
///
- public global::RetellAI.GetAgentResponse? Type1247 { get; set; }
+ public global::RetellAI.GetAgentVersionsResponse2? Type1247 { get; set; }
///
///
///
- public global::RetellAI.GetAgentResponseStatus? Type1248 { get; set; }
+ public global::RetellAI.GetAgentVersionsResponseStatus2? Type1248 { get; set; }
///
///
///
- public global::RetellAI.GetAgentResponse2? Type1249 { get; set; }
+ public global::RetellAI.GetAgentVersionsResponse3? Type1249 { get; set; }
///
///
///
- public global::RetellAI.GetAgentResponseStatus2? Type1250 { get; set; }
+ public global::RetellAI.GetAgentVersionsResponseStatus3? Type1250 { get; set; }
///
///
///
- public global::RetellAI.GetAgentResponse3? Type1251 { get; set; }
+ public global::RetellAI.GetAgentVersionsResponse4? Type1251 { get; set; }
///
///
///
- public global::RetellAI.GetAgentResponseStatus3? Type1252 { get; set; }
+ public global::RetellAI.GetAgentVersionsResponseStatus4? Type1252 { get; set; }
///
///
///
- public global::RetellAI.GetAgentResponse4? Type1253 { get; set; }
+ public global::RetellAI.GetAgentResponse? Type1253 { get; set; }
///
///
///
- public global::RetellAI.GetAgentResponseStatus4? Type1254 { get; set; }
+ public global::RetellAI.GetAgentResponseStatus? Type1254 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1255 { get; set; }
+ public global::RetellAI.GetAgentResponse2? Type1255 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentVersionsResponse? Type1256 { get; set; }
+ public global::RetellAI.GetAgentResponseStatus2? Type1256 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentVersionsResponseStatus? Type1257 { get; set; }
+ public global::RetellAI.GetAgentResponse3? Type1257 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentVersionsResponse2? Type1258 { get; set; }
+ public global::RetellAI.GetAgentResponseStatus3? Type1258 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentVersionsResponseStatus2? Type1259 { get; set; }
+ public global::RetellAI.GetAgentResponse4? Type1259 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentVersionsResponse3? Type1260 { get; set; }
+ public global::RetellAI.GetAgentResponseStatus4? Type1260 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentVersionsResponseStatus3? Type1261 { get; set; }
+ public global::System.Collections.Generic.IList? Type1261 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentResponse? Type1262 { get; set; }
+ public global::RetellAI.GetChatAgentVersionsResponse? Type1262 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentResponseStatus? Type1263 { get; set; }
+ public global::RetellAI.GetChatAgentVersionsResponseStatus? Type1263 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentResponse2? Type1264 { get; set; }
+ public global::RetellAI.GetChatAgentVersionsResponse2? Type1264 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentResponseStatus2? Type1265 { get; set; }
+ public global::RetellAI.GetChatAgentVersionsResponseStatus2? Type1265 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentResponse3? Type1266 { get; set; }
+ public global::RetellAI.GetChatAgentVersionsResponse3? Type1266 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentResponseStatus3? Type1267 { get; set; }
+ public global::RetellAI.GetChatAgentVersionsResponseStatus3? Type1267 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentResponse4? Type1268 { get; set; }
+ public global::RetellAI.GetChatAgentResponse? Type1268 { get; set; }
///
///
///
- public global::RetellAI.GetChatAgentResponseStatus4? Type1269 { get; set; }
+ public global::RetellAI.GetChatAgentResponseStatus? Type1269 { get; set; }
///
///
///
- public global::RetellAI.GetChatResponse? Type1270 { get; set; }
+ public global::RetellAI.GetChatAgentResponse2? Type1270 { get; set; }
///
///
///
- public global::RetellAI.GetChatResponseStatus? Type1271 { get; set; }
+ public global::RetellAI.GetChatAgentResponseStatus2? Type1271 { get; set; }
///
///
///
- public global::RetellAI.GetChatResponse2? Type1272 { get; set; }
+ public global::RetellAI.GetChatAgentResponse3? Type1272 { get; set; }
///
///
///
- public global::RetellAI.GetChatResponseStatus2? Type1273 { get; set; }
+ public global::RetellAI.GetChatAgentResponseStatus3? Type1273 { get; set; }
///
///
///
- public global::RetellAI.GetChatResponse3? Type1274 { get; set; }
+ public global::RetellAI.GetChatAgentResponse4? Type1274 { get; set; }
///
///
///
- public global::RetellAI.GetChatResponseStatus3? Type1275 { get; set; }
+ public global::RetellAI.GetChatAgentResponseStatus4? Type1275 { get; set; }
///
///
///
- public global::RetellAI.GetChatResponse4? Type1276 { get; set; }
+ public global::RetellAI.GetChatResponse? Type1276 { get; set; }
///
///
///
- public global::RetellAI.GetChatResponseStatus4? Type1277 { get; set; }
+ public global::RetellAI.GetChatResponseStatus? Type1277 { get; set; }
///
///
///
- public global::RetellAI.GetConcurrencyResponse? Type1278 { get; set; }
+ public global::RetellAI.GetChatResponse2? Type1278 { get; set; }
///
///
///
- public global::RetellAI.GetConcurrencyResponse2? Type1279 { get; set; }
+ public global::RetellAI.GetChatResponseStatus2? Type1279 { get; set; }
///
///
///
- public global::RetellAI.GetConcurrencyResponseStatus? Type1280 { get; set; }
+ public global::RetellAI.GetChatResponse3? Type1280 { get; set; }
///
///
///
- public global::RetellAI.GetConcurrencyResponse3? Type1281 { get; set; }
+ public global::RetellAI.GetChatResponseStatus3? Type1281 { get; set; }
///
///
///
- public global::RetellAI.GetConcurrencyResponseStatus2? Type1282 { get; set; }
+ public global::RetellAI.GetChatResponse4? Type1282 { get; set; }
///
///
///
- public global::RetellAI.GetApiKeyInfoResponse? Type1283 { get; set; }
+ public global::RetellAI.GetChatResponseStatus4? Type1283 { get; set; }
///
///
///
- public global::RetellAI.GetApiKeyInfoResponse2? Type1284 { get; set; }
+ public global::RetellAI.GetConcurrencyResponse? Type1284 { get; set; }
///
///
///
- public global::RetellAI.GetApiKeyInfoResponseStatus? Type1285 { get; set; }
+ public global::RetellAI.GetConcurrencyResponse2? Type1285 { get; set; }
///
///
///
- public global::RetellAI.GetApiKeyInfoResponse3? Type1286 { get; set; }
+ public global::RetellAI.GetConcurrencyResponseStatus? Type1286 { get; set; }
///
///
///
- public global::RetellAI.GetApiKeyInfoResponseStatus2? Type1287 { get; set; }
+ public global::RetellAI.GetConcurrencyResponse3? Type1287 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowComponentResponse? Type1288 { get; set; }
+ public global::RetellAI.GetConcurrencyResponseStatus2? Type1288 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowComponentResponseStatus? Type1289 { get; set; }
+ public global::RetellAI.GetApiKeyInfoResponse? Type1289 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowComponentResponse2? Type1290 { get; set; }
+ public global::RetellAI.GetApiKeyInfoResponse2? Type1290 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowComponentResponseStatus2? Type1291 { get; set; }
+ public global::RetellAI.GetApiKeyInfoResponseStatus? Type1291 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowComponentResponse3? Type1292 { get; set; }
+ public global::RetellAI.GetApiKeyInfoResponse3? Type1292 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowComponentResponseStatus3? Type1293 { get; set; }
+ public global::RetellAI.GetApiKeyInfoResponseStatus2? Type1293 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowComponentResponse4? Type1294 { get; set; }
+ public global::RetellAI.GetConversationFlowComponentResponse? Type1294 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowComponentResponseStatus4? Type1295 { get; set; }
+ public global::RetellAI.GetConversationFlowComponentResponseStatus? Type1295 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponse? Type1296 { get; set; }
+ public global::RetellAI.GetConversationFlowComponentResponse2? Type1296 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponseStatus? Type1297 { get; set; }
+ public global::RetellAI.GetConversationFlowComponentResponseStatus2? Type1297 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponse2? Type1298 { get; set; }
+ public global::RetellAI.GetConversationFlowComponentResponse3? Type1298 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponseStatus2? Type1299 { get; set; }
+ public global::RetellAI.GetConversationFlowComponentResponseStatus3? Type1299 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponse3? Type1300 { get; set; }
+ public global::RetellAI.GetConversationFlowComponentResponse4? Type1300 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponseStatus3? Type1301 { get; set; }
+ public global::RetellAI.GetConversationFlowComponentResponseStatus4? Type1301 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponse4? Type1302 { get; set; }
+ public global::RetellAI.GetConversationFlowResponse? Type1302 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponseStatus4? Type1303 { get; set; }
+ public global::RetellAI.GetConversationFlowResponseStatus? Type1303 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponse5? Type1304 { get; set; }
+ public global::RetellAI.GetConversationFlowResponse2? Type1304 { get; set; }
///
///
///
- public global::RetellAI.GetConversationFlowResponseStatus5? Type1305 { get; set; }
+ public global::RetellAI.GetConversationFlowResponseStatus2? Type1305 { get; set; }
///
///
///
- public global::RetellAI.GetKnowledgeBaseResponse? Type1306 { get; set; }
+ public global::RetellAI.GetConversationFlowResponse3? Type1306 { get; set; }
///
///
///
- public global::RetellAI.GetKnowledgeBaseResponseStatus? Type1307 { get; set; }
+ public global::RetellAI.GetConversationFlowResponseStatus3? Type1307 { get; set; }
///
///
///
- public global::RetellAI.GetKnowledgeBaseResponse2? Type1308 { get; set; }
+ public global::RetellAI.GetConversationFlowResponse4? Type1308 { get; set; }
///
///
///
- public global::RetellAI.GetKnowledgeBaseResponseStatus2? Type1309 { get; set; }
+ public global::RetellAI.GetConversationFlowResponseStatus4? Type1309 { get; set; }
///
///
///
- public global::RetellAI.GetKnowledgeBaseResponse3? Type1310 { get; set; }
+ public global::RetellAI.GetConversationFlowResponse5? Type1310 { get; set; }
///
///
///
- public global::RetellAI.GetKnowledgeBaseResponseStatus3? Type1311 { get; set; }
+ public global::RetellAI.GetConversationFlowResponseStatus5? Type1311 { get; set; }
///
///
///
- public global::RetellAI.GetKnowledgeBaseResponse4? Type1312 { get; set; }
+ public global::RetellAI.GetKnowledgeBaseResponse? Type1312 { get; set; }
///
///
///
- public global::RetellAI.GetKnowledgeBaseResponseStatus4? Type1313 { get; set; }
+ public global::RetellAI.GetKnowledgeBaseResponseStatus? Type1313 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1314 { get; set; }
+ public global::RetellAI.GetKnowledgeBaseResponse2? Type1314 { get; set; }
///
///
///
- public global::RetellAI.GetMCPToolsResponse? Type1315 { get; set; }
+ public global::RetellAI.GetKnowledgeBaseResponseStatus2? Type1315 { get; set; }
///
///
///
- public global::RetellAI.GetMCPToolsResponseStatus? Type1316 { get; set; }
+ public global::RetellAI.GetKnowledgeBaseResponse3? Type1316 { get; set; }
///
///
///
- public global::RetellAI.GetMCPToolsResponse2? Type1317 { get; set; }
+ public global::RetellAI.GetKnowledgeBaseResponseStatus3? Type1317 { get; set; }
///
///
///
- public global::RetellAI.GetMCPToolsResponseStatus2? Type1318 { get; set; }
+ public global::RetellAI.GetKnowledgeBaseResponse4? Type1318 { get; set; }
///
///
///
- public global::RetellAI.GetMCPToolsResponse3? Type1319 { get; set; }
+ public global::RetellAI.GetKnowledgeBaseResponseStatus4? Type1319 { get; set; }
///
///
///
- public global::RetellAI.GetMCPToolsResponseStatus3? Type1320 { get; set; }
+ public global::System.Collections.Generic.IList? Type1320 { get; set; }
///
///
///
- public global::RetellAI.GetMCPToolsResponse4? Type1321 { get; set; }
+ public global::RetellAI.GetMCPToolsResponse? Type1321 { get; set; }
///
///
///
- public global::RetellAI.GetMCPToolsResponseStatus4? Type1322 { get; set; }
+ public global::RetellAI.GetMCPToolsResponseStatus? Type1322 { get; set; }
///
///
///
- public global::RetellAI.GetPhoneNumberResponse? Type1323 { get; set; }
+ public global::RetellAI.GetMCPToolsResponse2? Type1323 { get; set; }
///
///
///
- public global::RetellAI.GetPhoneNumberResponseStatus? Type1324 { get; set; }
+ public global::RetellAI.GetMCPToolsResponseStatus2? Type1324 { get; set; }
///
///
///
- public global::RetellAI.GetPhoneNumberResponse2? Type1325 { get; set; }
+ public global::RetellAI.GetMCPToolsResponse3? Type1325 { get; set; }
///
///
///
- public global::RetellAI.GetPhoneNumberResponseStatus2? Type1326 { get; set; }
+ public global::RetellAI.GetMCPToolsResponseStatus3? Type1326 { get; set; }
///
///
///
- public global::RetellAI.GetPhoneNumberResponse3? Type1327 { get; set; }
+ public global::RetellAI.GetMCPToolsResponse4? Type1327 { get; set; }
///
///
///
- public global::RetellAI.GetPhoneNumberResponseStatus3? Type1328 { get; set; }
+ public global::RetellAI.GetMCPToolsResponseStatus4? Type1328 { get; set; }
///
///
///
- public global::RetellAI.GetPhoneNumberResponse4? Type1329 { get; set; }
+ public global::RetellAI.GetPhoneNumberResponse? Type1329 { get; set; }
///
///
///
- public global::RetellAI.GetPhoneNumberResponseStatus4? Type1330 { get; set; }
+ public global::RetellAI.GetPhoneNumberResponseStatus? Type1330 { get; set; }
///
///
///
- public global::RetellAI.GetRetellLLMResponse? Type1331 { get; set; }
+ public global::RetellAI.GetPhoneNumberResponse2? Type1331 { get; set; }
///
///
///
- public global::RetellAI.GetRetellLLMResponseStatus? Type1332 { get; set; }
+ public global::RetellAI.GetPhoneNumberResponseStatus2? Type1332 { get; set; }
///
///
///
- public global::RetellAI.GetRetellLLMResponse2? Type1333 { get; set; }
+ public global::RetellAI.GetPhoneNumberResponse3? Type1333 { get; set; }
///
///
///
- public global::RetellAI.GetRetellLLMResponseStatus2? Type1334 { get; set; }
+ public global::RetellAI.GetPhoneNumberResponseStatus3? Type1334 { get; set; }
///
///
///
- public global::RetellAI.GetRetellLLMResponse3? Type1335 { get; set; }
+ public global::RetellAI.GetPhoneNumberResponse4? Type1335 { get; set; }
///
///
///
- public global::RetellAI.GetRetellLLMResponseStatus3? Type1336 { get; set; }
+ public global::RetellAI.GetPhoneNumberResponseStatus4? Type1336 { get; set; }
///
///
///
- public global::RetellAI.GetRetellLLMResponse4? Type1337 { get; set; }
+ public global::RetellAI.GetRetellLLMResponse? Type1337 { get; set; }
///
///
///
- public global::RetellAI.GetRetellLLMResponseStatus4? Type1338 { get; set; }
+ public global::RetellAI.GetRetellLLMResponseStatus? Type1338 { get; set; }
///
///
///
- public global::RetellAI.GetVoiceResponse? Type1339 { get; set; }
+ public global::RetellAI.GetRetellLLMResponse2? Type1339 { get; set; }
///
///
///
- public global::RetellAI.GetVoiceResponseStatus? Type1340 { get; set; }
+ public global::RetellAI.GetRetellLLMResponseStatus2? Type1340 { get; set; }
///
///
///
- public global::RetellAI.GetVoiceResponse2? Type1341 { get; set; }
+ public global::RetellAI.GetRetellLLMResponse3? Type1341 { get; set; }
///
///
///
- public global::RetellAI.GetVoiceResponseStatus2? Type1342 { get; set; }
+ public global::RetellAI.GetRetellLLMResponseStatus3? Type1342 { get; set; }
///
///
///
- public global::RetellAI.GetVoiceResponse3? Type1343 { get; set; }
+ public global::RetellAI.GetRetellLLMResponse4? Type1343 { get; set; }
///
///
///
- public global::RetellAI.GetVoiceResponseStatus3? Type1344 { get; set; }
+ public global::RetellAI.GetRetellLLMResponseStatus4? Type1344 { get; set; }
///
///
///
- public global::RetellAI.GetVoiceResponse4? Type1345 { get; set; }
+ public global::RetellAI.GetVoiceResponse? Type1345 { get; set; }
///
///
///
- public global::RetellAI.GetVoiceResponseStatus4? Type1346 { get; set; }
+ public global::RetellAI.GetVoiceResponseStatus? Type1346 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponse? Type1347 { get; set; }
+ public global::RetellAI.GetVoiceResponse2? Type1347 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponseStatus? Type1348 { get; set; }
+ public global::RetellAI.GetVoiceResponseStatus2? Type1348 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponse2? Type1349 { get; set; }
+ public global::RetellAI.GetVoiceResponse3? Type1349 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponseStatus2? Type1350 { get; set; }
+ public global::RetellAI.GetVoiceResponseStatus3? Type1350 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponse3? Type1351 { get; set; }
+ public global::RetellAI.GetVoiceResponse4? Type1351 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponseStatus3? Type1352 { get; set; }
+ public global::RetellAI.GetVoiceResponseStatus4? Type1352 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponse4? Type1353 { get; set; }
+ public global::RetellAI.CloneVoiceResponse? Type1353 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponseStatus4? Type1354 { get; set; }
+ public global::RetellAI.CloneVoiceResponseStatus? Type1354 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponse5? Type1355 { get; set; }
+ public global::RetellAI.CloneVoiceResponse2? Type1355 { get; set; }
///
///
///
- public global::RetellAI.CloneVoiceResponseStatus5? Type1356 { get; set; }
+ public global::RetellAI.CloneVoiceResponseStatus2? Type1356 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceResponse? Type1357 { get; set; }
+ public global::RetellAI.CloneVoiceResponse3? Type1357 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceResponseStatus? Type1358 { get; set; }
+ public global::RetellAI.CloneVoiceResponseStatus3? Type1358 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceResponse2? Type1359 { get; set; }
+ public global::RetellAI.CloneVoiceResponse4? Type1359 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceResponseStatus2? Type1360 { get; set; }
+ public global::RetellAI.CloneVoiceResponseStatus4? Type1360 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceResponse3? Type1361 { get; set; }
+ public global::RetellAI.CloneVoiceResponse5? Type1361 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceResponseStatus3? Type1362 { get; set; }
+ public global::RetellAI.CloneVoiceResponseStatus5? Type1362 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceResponse4? Type1363 { get; set; }
+ public global::RetellAI.AddCommunityVoiceResponse? Type1363 { get; set; }
///
///
///
- public global::RetellAI.AddCommunityVoiceResponseStatus4? Type1364 { get; set; }
+ public global::RetellAI.AddCommunityVoiceResponseStatus? Type1364 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponse? Type1365 { get; set; }
+ public global::RetellAI.AddCommunityVoiceResponse2? Type1365 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1366 { get; set; }
+ public global::RetellAI.AddCommunityVoiceResponseStatus2? Type1366 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponseVoice? Type1367 { get; set; }
+ public global::RetellAI.AddCommunityVoiceResponse3? Type1367 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponse2? Type1368 { get; set; }
+ public global::RetellAI.AddCommunityVoiceResponseStatus3? Type1368 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponseStatus? Type1369 { get; set; }
+ public global::RetellAI.AddCommunityVoiceResponse4? Type1369 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponse3? Type1370 { get; set; }
+ public global::RetellAI.AddCommunityVoiceResponseStatus4? Type1370 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponseStatus2? Type1371 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponse? Type1371 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponse4? Type1372 { get; set; }
+ public global::System.Collections.Generic.IList? Type1372 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponseStatus3? Type1373 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponseVoice? Type1373 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponse5? Type1374 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponse2? Type1374 { get; set; }
///
///
///
- public global::RetellAI.SearchCommunityVoiceResponseStatus4? Type1375 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponseStatus? Type1375 { get; set; }
///
///
///
- public global::RetellAI.ImportPhoneNumberResponse? Type1376 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponse3? Type1376 { get; set; }
///
///
///
- public global::RetellAI.ImportPhoneNumberResponseStatus? Type1377 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponseStatus2? Type1377 { get; set; }
///
///
///
- public global::RetellAI.ImportPhoneNumberResponse2? Type1378 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponse4? Type1378 { get; set; }
///
///
///
- public global::RetellAI.ImportPhoneNumberResponseStatus2? Type1379 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponseStatus3? Type1379 { get; set; }
///
///
///
- public global::RetellAI.ImportPhoneNumberResponse3? Type1380 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponse5? Type1380 { get; set; }
///
///
///
- public global::RetellAI.ImportPhoneNumberResponseStatus3? Type1381 { get; set; }
+ public global::RetellAI.SearchCommunityVoiceResponseStatus4? Type1381 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1382 { get; set; }
+ public global::RetellAI.ImportPhoneNumberResponse? Type1382 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponse2? Type1383 { get; set; }
+ public global::RetellAI.ImportPhoneNumberResponseStatus? Type1383 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1384 { get; set; }
+ public global::RetellAI.ImportPhoneNumberResponse2? Type1384 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponse3? Type1385 { get; set; }
+ public global::RetellAI.ImportPhoneNumberResponseStatus2? Type1385 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponseStatus? Type1386 { get; set; }
+ public global::RetellAI.ImportPhoneNumberResponse3? Type1386 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponse4? Type1387 { get; set; }
+ public global::RetellAI.ImportPhoneNumberResponseStatus3? Type1387 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponseStatus2? Type1388 { get; set; }
+ public global::RetellAI.AllOf? Type1388 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponse5? Type1389 { get; set; }
+ public global::RetellAI.ListAgentsResponse2? Type1389 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponseStatus3? Type1390 { get; set; }
+ public global::System.Collections.Generic.IList? Type1390 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponse6? Type1391 { get; set; }
+ public global::RetellAI.ListAgentsResponse3? Type1391 { get; set; }
///
///
///
- public global::RetellAI.ListAgentsResponseStatus4? Type1392 { get; set; }
+ public global::RetellAI.ListAgentsResponseStatus? Type1392 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1393 { get; set; }
+ public global::RetellAI.ListAgentsResponse4? Type1393 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponse2? Type1394 { get; set; }
+ public global::RetellAI.ListAgentsResponseStatus2? Type1394 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1395 { get; set; }
+ public global::RetellAI.ListAgentsResponse5? Type1395 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponse3? Type1396 { get; set; }
+ public global::RetellAI.ListAgentsResponseStatus3? Type1396 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponseStatus? Type1397 { get; set; }
+ public global::RetellAI.ListAgentsResponse6? Type1397 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponse4? Type1398 { get; set; }
+ public global::RetellAI.ListAgentsResponseStatus4? Type1398 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponseStatus2? Type1399 { get; set; }
+ public global::RetellAI.AllOf? Type1399 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponse5? Type1400 { get; set; }
+ public global::RetellAI.ListChatsResponse2? Type1400 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponseStatus3? Type1401 { get; set; }
+ public global::System.Collections.Generic.IList? Type1401 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponse6? Type1402 { get; set; }
+ public global::RetellAI.ListChatsResponse3? Type1402 { get; set; }
///
///
///
- public global::RetellAI.ListChatsResponseStatus4? Type1403 { get; set; }
+ public global::RetellAI.ListChatsResponseStatus? Type1403 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1404 { get; set; }
+ public global::RetellAI.ListChatsResponse4? Type1404 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponse2? Type1405 { get; set; }
+ public global::RetellAI.ListChatsResponseStatus2? Type1405 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1406 { get; set; }
+ public global::RetellAI.ListChatsResponse5? Type1406 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponse3? Type1407 { get; set; }
+ public global::RetellAI.ListChatsResponseStatus3? Type1407 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponseStatus? Type1408 { get; set; }
+ public global::RetellAI.ListChatsResponse6? Type1408 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponse4? Type1409 { get; set; }
+ public global::RetellAI.ListChatsResponseStatus4? Type1409 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponseStatus2? Type1410 { get; set; }
+ public global::RetellAI.AllOf? Type1410 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponse5? Type1411 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponse2? Type1411 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponseStatus3? Type1412 { get; set; }
+ public global::System.Collections.Generic.IList? Type1412 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponse6? Type1413 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponse3? Type1413 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowComponentsResponseStatus4? Type1414 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponseStatus? Type1414 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1415 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponse4? Type1415 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponse2? Type1416 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponseStatus2? Type1416 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1417 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponse5? Type1417 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponse3? Type1418 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponseStatus3? Type1418 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponseStatus? Type1419 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponse6? Type1419 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponse4? Type1420 { get; set; }
+ public global::RetellAI.ListConversationFlowComponentsResponseStatus4? Type1420 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponseStatus2? Type1421 { get; set; }
+ public global::RetellAI.AllOf? Type1421 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponse5? Type1422 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponse2? Type1422 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponseStatus3? Type1423 { get; set; }
+ public global::System.Collections.Generic.IList? Type1423 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponse6? Type1424 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponse3? Type1424 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponseStatus4? Type1425 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponseStatus? Type1425 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponse7? Type1426 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponse4? Type1426 { get; set; }
///
///
///
- public global::RetellAI.ListConversationFlowsResponseStatus5? Type1427 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponseStatus2? Type1427 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1428 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponse5? Type1428 { get; set; }
///
///
///
- public global::RetellAI.ListKnowledgeBasesResponse? Type1429 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponseStatus3? Type1429 { get; set; }
///
///
///
- public global::RetellAI.ListKnowledgeBasesResponseStatus? Type1430 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponse6? Type1430 { get; set; }
///
///
///
- public global::RetellAI.ListKnowledgeBasesResponse2? Type1431 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponseStatus4? Type1431 { get; set; }
///
///
///
- public global::RetellAI.ListKnowledgeBasesResponseStatus2? Type1432 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponse7? Type1432 { get; set; }
///
///
///
- public global::RetellAI.ListKnowledgeBasesResponse3? Type1433 { get; set; }
+ public global::RetellAI.ListConversationFlowsResponseStatus5? Type1433 { get; set; }
///
///
///
- public global::RetellAI.ListKnowledgeBasesResponseStatus3? Type1434 { get; set; }
+ public global::System.Collections.Generic.IList? Type1434 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1435 { get; set; }
+ public global::RetellAI.ListKnowledgeBasesResponse? Type1435 { get; set; }
///
///
///
- public global::RetellAI.ListPhoneNumbersResponse2? Type1436 { get; set; }
+ public global::RetellAI.ListKnowledgeBasesResponseStatus? Type1436 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1437 { get; set; }
+ public global::RetellAI.ListKnowledgeBasesResponse2? Type1437 { get; set; }
///
///
///
- public global::RetellAI.ListPhoneNumbersResponse3? Type1438 { get; set; }
+ public global::RetellAI.ListKnowledgeBasesResponseStatus2? Type1438 { get; set; }
///
///
///
- public global::RetellAI.ListPhoneNumbersResponseStatus? Type1439 { get; set; }
+ public global::RetellAI.ListKnowledgeBasesResponse3? Type1439 { get; set; }
///
///
///
- public global::RetellAI.ListPhoneNumbersResponse4? Type1440 { get; set; }
+ public global::RetellAI.ListKnowledgeBasesResponseStatus3? Type1440 { get; set; }
///
///
///
- public global::RetellAI.ListPhoneNumbersResponseStatus2? Type1441 { get; set; }
+ public global::RetellAI.AllOf? Type1441 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1442 { get; set; }
+ public global::RetellAI.ListPhoneNumbersResponse2? Type1442 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponse2? Type1443 { get; set; }
+ public global::System.Collections.Generic.IList? Type1443 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1444 { get; set; }
+ public global::RetellAI.ListPhoneNumbersResponse3? Type1444 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponse3? Type1445 { get; set; }
+ public global::RetellAI.ListPhoneNumbersResponseStatus? Type1445 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponseStatus? Type1446 { get; set; }
+ public global::RetellAI.ListPhoneNumbersResponse4? Type1446 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponse4? Type1447 { get; set; }
+ public global::RetellAI.ListPhoneNumbersResponseStatus2? Type1447 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponseStatus2? Type1448 { get; set; }
+ public global::RetellAI.AllOf? Type1448 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponse5? Type1449 { get; set; }
+ public global::RetellAI.ListRetellLLMResponse2? Type1449 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponseStatus3? Type1450 { get; set; }
+ public global::System.Collections.Generic.IList? Type1450 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponse6? Type1451 { get; set; }
+ public global::RetellAI.ListRetellLLMResponse3? Type1451 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponseStatus4? Type1452 { get; set; }
+ public global::RetellAI.ListRetellLLMResponseStatus? Type1452 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponse7? Type1453 { get; set; }
+ public global::RetellAI.ListRetellLLMResponse4? Type1453 { get; set; }
///
///
///
- public global::RetellAI.ListRetellLLMResponseStatus5? Type1454 { get; set; }
+ public global::RetellAI.ListRetellLLMResponseStatus2? Type1454 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1455 { get; set; }
+ public global::RetellAI.ListRetellLLMResponse5? Type1455 { get; set; }
///
///
///
- public global::RetellAI.ListVoicesResponse? Type1456 { get; set; }
+ public global::RetellAI.ListRetellLLMResponseStatus3? Type1456 { get; set; }
///
///
///
- public global::RetellAI.ListVoicesResponseStatus? Type1457 { get; set; }
+ public global::RetellAI.ListRetellLLMResponse6? Type1457 { get; set; }
///
///
///
- public global::RetellAI.ListVoicesResponse2? Type1458 { get; set; }
+ public global::RetellAI.ListRetellLLMResponseStatus4? Type1458 { get; set; }
///
///
///
- public global::RetellAI.ListVoicesResponseStatus2? Type1459 { get; set; }
+ public global::RetellAI.ListRetellLLMResponse7? Type1459 { get; set; }
///
///
///
- public global::RetellAI.OneOf? Type1460 { get; set; }
+ public global::RetellAI.ListRetellLLMResponseStatus5? Type1460 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponse2? Type1461 { get; set; }
+ public global::System.Collections.Generic.IList? Type1461 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponseStatus? Type1462 { get; set; }
+ public global::RetellAI.ListVoicesResponse? Type1462 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponse3? Type1463 { get; set; }
+ public global::RetellAI.ListVoicesResponseStatus? Type1463 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponseStatus2? Type1464 { get; set; }
+ public global::RetellAI.ListVoicesResponse2? Type1464 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponse4? Type1465 { get; set; }
+ public global::RetellAI.ListVoicesResponseStatus2? Type1465 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponseStatus3? Type1466 { get; set; }
+ public global::RetellAI.OneOf? Type1466 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponse5? Type1467 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponse2? Type1467 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponseStatus4? Type1468 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponseStatus? Type1468 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponse6? Type1469 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponse3? Type1469 { get; set; }
///
///
///
- public global::RetellAI.CreateAgentVersionResponseStatus5? Type1470 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponseStatus2? Type1470 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponse? Type1471 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponse4? Type1471 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponseStatus? Type1472 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponseStatus3? Type1472 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponse2? Type1473 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponse5? Type1473 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponseStatus2? Type1474 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponseStatus4? Type1474 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponse3? Type1475 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponse6? Type1475 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponseStatus3? Type1476 { get; set; }
+ public global::RetellAI.CreateAgentVersionResponseStatus5? Type1476 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponse4? Type1477 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponse? Type1477 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponseStatus4? Type1478 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponseStatus? Type1478 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponse5? Type1479 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponse2? Type1479 { get; set; }
///
///
///
- public global::RetellAI.PublishAgentVersionResponseStatus5? Type1480 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponseStatus2? Type1480 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponse? Type1481 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponse3? Type1481 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponseStatus? Type1482 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponseStatus3? Type1482 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponse2? Type1483 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponse4? Type1483 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponseStatus2? Type1484 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponseStatus4? Type1484 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponse3? Type1485 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponse5? Type1485 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponseStatus3? Type1486 { get; set; }
+ public global::RetellAI.PublishAgentVersionResponseStatus5? Type1486 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponse4? Type1487 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponse? Type1487 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponseStatus4? Type1488 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponseStatus? Type1488 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponse5? Type1489 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponse2? Type1489 { get; set; }
///
///
///
- public global::RetellAI.DeleteAgentVersionResponseStatus5? Type1490 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponseStatus2? Type1490 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponse? Type1491 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponse3? Type1491 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponseStatus? Type1492 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponseStatus3? Type1492 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponse2? Type1493 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponse4? Type1493 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponseStatus2? Type1494 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponseStatus4? Type1494 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponse3? Type1495 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponse5? Type1495 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponseStatus3? Type1496 { get; set; }
+ public global::RetellAI.DeleteAgentVersionResponseStatus5? Type1496 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponse4? Type1497 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponse? Type1497 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponseStatus4? Type1498 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponseStatus? Type1498 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponse5? Type1499 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponse2? Type1499 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponseStatus5? Type1500 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponseStatus2? Type1500 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponse6? Type1501 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponse3? Type1501 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponseStatus6? Type1502 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponseStatus3? Type1502 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponse7? Type1503 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponse4? Type1503 { get; set; }
///
///
///
- public global::RetellAI.RerunCallAnalysisResponseStatus7? Type1504 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponseStatus4? Type1504 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponse? Type1505 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponse5? Type1505 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponseStatus? Type1506 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponseStatus5? Type1506 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponse2? Type1507 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponse6? Type1507 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponseStatus2? Type1508 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponseStatus6? Type1508 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponse3? Type1509 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponse7? Type1509 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponseStatus3? Type1510 { get; set; }
+ public global::RetellAI.RerunCallAnalysisResponseStatus7? Type1510 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponse4? Type1511 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponse? Type1511 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponseStatus4? Type1512 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponseStatus? Type1512 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponse5? Type1513 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponse2? Type1513 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponseStatus5? Type1514 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponseStatus2? Type1514 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponse6? Type1515 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponse3? Type1515 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponseStatus6? Type1516 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponseStatus3? Type1516 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponse7? Type1517 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponse4? Type1517 { get; set; }
///
///
///
- public global::RetellAI.RerunChatAnalysisResponseStatus7? Type1518 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponseStatus4? Type1518 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponse? Type1519 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponse5? Type1519 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponseStatus? Type1520 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponseStatus5? Type1520 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponse2? Type1521 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponse6? Type1521 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponseStatus2? Type1522 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponseStatus6? Type1522 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponse3? Type1523 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponse7? Type1523 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponseStatus3? Type1524 { get; set; }
+ public global::RetellAI.RerunChatAnalysisResponseStatus7? Type1524 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponse4? Type1525 { get; set; }
+ public global::RetellAI.UpdateAgentResponse? Type1525 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponseStatus4? Type1526 { get; set; }
+ public global::RetellAI.UpdateAgentResponseStatus? Type1526 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponse5? Type1527 { get; set; }
+ public global::RetellAI.UpdateAgentResponse2? Type1527 { get; set; }
///
///
///
- public global::RetellAI.UpdateAgentResponseStatus5? Type1528 { get; set; }
+ public global::RetellAI.UpdateAgentResponseStatus2? Type1528 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponse2? Type1529 { get; set; }
+ public global::RetellAI.UpdateAgentResponse3? Type1529 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponseStatus? Type1530 { get; set; }
+ public global::RetellAI.UpdateAgentResponseStatus3? Type1530 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponse3? Type1531 { get; set; }
+ public global::RetellAI.UpdateAgentResponse4? Type1531 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponseStatus2? Type1532 { get; set; }
+ public global::RetellAI.UpdateAgentResponseStatus4? Type1532 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponse4? Type1533 { get; set; }
+ public global::RetellAI.UpdateAgentResponse5? Type1533 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponseStatus3? Type1534 { get; set; }
+ public global::RetellAI.UpdateAgentResponseStatus5? Type1534 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponse5? Type1535 { get; set; }
+ public global::RetellAI.RepairAgentResponse2? Type1535 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponseStatus4? Type1536 { get; set; }
+ public global::RetellAI.RepairAgentResponseStatus? Type1536 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponse6? Type1537 { get; set; }
+ public global::RetellAI.RepairAgentResponse3? Type1537 { get; set; }
///
///
///
- public global::RetellAI.RepairAgentResponseStatus5? Type1538 { get; set; }
+ public global::RetellAI.RepairAgentResponseStatus2? Type1538 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponse? Type1539 { get; set; }
+ public global::RetellAI.RepairAgentResponse4? Type1539 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponseStatus? Type1540 { get; set; }
+ public global::RetellAI.RepairAgentResponseStatus3? Type1540 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponse2? Type1541 { get; set; }
+ public global::RetellAI.RepairAgentResponse5? Type1541 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponseStatus2? Type1542 { get; set; }
+ public global::RetellAI.RepairAgentResponseStatus4? Type1542 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponse3? Type1543 { get; set; }
+ public global::RetellAI.RepairAgentResponse6? Type1543 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponseStatus3? Type1544 { get; set; }
+ public global::RetellAI.RepairAgentResponseStatus5? Type1544 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponse4? Type1545 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponse? Type1545 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponseStatus4? Type1546 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponseStatus? Type1546 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponse5? Type1547 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponse2? Type1547 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatAgentResponseStatus5? Type1548 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponseStatus2? Type1548 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataResponse? Type1549 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponse3? Type1549 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataResponseStatus? Type1550 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponseStatus3? Type1550 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataResponse2? Type1551 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponse4? Type1551 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataResponseStatus2? Type1552 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponseStatus4? Type1552 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataResponse3? Type1553 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponse5? Type1553 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataResponseStatus3? Type1554 { get; set; }
+ public global::RetellAI.UpdateChatAgentResponseStatus5? Type1554 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataResponse4? Type1555 { get; set; }
+ public global::RetellAI.UpdateChatMetadataResponse? Type1555 { get; set; }
///
///
///
- public global::RetellAI.UpdateChatMetadataResponseStatus4? Type1556 { get; set; }
+ public global::RetellAI.UpdateChatMetadataResponseStatus? Type1556 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponse? Type1557 { get; set; }
+ public global::RetellAI.UpdateChatMetadataResponse2? Type1557 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponseStatus? Type1558 { get; set; }
+ public global::RetellAI.UpdateChatMetadataResponseStatus2? Type1558 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponse2? Type1559 { get; set; }
+ public global::RetellAI.UpdateChatMetadataResponse3? Type1559 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponseStatus2? Type1560 { get; set; }
+ public global::RetellAI.UpdateChatMetadataResponseStatus3? Type1560 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponse3? Type1561 { get; set; }
+ public global::RetellAI.UpdateChatMetadataResponse4? Type1561 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponseStatus3? Type1562 { get; set; }
+ public global::RetellAI.UpdateChatMetadataResponseStatus4? Type1562 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponse4? Type1563 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponse? Type1563 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponseStatus4? Type1564 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponseStatus? Type1564 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponse5? Type1565 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponse2? Type1565 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponseStatus5? Type1566 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponseStatus2? Type1566 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponse6? Type1567 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponse3? Type1567 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowComponentResponseStatus6? Type1568 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponseStatus3? Type1568 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponse? Type1569 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponse4? Type1569 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponseStatus? Type1570 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponseStatus4? Type1570 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponse2? Type1571 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponse5? Type1571 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponseStatus2? Type1572 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponseStatus5? Type1572 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponse3? Type1573 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponse6? Type1573 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponseStatus3? Type1574 { get; set; }
+ public global::RetellAI.UpdateConversationFlowComponentResponseStatus6? Type1574 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponse4? Type1575 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponse? Type1575 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponseStatus4? Type1576 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponseStatus? Type1576 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponse5? Type1577 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponse2? Type1577 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponseStatus5? Type1578 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponseStatus2? Type1578 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponse6? Type1579 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponse3? Type1579 { get; set; }
///
///
///
- public global::RetellAI.UpdateConversationFlowResponseStatus6? Type1580 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponseStatus3? Type1580 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberResponse? Type1581 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponse4? Type1581 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberResponseStatus? Type1582 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponseStatus4? Type1582 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberResponse2? Type1583 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponse5? Type1583 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberResponseStatus2? Type1584 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponseStatus5? Type1584 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberResponse3? Type1585 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponse6? Type1585 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberResponseStatus3? Type1586 { get; set; }
+ public global::RetellAI.UpdateConversationFlowResponseStatus6? Type1586 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberResponse4? Type1587 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberResponse? Type1587 { get; set; }
///
///
///
- public global::RetellAI.UpdatePhoneNumberResponseStatus4? Type1588 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberResponseStatus? Type1588 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponse? Type1589 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberResponse2? Type1589 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponseStatus? Type1590 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberResponseStatus2? Type1590 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponse2? Type1591 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberResponse3? Type1591 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponseStatus2? Type1592 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberResponseStatus3? Type1592 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponse3? Type1593 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberResponse4? Type1593 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponseStatus3? Type1594 { get; set; }
+ public global::RetellAI.UpdatePhoneNumberResponseStatus4? Type1594 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponse4? Type1595 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponse? Type1595 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponseStatus4? Type1596 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponseStatus? Type1596 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponse5? Type1597 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponse2? Type1597 { get; set; }
///
///
///
- public global::RetellAI.UpdateRetellLLMResponseStatus5? Type1598 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponseStatus2? Type1598 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponse? Type1599 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponse3? Type1599 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponseStatus? Type1600 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponseStatus3? Type1600 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponse2? Type1601 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponse4? Type1601 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponseStatus2? Type1602 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponseStatus4? Type1602 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponse3? Type1603 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponse5? Type1603 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponseStatus3? Type1604 { get; set; }
+ public global::RetellAI.UpdateRetellLLMResponseStatus5? Type1604 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponse4? Type1605 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponse? Type1605 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponseStatus4? Type1606 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponseStatus? Type1606 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponse5? Type1607 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponse2? Type1607 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponseStatus5? Type1608 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponseStatus2? Type1608 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponse6? Type1609 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponse3? Type1609 { get; set; }
///
///
///
- public global::RetellAI.CreatePhoneCallResponseStatus6? Type1610 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponseStatus3? Type1610 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponse? Type1611 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponse4? Type1611 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponseStatus? Type1612 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponseStatus4? Type1612 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponse2? Type1613 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponse5? Type1613 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponseStatus2? Type1614 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponseStatus5? Type1614 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponse3? Type1615 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponse6? Type1615 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponseStatus3? Type1616 { get; set; }
+ public global::RetellAI.CreatePhoneCallResponseStatus6? Type1616 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponse4? Type1617 { get; set; }
+ public global::RetellAI.CreateWebCallResponse? Type1617 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponseStatus4? Type1618 { get; set; }
+ public global::RetellAI.CreateWebCallResponseStatus? Type1618 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponse5? Type1619 { get; set; }
+ public global::RetellAI.CreateWebCallResponse2? Type1619 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponseStatus5? Type1620 { get; set; }
+ public global::RetellAI.CreateWebCallResponseStatus2? Type1620 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponse6? Type1621 { get; set; }
+ public global::RetellAI.CreateWebCallResponse3? Type1621 { get; set; }
///
///
///
- public global::RetellAI.CreateWebCallResponseStatus6? Type1622 { get; set; }
+ public global::RetellAI.CreateWebCallResponseStatus3? Type1622 { get; set; }
///
///
///
- public global::RetellAI.DeleteCallResponse? Type1623 { get; set; }
+ public global::RetellAI.CreateWebCallResponse4? Type1623 { get; set; }
///
///
///
- public global::RetellAI.DeleteCallResponseStatus? Type1624 { get; set; }
+ public global::RetellAI.CreateWebCallResponseStatus4? Type1624 { get; set; }
///
///
///
- public global::RetellAI.DeleteCallResponse2? Type1625 { get; set; }
+ public global::RetellAI.CreateWebCallResponse5? Type1625 { get; set; }
///
///
///
- public global::RetellAI.DeleteCallResponseStatus2? Type1626 { get; set; }
+ public global::RetellAI.CreateWebCallResponseStatus5? Type1626 { get; set; }
///
///
///
- public global::RetellAI.DeleteCallResponse3? Type1627 { get; set; }
+ public global::RetellAI.CreateWebCallResponse6? Type1627 { get; set; }
///
///
///
- public global::RetellAI.DeleteCallResponseStatus3? Type1628 { get; set; }
+ public global::RetellAI.CreateWebCallResponseStatus6? Type1628 { get; set; }
///
///
///
- public global::RetellAI.DeleteCallResponse4? Type1629 { get; set; }
+ public global::RetellAI.CreateWebCallV3Response? Type1629 { get; set; }
///
///
///
- public global::RetellAI.DeleteCallResponseStatus4? Type1630 { get; set; }
+ public global::RetellAI.CreateWebCallV3ResponseStatus? Type1630 { get; set; }
///
///
///
- public global::RetellAI.GetCallResponse? Type1631 { get; set; }
+ public global::RetellAI.CreateWebCallV3Response2? Type1631 { get; set; }
///
///
///
- public global::RetellAI.GetCallResponseStatus? Type1632 { get; set; }
+ public global::RetellAI.CreateWebCallV3ResponseStatus2? Type1632 { get; set; }
///
///
///
- public global::RetellAI.GetCallResponse2? Type1633 { get; set; }
+ public global::RetellAI.CreateWebCallV3Response3? Type1633 { get; set; }
///
///
///
- public global::RetellAI.GetCallResponseStatus2? Type1634 { get; set; }
+ public global::RetellAI.CreateWebCallV3ResponseStatus3? Type1634 { get; set; }
///
///
///
- public global::RetellAI.GetCallResponse3? Type1635 { get; set; }
+ public global::RetellAI.CreateWebCallV3Response4? Type1635 { get; set; }
///
///
///
- public global::RetellAI.GetCallResponseStatus3? Type1636 { get; set; }
+ public global::RetellAI.CreateWebCallV3ResponseStatus4? Type1636 { get; set; }
///
///
///
- public global::RetellAI.GetCallResponse4? Type1637 { get; set; }
+ public global::RetellAI.CreateWebCallV3Response5? Type1637 { get; set; }
///
///
///
- public global::RetellAI.GetCallResponseStatus4? Type1638 { get; set; }
+ public global::RetellAI.CreateWebCallV3ResponseStatus5? Type1638 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1639 { get; set; }
+ public global::RetellAI.CreateWebCallV3Response6? Type1639 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponse2? Type1640 { get; set; }
+ public global::RetellAI.CreateWebCallV3ResponseStatus6? Type1640 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1641 { get; set; }
+ public global::RetellAI.DeleteCallResponse? Type1641 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponse3? Type1642 { get; set; }
+ public global::RetellAI.DeleteCallResponseStatus? Type1642 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponseStatus? Type1643 { get; set; }
+ public global::RetellAI.DeleteCallResponse2? Type1643 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponse4? Type1644 { get; set; }
+ public global::RetellAI.DeleteCallResponseStatus2? Type1644 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponseStatus2? Type1645 { get; set; }
+ public global::RetellAI.DeleteCallResponse3? Type1645 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponse5? Type1646 { get; set; }
+ public global::RetellAI.DeleteCallResponseStatus3? Type1646 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponseStatus3? Type1647 { get; set; }
+ public global::RetellAI.DeleteCallResponse4? Type1647 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponse6? Type1648 { get; set; }
+ public global::RetellAI.DeleteCallResponseStatus4? Type1648 { get; set; }
///
///
///
- public global::RetellAI.ListCallsResponseStatus4? Type1649 { get; set; }
+ public global::RetellAI.GetCallResponse? Type1649 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1650 { get; set; }
+ public global::RetellAI.GetCallResponseStatus? Type1650 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponse2? Type1651 { get; set; }
+ public global::RetellAI.GetCallResponse2? Type1651 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1652 { get; set; }
+ public global::RetellAI.GetCallResponseStatus2? Type1652 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponseItem? Type1653 { get; set; }
+ public global::RetellAI.GetCallResponse3? Type1653 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponseItemChannel? Type1654 { get; set; }
+ public global::RetellAI.GetCallResponseStatus3? Type1654 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponseItemStatus? Type1655 { get; set; }
+ public global::RetellAI.GetCallResponse4? Type1655 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponse3? Type1656 { get; set; }
+ public global::RetellAI.GetCallResponseStatus4? Type1656 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponseStatus? Type1657 { get; set; }
+ public global::RetellAI.AllOf? Type1657 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponse4? Type1658 { get; set; }
+ public global::RetellAI.ListCallsResponse2? Type1658 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponseStatus2? Type1659 { get; set; }
+ public global::System.Collections.Generic.IList? Type1659 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponse5? Type1660 { get; set; }
+ public global::RetellAI.ListCallsResponse3? Type1660 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponseStatus3? Type1661 { get; set; }
+ public global::RetellAI.ListCallsResponseStatus? Type1661 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponse6? Type1662 { get; set; }
+ public global::RetellAI.ListCallsResponse4? Type1662 { get; set; }
///
///
///
- public global::RetellAI.ListExportRequestsResponseStatus4? Type1663 { get; set; }
+ public global::RetellAI.ListCallsResponseStatus2? Type1663 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponse? Type1664 { get; set; }
+ public global::RetellAI.ListCallsResponse5? Type1664 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponseStatus? Type1665 { get; set; }
+ public global::RetellAI.ListCallsResponseStatus3? Type1665 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponse2? Type1666 { get; set; }
+ public global::RetellAI.ListCallsResponse6? Type1666 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponseStatus2? Type1667 { get; set; }
+ public global::RetellAI.ListCallsResponseStatus4? Type1667 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponse3? Type1668 { get; set; }
+ public global::RetellAI.AllOf? Type1668 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponseStatus3? Type1669 { get; set; }
+ public global::RetellAI.ListExportRequestsResponse2? Type1669 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponse4? Type1670 { get; set; }
+ public global::System.Collections.Generic.IList? Type1670 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponseStatus4? Type1671 { get; set; }
+ public global::RetellAI.ListExportRequestsResponseItem? Type1671 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponse5? Type1672 { get; set; }
+ public global::RetellAI.ListExportRequestsResponseItemChannel? Type1672 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponseStatus5? Type1673 { get; set; }
+ public global::RetellAI.ListExportRequestsResponseItemStatus? Type1673 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponse6? Type1674 { get; set; }
+ public global::RetellAI.ListExportRequestsResponse3? Type1674 { get; set; }
///
///
///
- public global::RetellAI.RegisterPhoneCallResponseStatus6? Type1675 { get; set; }
+ public global::RetellAI.ListExportRequestsResponseStatus? Type1675 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataResponse? Type1676 { get; set; }
+ public global::RetellAI.ListExportRequestsResponse4? Type1676 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataResponseStatus? Type1677 { get; set; }
+ public global::RetellAI.ListExportRequestsResponseStatus2? Type1677 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataResponse2? Type1678 { get; set; }
+ public global::RetellAI.ListExportRequestsResponse5? Type1678 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataResponseStatus2? Type1679 { get; set; }
+ public global::RetellAI.ListExportRequestsResponseStatus3? Type1679 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataResponse3? Type1680 { get; set; }
+ public global::RetellAI.ListExportRequestsResponse6? Type1680 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataResponseStatus3? Type1681 { get; set; }
+ public global::RetellAI.ListExportRequestsResponseStatus4? Type1681 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataResponse4? Type1682 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponse? Type1682 { get; set; }
///
///
///
- public global::RetellAI.UpdateCallMetadataResponseStatus4? Type1683 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponseStatus? Type1683 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponse? Type1684 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponse2? Type1684 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponse2? Type1685 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponseStatus2? Type1685 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponseStatus? Type1686 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponse3? Type1686 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponse3? Type1687 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponseStatus3? Type1687 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponseStatus2? Type1688 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponse4? Type1688 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponse4? Type1689 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponseStatus4? Type1689 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponseStatus3? Type1690 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponse5? Type1690 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponse5? Type1691 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponseStatus5? Type1691 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponseStatus4? Type1692 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponse6? Type1692 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponse6? Type1693 { get; set; }
+ public global::RetellAI.RegisterPhoneCallResponseStatus6? Type1693 { get; set; }
///
///
///
- public global::RetellAI.UpdateLiveCallResponseStatus5? Type1694 { get; set; }
+ public global::RetellAI.UpdateCallMetadataResponse? Type1694 { get; set; }
///
///
///
- public global::RetellAI.StopCallResponse? Type1695 { get; set; }
+ public global::RetellAI.UpdateCallMetadataResponseStatus? Type1695 { get; set; }
///
///
///
- public global::RetellAI.StopCallResponseStatus? Type1696 { get; set; }
+ public global::RetellAI.UpdateCallMetadataResponse2? Type1696 { get; set; }
///
///
///
- public global::RetellAI.StopCallResponse2? Type1697 { get; set; }
+ public global::RetellAI.UpdateCallMetadataResponseStatus2? Type1697 { get; set; }
///
///
///
- public global::RetellAI.StopCallResponseStatus2? Type1698 { get; set; }
+ public global::RetellAI.UpdateCallMetadataResponse3? Type1698 { get; set; }
///
///
///
- public global::RetellAI.StopCallResponse3? Type1699 { get; set; }
+ public global::RetellAI.UpdateCallMetadataResponseStatus3? Type1699 { get; set; }
///
///
///
- public global::RetellAI.StopCallResponseStatus3? Type1700 { get; set; }
+ public global::RetellAI.UpdateCallMetadataResponse4? Type1700 { get; set; }
///
///
///
- public global::RetellAI.StopCallResponse4? Type1701 { get; set; }
+ public global::RetellAI.UpdateCallMetadataResponseStatus4? Type1701 { get; set; }
///
///
///
- public global::RetellAI.StopCallResponseStatus4? Type1702 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponse? Type1702 { get; set; }
///
///
///
- public global::RetellAI.CreateContactResponse? Type1703 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponse2? Type1703 { get; set; }
///
///
///
- public global::RetellAI.CreateContactResponseStatus? Type1704 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponseStatus? Type1704 { get; set; }
///
///
///
- public global::RetellAI.CreateContactResponse2? Type1705 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponse3? Type1705 { get; set; }
///
///
///
- public global::RetellAI.CreateContactResponseStatus2? Type1706 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponseStatus2? Type1706 { get; set; }
///
///
///
- public global::RetellAI.CreateContactResponse3? Type1707 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponse4? Type1707 { get; set; }
///
///
///
- public global::RetellAI.CreateContactResponseStatus3? Type1708 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponseStatus3? Type1708 { get; set; }
///
///
///
- public global::RetellAI.CreateContactResponse4? Type1709 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponse5? Type1709 { get; set; }
///
///
///
- public global::RetellAI.CreateContactResponseStatus4? Type1710 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponseStatus4? Type1710 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponse? Type1711 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponse6? Type1711 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponse2? Type1712 { get; set; }
+ public global::RetellAI.UpdateLiveCallResponseStatus5? Type1712 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponseStatus? Type1713 { get; set; }
+ public global::RetellAI.StopCallResponse? Type1713 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponse3? Type1714 { get; set; }
+ public global::RetellAI.StopCallResponseStatus? Type1714 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponseStatus2? Type1715 { get; set; }
+ public global::RetellAI.StopCallResponse2? Type1715 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponse4? Type1716 { get; set; }
+ public global::RetellAI.StopCallResponseStatus2? Type1716 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponseStatus3? Type1717 { get; set; }
+ public global::RetellAI.StopCallResponse3? Type1717 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponse5? Type1718 { get; set; }
+ public global::RetellAI.StopCallResponseStatus3? Type1718 { get; set; }
///
///
///
- public global::RetellAI.UploadContactImportFileResponseStatus4? Type1719 { get; set; }
+ public global::RetellAI.StopCallResponse4? Type1719 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponse? Type1720 { get; set; }
+ public global::RetellAI.StopCallResponseStatus4? Type1720 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponseStatus? Type1721 { get; set; }
+ public global::RetellAI.CreateContactResponse? Type1721 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponse2? Type1722 { get; set; }
+ public global::RetellAI.CreateContactResponseStatus? Type1722 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponseStatus2? Type1723 { get; set; }
+ public global::RetellAI.CreateContactResponse2? Type1723 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponse3? Type1724 { get; set; }
+ public global::RetellAI.CreateContactResponseStatus2? Type1724 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponseStatus3? Type1725 { get; set; }
+ public global::RetellAI.CreateContactResponse3? Type1725 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponse4? Type1726 { get; set; }
+ public global::RetellAI.CreateContactResponseStatus3? Type1726 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponseStatus4? Type1727 { get; set; }
+ public global::RetellAI.CreateContactResponse4? Type1727 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponse5? Type1728 { get; set; }
+ public global::RetellAI.CreateContactResponseStatus4? Type1728 { get; set; }
///
///
///
- public global::RetellAI.CreateContactImportResponseStatus5? Type1729 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponse? Type1729 { get; set; }
///
///
///
- public global::RetellAI.GetContactImportResponse? Type1730 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponse2? Type1730 { get; set; }
///
///
///
- public global::RetellAI.GetContactImportResponseStatus? Type1731 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponseStatus? Type1731 { get; set; }
///
///
///
- public global::RetellAI.GetContactImportResponse2? Type1732 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponse3? Type1732 { get; set; }
///
///
///
- public global::RetellAI.GetContactImportResponseStatus2? Type1733 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponseStatus2? Type1733 { get; set; }
///
///
///
- public global::RetellAI.GetContactImportResponse3? Type1734 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponse4? Type1734 { get; set; }
///
///
///
- public global::RetellAI.GetContactImportResponseStatus3? Type1735 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponseStatus3? Type1735 { get; set; }
///
///
///
- public global::RetellAI.GetContactResponse? Type1736 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponse5? Type1736 { get; set; }
///
///
///
- public global::RetellAI.GetContactResponseStatus? Type1737 { get; set; }
+ public global::RetellAI.UploadContactImportFileResponseStatus4? Type1737 { get; set; }
///
///
///
- public global::RetellAI.GetContactResponse2? Type1738 { get; set; }
+ public global::RetellAI.CreateContactImportResponse? Type1738 { get; set; }
///
///
///
- public global::RetellAI.GetContactResponseStatus2? Type1739 { get; set; }
+ public global::RetellAI.CreateContactImportResponseStatus? Type1739 { get; set; }
///
///
///
- public global::RetellAI.GetContactResponse3? Type1740 { get; set; }
+ public global::RetellAI.CreateContactImportResponse2? Type1740 { get; set; }
///
///
///
- public global::RetellAI.GetContactResponseStatus3? Type1741 { get; set; }
+ public global::RetellAI.CreateContactImportResponseStatus2? Type1741 { get; set; }
///
///
///
- public global::RetellAI.GetContactResponse4? Type1742 { get; set; }
+ public global::RetellAI.CreateContactImportResponse3? Type1742 { get; set; }
///
///
///
- public global::RetellAI.GetContactResponseStatus4? Type1743 { get; set; }
+ public global::RetellAI.CreateContactImportResponseStatus3? Type1743 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponse? Type1744 { get; set; }
+ public global::RetellAI.CreateContactImportResponse4? Type1744 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponseStatus? Type1745 { get; set; }
+ public global::RetellAI.CreateContactImportResponseStatus4? Type1745 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponse2? Type1746 { get; set; }
+ public global::RetellAI.CreateContactImportResponse5? Type1746 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponseStatus2? Type1747 { get; set; }
+ public global::RetellAI.CreateContactImportResponseStatus5? Type1747 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponse3? Type1748 { get; set; }
+ public global::RetellAI.GetContactImportResponse? Type1748 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponseStatus3? Type1749 { get; set; }
+ public global::RetellAI.GetContactImportResponseStatus? Type1749 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponse4? Type1750 { get; set; }
+ public global::RetellAI.GetContactImportResponse2? Type1750 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponseStatus4? Type1751 { get; set; }
+ public global::RetellAI.GetContactImportResponseStatus2? Type1751 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponse5? Type1752 { get; set; }
+ public global::RetellAI.GetContactImportResponse3? Type1752 { get; set; }
///
///
///
- public global::RetellAI.GetContactByPhoneResponseStatus5? Type1753 { get; set; }
+ public global::RetellAI.GetContactImportResponseStatus3? Type1753 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponse? Type1754 { get; set; }
+ public global::RetellAI.GetContactResponse? Type1754 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponseStatus? Type1755 { get; set; }
+ public global::RetellAI.GetContactResponseStatus? Type1755 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponse2? Type1756 { get; set; }
+ public global::RetellAI.GetContactResponse2? Type1756 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponseStatus2? Type1757 { get; set; }
+ public global::RetellAI.GetContactResponseStatus2? Type1757 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponse3? Type1758 { get; set; }
+ public global::RetellAI.GetContactResponse3? Type1758 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponseStatus3? Type1759 { get; set; }
+ public global::RetellAI.GetContactResponseStatus3? Type1759 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponse4? Type1760 { get; set; }
+ public global::RetellAI.GetContactResponse4? Type1760 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponseStatus4? Type1761 { get; set; }
+ public global::RetellAI.GetContactResponseStatus4? Type1761 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponse5? Type1762 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponse? Type1762 { get; set; }
///
///
///
- public global::RetellAI.UpdateContactResponseStatus5? Type1763 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponseStatus? Type1763 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponse? Type1764 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponse2? Type1764 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponseStatus? Type1765 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponseStatus2? Type1765 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponse2? Type1766 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponse3? Type1766 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponseStatus2? Type1767 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponseStatus3? Type1767 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponse3? Type1768 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponse4? Type1768 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponseStatus3? Type1769 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponseStatus4? Type1769 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponse4? Type1770 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponse5? Type1770 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponseStatus4? Type1771 { get; set; }
+ public global::RetellAI.GetContactByPhoneResponseStatus5? Type1771 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponse5? Type1772 { get; set; }
+ public global::RetellAI.UpdateContactResponse? Type1772 { get; set; }
///
///
///
- public global::RetellAI.DeleteContactResponseStatus5? Type1773 { get; set; }
+ public global::RetellAI.UpdateContactResponseStatus? Type1773 { get; set; }
///
///
///
- public global::RetellAI.ListContactsResponse? Type1774 { get; set; }
+ public global::RetellAI.UpdateContactResponse2? Type1774 { get; set; }
///
///
///
- public global::RetellAI.ListContactsResponseStatus? Type1775 { get; set; }
+ public global::RetellAI.UpdateContactResponseStatus2? Type1775 { get; set; }
///
///
///
- public global::RetellAI.ListContactsResponse2? Type1776 { get; set; }
+ public global::RetellAI.UpdateContactResponse3? Type1776 { get; set; }
///
///
///
- public global::RetellAI.ListContactsResponseStatus2? Type1777 { get; set; }
+ public global::RetellAI.UpdateContactResponseStatus3? Type1777 { get; set; }
///
///
///
- public global::RetellAI.ListContactsResponse3? Type1778 { get; set; }
+ public global::RetellAI.UpdateContactResponse4? Type1778 { get; set; }
///
///
///
- public global::RetellAI.ListContactsResponseStatus3? Type1779 { get; set; }
+ public global::RetellAI.UpdateContactResponseStatus4? Type1779 { get; set; }
///
///
///
- public global::RetellAI.ListContactsResponse4? Type1780 { get; set; }
+ public global::RetellAI.UpdateContactResponse5? Type1780 { get; set; }
///
///
///
- public global::RetellAI.ListContactsResponseStatus4? Type1781 { get; set; }
+ public global::RetellAI.UpdateContactResponseStatus5? Type1781 { get; set; }
///
///
///
- public global::RetellAI.ListContactConversationsResponse? Type1782 { get; set; }
+ public global::RetellAI.DeleteContactResponse? Type1782 { get; set; }
///
///
///
- public global::RetellAI.ListContactConversationsResponseStatus? Type1783 { get; set; }
+ public global::RetellAI.DeleteContactResponseStatus? Type1783 { get; set; }
///
///
///
- public global::RetellAI.ListContactConversationsResponse2? Type1784 { get; set; }
+ public global::RetellAI.DeleteContactResponse2? Type1784 { get; set; }
///
///
///
- public global::RetellAI.ListContactConversationsResponseStatus2? Type1785 { get; set; }
+ public global::RetellAI.DeleteContactResponseStatus2? Type1785 { get; set; }
///
///
///
- public global::RetellAI.ListContactConversationsResponse3? Type1786 { get; set; }
+ public global::RetellAI.DeleteContactResponse3? Type1786 { get; set; }
///
///
///
- public global::RetellAI.ListContactConversationsResponseStatus3? Type1787 { get; set; }
+ public global::RetellAI.DeleteContactResponseStatus3? Type1787 { get; set; }
///
///
///
- public global::RetellAI.ListContactConversationsResponse4? Type1788 { get; set; }
+ public global::RetellAI.DeleteContactResponse4? Type1788 { get; set; }
///
///
///
- public global::RetellAI.ListContactConversationsResponseStatus4? Type1789 { get; set; }
+ public global::RetellAI.DeleteContactResponseStatus4? Type1789 { get; set; }
///
///
///
- public global::RetellAI.CreateAppResponse? Type1790 { get; set; }
+ public global::RetellAI.DeleteContactResponse5? Type1790 { get; set; }
///
///
///
- public global::RetellAI.CreateAppResponseStatus? Type1791 { get; set; }
+ public global::RetellAI.DeleteContactResponseStatus5? Type1791 { get; set; }
///
///
///
- public global::RetellAI.CreateAppResponse2? Type1792 { get; set; }
+ public global::RetellAI.ListContactsResponse? Type1792 { get; set; }
///
///
///
- public global::RetellAI.CreateAppResponseStatus2? Type1793 { get; set; }
+ public global::RetellAI.ListContactsResponseStatus? Type1793 { get; set; }
///
///
///
- public global::RetellAI.CreateAppResponse3? Type1794 { get; set; }
+ public global::RetellAI.ListContactsResponse2? Type1794 { get; set; }
///
///
///
- public global::RetellAI.CreateAppResponseStatus3? Type1795 { get; set; }
+ public global::RetellAI.ListContactsResponseStatus2? Type1795 { get; set; }
///
///
///
- public global::RetellAI.CreateAppResponse4? Type1796 { get; set; }
+ public global::RetellAI.ListContactsResponse3? Type1796 { get; set; }
///
///
///
- public global::RetellAI.CreateAppResponseStatus4? Type1797 { get; set; }
+ public global::RetellAI.ListContactsResponseStatus3? Type1797 { get; set; }
///
///
///
- public global::RetellAI.GetAppResponse? Type1798 { get; set; }
+ public global::RetellAI.ListContactsResponse4? Type1798 { get; set; }
///
///
///
- public global::RetellAI.GetAppResponseStatus? Type1799 { get; set; }
+ public global::RetellAI.ListContactsResponseStatus4? Type1799 { get; set; }
///
///
///
- public global::RetellAI.GetAppResponse2? Type1800 { get; set; }
+ public global::RetellAI.ListContactConversationsResponse? Type1800 { get; set; }
///
///
///
- public global::RetellAI.GetAppResponseStatus2? Type1801 { get; set; }
+ public global::RetellAI.ListContactConversationsResponseStatus? Type1801 { get; set; }
///
///
///
- public global::RetellAI.GetAppResponse3? Type1802 { get; set; }
+ public global::RetellAI.ListContactConversationsResponse2? Type1802 { get; set; }
///
///
///
- public global::RetellAI.GetAppResponseStatus3? Type1803 { get; set; }
+ public global::RetellAI.ListContactConversationsResponseStatus2? Type1803 { get; set; }
///
///
///
- public global::RetellAI.GetAppResponse4? Type1804 { get; set; }
+ public global::RetellAI.ListContactConversationsResponse3? Type1804 { get; set; }
///
///
///
- public global::RetellAI.GetAppResponseStatus4? Type1805 { get; set; }
+ public global::RetellAI.ListContactConversationsResponseStatus3? Type1805 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponse? Type1806 { get; set; }
+ public global::RetellAI.ListContactConversationsResponse4? Type1806 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponseStatus? Type1807 { get; set; }
+ public global::RetellAI.ListContactConversationsResponseStatus4? Type1807 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponse2? Type1808 { get; set; }
+ public global::RetellAI.CreateAppResponse? Type1808 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponseStatus2? Type1809 { get; set; }
+ public global::RetellAI.CreateAppResponseStatus? Type1809 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponse3? Type1810 { get; set; }
+ public global::RetellAI.CreateAppResponse2? Type1810 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponseStatus3? Type1811 { get; set; }
+ public global::RetellAI.CreateAppResponseStatus2? Type1811 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponse4? Type1812 { get; set; }
+ public global::RetellAI.CreateAppResponse3? Type1812 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponseStatus4? Type1813 { get; set; }
+ public global::RetellAI.CreateAppResponseStatus3? Type1813 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponse5? Type1814 { get; set; }
+ public global::RetellAI.CreateAppResponse4? Type1814 { get; set; }
///
///
///
- public global::RetellAI.UpdateAppResponseStatus5? Type1815 { get; set; }
+ public global::RetellAI.CreateAppResponseStatus4? Type1815 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponse? Type1816 { get; set; }
+ public global::RetellAI.GetAppResponse? Type1816 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponseStatus? Type1817 { get; set; }
+ public global::RetellAI.GetAppResponseStatus? Type1817 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponse2? Type1818 { get; set; }
+ public global::RetellAI.GetAppResponse2? Type1818 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponseStatus2? Type1819 { get; set; }
+ public global::RetellAI.GetAppResponseStatus2? Type1819 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponse3? Type1820 { get; set; }
+ public global::RetellAI.GetAppResponse3? Type1820 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponseStatus3? Type1821 { get; set; }
+ public global::RetellAI.GetAppResponseStatus3? Type1821 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponse4? Type1822 { get; set; }
+ public global::RetellAI.GetAppResponse4? Type1822 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponseStatus4? Type1823 { get; set; }
+ public global::RetellAI.GetAppResponseStatus4? Type1823 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponse5? Type1824 { get; set; }
+ public global::RetellAI.UpdateAppResponse? Type1824 { get; set; }
///
///
///
- public global::RetellAI.DeleteAppResponseStatus5? Type1825 { get; set; }
+ public global::RetellAI.UpdateAppResponseStatus? Type1825 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1826 { get; set; }
+ public global::RetellAI.UpdateAppResponse2? Type1826 { get; set; }
///
///
///
- public global::RetellAI.ListAppsResponse2? Type1827 { get; set; }
+ public global::RetellAI.UpdateAppResponseStatus2? Type1827 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1828 { get; set; }
+ public global::RetellAI.UpdateAppResponse3? Type1828 { get; set; }
///
///
///
- public global::RetellAI.ListAppsResponse3? Type1829 { get; set; }
+ public global::RetellAI.UpdateAppResponseStatus3? Type1829 { get; set; }
///
///
///
- public global::RetellAI.ListAppsResponseStatus? Type1830 { get; set; }
+ public global::RetellAI.UpdateAppResponse4? Type1830 { get; set; }
///
///
///
- public global::RetellAI.ListAppsResponse4? Type1831 { get; set; }
+ public global::RetellAI.UpdateAppResponseStatus4? Type1831 { get; set; }
///
///
///
- public global::RetellAI.ListAppsResponseStatus2? Type1832 { get; set; }
+ public global::RetellAI.UpdateAppResponse5? Type1832 { get; set; }
///
///
///
- public global::RetellAI.ListAppsResponse5? Type1833 { get; set; }
+ public global::RetellAI.UpdateAppResponseStatus5? Type1833 { get; set; }
///
///
///
- public global::RetellAI.ListAppsResponseStatus3? Type1834 { get; set; }
+ public global::RetellAI.DeleteAppResponse? Type1834 { get; set; }
///
///
///
- public global::RetellAI.AllOf? Type1835 { get; set; }
+ public global::RetellAI.DeleteAppResponseStatus? Type1835 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponse2? Type1836 { get; set; }
+ public global::RetellAI.DeleteAppResponse2? Type1836 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1837 { get; set; }
+ public global::RetellAI.DeleteAppResponseStatus2? Type1837 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponse3? Type1838 { get; set; }
+ public global::RetellAI.DeleteAppResponse3? Type1838 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponseStatus? Type1839 { get; set; }
+ public global::RetellAI.DeleteAppResponseStatus3? Type1839 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponse4? Type1840 { get; set; }
+ public global::RetellAI.DeleteAppResponse4? Type1840 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponseStatus2? Type1841 { get; set; }
+ public global::RetellAI.DeleteAppResponseStatus4? Type1841 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponse5? Type1842 { get; set; }
+ public global::RetellAI.DeleteAppResponse5? Type1842 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponseStatus3? Type1843 { get; set; }
+ public global::RetellAI.DeleteAppResponseStatus5? Type1843 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponse6? Type1844 { get; set; }
+ public global::RetellAI.AllOf? Type1844 { get; set; }
///
///
///
- public global::RetellAI.ListAppUsagesResponseStatus4? Type1845 { get; set; }
+ public global::RetellAI.ListAppsResponse2? Type1845 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponse? Type1846 { get; set; }
+ public global::System.Collections.Generic.IList? Type1846 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponse2? Type1847 { get; set; }
+ public global::RetellAI.ListAppsResponse3? Type1847 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponseStatus? Type1848 { get; set; }
+ public global::RetellAI.ListAppsResponseStatus? Type1848 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponse3? Type1849 { get; set; }
+ public global::RetellAI.ListAppsResponse4? Type1849 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponseStatus2? Type1850 { get; set; }
+ public global::RetellAI.ListAppsResponseStatus2? Type1850 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponse4? Type1851 { get; set; }
+ public global::RetellAI.ListAppsResponse5? Type1851 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponseStatus3? Type1852 { get; set; }
+ public global::RetellAI.ListAppsResponseStatus3? Type1852 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponse5? Type1853 { get; set; }
+ public global::RetellAI.AllOf? Type1853 { get; set; }
///
///
///
- public global::RetellAI.TestAppAuthResponseStatus4? Type1854 { get; set; }
+ public global::RetellAI.ListAppUsagesResponse2? Type1854 { get; set; }
///
///
///
- public global::RetellAI.GetCrmConfigResponse? Type1855 { get; set; }
+ public global::System.Collections.Generic.IList? Type1855 { get; set; }
///
///
///
- public global::RetellAI.GetCrmConfigResponseStatus? Type1856 { get; set; }
+ public global::RetellAI.ListAppUsagesResponse3? Type1856 { get; set; }
///
///
///
- public global::RetellAI.GetCrmConfigResponse2? Type1857 { get; set; }
+ public global::RetellAI.ListAppUsagesResponseStatus? Type1857 { get; set; }
///
///
///
- public global::RetellAI.GetCrmConfigResponseStatus2? Type1858 { get; set; }
+ public global::RetellAI.ListAppUsagesResponse4? Type1858 { get; set; }
///
///
///
- public global::RetellAI.GetCrmConfigResponse3? Type1859 { get; set; }
+ public global::RetellAI.ListAppUsagesResponseStatus2? Type1859 { get; set; }
///
///
///
- public global::RetellAI.GetCrmConfigResponseStatus3? Type1860 { get; set; }
+ public global::RetellAI.ListAppUsagesResponse5? Type1860 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponse? Type1861 { get; set; }
+ public global::RetellAI.ListAppUsagesResponseStatus3? Type1861 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponseStatus? Type1862 { get; set; }
+ public global::RetellAI.ListAppUsagesResponse6? Type1862 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponse2? Type1863 { get; set; }
+ public global::RetellAI.ListAppUsagesResponseStatus4? Type1863 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponseStatus2? Type1864 { get; set; }
+ public global::RetellAI.TestAppAuthResponse? Type1864 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponse3? Type1865 { get; set; }
+ public global::RetellAI.TestAppAuthResponse2? Type1865 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponseStatus3? Type1866 { get; set; }
+ public global::RetellAI.TestAppAuthResponseStatus? Type1866 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponse4? Type1867 { get; set; }
+ public global::RetellAI.TestAppAuthResponse3? Type1867 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponseStatus4? Type1868 { get; set; }
+ public global::RetellAI.TestAppAuthResponseStatus2? Type1868 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponse5? Type1869 { get; set; }
+ public global::RetellAI.TestAppAuthResponse4? Type1869 { get; set; }
///
///
///
- public global::RetellAI.UpdateCrmConfigResponseStatus5? Type1870 { get; set; }
+ public global::RetellAI.TestAppAuthResponseStatus3? Type1870 { get; set; }
///
///
///
- public global::RetellAI.RunSyncJobResponse? Type1871 { get; set; }
+ public global::RetellAI.TestAppAuthResponse5? Type1871 { get; set; }
///
///
///
- public global::RetellAI.RunSyncJobResponseStatus? Type1872 { get; set; }
+ public global::RetellAI.TestAppAuthResponseStatus4? Type1872 { get; set; }
///
///
///
- public global::RetellAI.RunSyncJobResponse2? Type1873 { get; set; }
+ public global::RetellAI.GetCrmConfigResponse? Type1873 { get; set; }
///
///
///
- public global::RetellAI.RunSyncJobResponseStatus2? Type1874 { get; set; }
+ public global::RetellAI.GetCrmConfigResponseStatus? Type1874 { get; set; }
///
///
///
- public global::RetellAI.RunSyncJobResponse3? Type1875 { get; set; }
+ public global::RetellAI.GetCrmConfigResponse2? Type1875 { get; set; }
///
///
///
- public global::RetellAI.RunSyncJobResponseStatus3? Type1876 { get; set; }
+ public global::RetellAI.GetCrmConfigResponseStatus2? Type1876 { get; set; }
///
///
///
- public global::RetellAI.RunSyncJobResponse4? Type1877 { get; set; }
+ public global::RetellAI.GetCrmConfigResponse3? Type1877 { get; set; }
///
///
///
- public global::RetellAI.RunSyncJobResponseStatus4? Type1878 { get; set; }
+ public global::RetellAI.GetCrmConfigResponseStatus3? Type1878 { get; set; }
///
///
///
- public global::RetellAI.GetSyncJobStatusResponse? Type1879 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponse? Type1879 { get; set; }
///
///
///
- public global::RetellAI.GetSyncJobStatusResponseStatus? Type1880 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponseStatus? Type1880 { get; set; }
///
///
///
- public global::RetellAI.GetSyncJobStatusResponse2? Type1881 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponse2? Type1881 { get; set; }
///
///
///
- public global::RetellAI.GetSyncJobStatusResponseStatus2? Type1882 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponseStatus2? Type1882 { get; set; }
///
///
///
- public global::RetellAI.GetSyncJobStatusResponse3? Type1883 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponse3? Type1883 { get; set; }
///
///
///
- public global::RetellAI.GetSyncJobStatusResponseStatus3? Type1884 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponseStatus3? Type1884 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataResponse? Type1885 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponse4? Type1885 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataResponseStatus? Type1886 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponseStatus4? Type1886 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataResponse2? Type1887 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponse5? Type1887 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataResponseStatus2? Type1888 { get; set; }
+ public global::RetellAI.UpdateCrmConfigResponseStatus5? Type1888 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataResponse3? Type1889 { get; set; }
+ public global::RetellAI.RunSyncJobResponse? Type1889 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataResponseStatus3? Type1890 { get; set; }
+ public global::RetellAI.RunSyncJobResponseStatus? Type1890 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataResponse4? Type1891 { get; set; }
+ public global::RetellAI.RunSyncJobResponse2? Type1891 { get; set; }
///
///
///
- public global::RetellAI.BackfillContactAnalysisDataResponseStatus4? Type1892 { get; set; }
+ public global::RetellAI.RunSyncJobResponseStatus2? Type1892 { get; set; }
///
///
///
- public global::RetellAI.GetBackfillContactJobStatusResponse? Type1893 { get; set; }
+ public global::RetellAI.RunSyncJobResponse3? Type1893 { get; set; }
///
///
///
- public global::RetellAI.GetBackfillContactJobStatusResponseStatus? Type1894 { get; set; }
+ public global::RetellAI.RunSyncJobResponseStatus3? Type1894 { get; set; }
///
///
///
- public global::RetellAI.GetBackfillContactJobStatusResponse2? Type1895 { get; set; }
+ public global::RetellAI.RunSyncJobResponse4? Type1895 { get; set; }
///
///
///
- public global::RetellAI.GetBackfillContactJobStatusResponseStatus2? Type1896 { get; set; }
+ public global::RetellAI.RunSyncJobResponseStatus4? Type1896 { get; set; }
///
///
///
- public global::RetellAI.GetBackfillContactJobStatusResponse3? Type1897 { get; set; }
+ public global::RetellAI.GetSyncJobStatusResponse? Type1897 { get; set; }
///
///
///
- public global::RetellAI.GetBackfillContactJobStatusResponseStatus3? Type1898 { get; set; }
+ public global::RetellAI.GetSyncJobStatusResponseStatus? Type1898 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponse? Type1899 { get; set; }
+ public global::RetellAI.GetSyncJobStatusResponse2? Type1899 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponse2? Type1900 { get; set; }
+ public global::RetellAI.GetSyncJobStatusResponseStatus2? Type1900 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponseStatus? Type1901 { get; set; }
+ public global::RetellAI.GetSyncJobStatusResponse3? Type1901 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponse3? Type1902 { get; set; }
+ public global::RetellAI.GetSyncJobStatusResponseStatus3? Type1902 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponseStatus2? Type1903 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataResponse? Type1903 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponse4? Type1904 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataResponseStatus? Type1904 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponseStatus3? Type1905 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataResponse2? Type1905 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponse5? Type1906 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataResponseStatus2? Type1906 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponseStatus4? Type1907 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataResponse3? Type1907 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponse6? Type1908 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataResponseStatus3? Type1908 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponseStatus5? Type1909 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataResponse4? Type1909 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponse7? Type1910 { get; set; }
+ public global::RetellAI.BackfillContactAnalysisDataResponseStatus4? Type1910 { get; set; }
///
///
///
- public global::RetellAI.GetCrmSchemaResponseStatus6? Type1911 { get; set; }
+ public global::RetellAI.GetBackfillContactJobStatusResponse? Type1911 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetBackfillContactJobStatusResponseStatus? Type1912 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetBackfillContactJobStatusResponse2? Type1913 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetBackfillContactJobStatusResponseStatus2? Type1914 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetBackfillContactJobStatusResponse3? Type1915 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetBackfillContactJobStatusResponseStatus3? Type1916 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponse? Type1917 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponse2? Type1918 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponseStatus? Type1919 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponse3? Type1920 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponseStatus2? Type1921 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponse4? Type1922 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponseStatus3? Type1923 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponse5? Type1924 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponseStatus4? Type1925 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponse6? Type1926 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponseStatus5? Type1927 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponse7? Type1928 { get; set; }
+ ///
+ ///
+ ///
+ public global::RetellAI.GetCrmSchemaResponseStatus6? Type1929 { get; set; }
///
///
@@ -7986,126 +8058,134 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::System.Collections.Generic.List? ListType76 { get; set; }
+ public global::RetellAI.OneOf>? ListType76 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType77 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType78 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType77 { get; set; }
+ public global::System.Collections.Generic.List? ListType79 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType78 { get; set; }
+ public global::System.Collections.Generic.List? ListType80 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType79 { get; set; }
+ public global::System.Collections.Generic.List? ListType81 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType80 { get; set; }
+ public global::System.Collections.Generic.List? ListType82 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType81 { get; set; }
+ public global::System.Collections.Generic.List? ListType83 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType82 { get; set; }
+ public global::System.Collections.Generic.List? ListType84 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType83 { get; set; }
+ public global::System.Collections.Generic.List? ListType85 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType84 { get; set; }
+ public global::System.Collections.Generic.List? ListType86 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType85 { get; set; }
+ public global::System.Collections.Generic.List? ListType87 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType86 { get; set; }
+ public global::System.Collections.Generic.List? ListType88 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType87 { get; set; }
+ public global::System.Collections.Generic.List? ListType89 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType88 { get; set; }
+ public global::System.Collections.Generic.List? ListType90 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType89 { get; set; }
+ public global::System.Collections.Generic.List? ListType91 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType90 { get; set; }
+ public global::System.Collections.Generic.List? ListType92 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType91 { get; set; }
+ public global::System.Collections.Generic.List? ListType93 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType92 { get; set; }
+ public global::System.Collections.Generic.List? ListType94 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType93 { get; set; }
+ public global::System.Collections.Generic.List? ListType95 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType94 { get; set; }
+ public global::System.Collections.Generic.List? ListType96 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType95 { get; set; }
+ public global::System.Collections.Generic.List? ListType97 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType96 { get; set; }
+ public global::System.Collections.Generic.List? ListType98 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType97 { get; set; }
+ public global::System.Collections.Generic.List? ListType99 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType98 { get; set; }
+ public global::System.Collections.Generic.List? ListType100 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType99 { get; set; }
+ public global::System.Collections.Generic.List? ListType101 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType100 { get; set; }
+ public global::System.Collections.Generic.List? ListType102 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType101 { get; set; }
+ public global::System.Collections.Generic.List? ListType103 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType102 { get; set; }
+ public global::System.Collections.Generic.List? ListType104 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType103 { get; set; }
+ public global::System.Collections.Generic.List? ListType105 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType104 { get; set; }
+ public global::System.Collections.Generic.List? ListType106 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType105 { get; set; }
+ public global::System.Collections.Generic.List? ListType107 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType106 { get; set; }
+ public global::System.Collections.Generic.List? ListType108 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/RetellAI/Generated/RetellAI.Models.ChatResponse.g.cs b/src/libs/RetellAI/Generated/RetellAI.Models.ChatResponse.g.cs
index 5161e2a1..7e4a1f84 100644
--- a/src/libs/RetellAI/Generated/RetellAI.Models.ChatResponse.g.cs
+++ b/src/libs/RetellAI/Generated/RetellAI.Models.ChatResponse.g.cs
@@ -34,6 +34,14 @@ public sealed partial class ChatResponse
[global::System.Text.Json.Serialization.JsonPropertyName("version")]
public int? Version { get; set; }
+ ///
+ /// Tag pointing at the agent version used for this chat
+ /// Example: prod
+ ///
+ /// prod
+ [global::System.Text.Json.Serialization.JsonPropertyName("agent_tag")]
+ public string? AgentTag { get; set; }
+
///
/// Add optional dynamic variables in key value pairs of string that injects into your Response Engine prompt and tool description. Only applicable for Response Engine.
/// Example: {"customer_name":"John Doe"}
@@ -168,6 +176,10 @@ public sealed partial class ChatResponse
/// The version of the agent
/// Example: 1
///
+ ///
+ /// Tag pointing at the agent version used for this chat
+ /// Example: prod
+ ///
///
/// Add optional dynamic variables in key value pairs of string that injects into your Response Engine prompt and tool description. Only applicable for Response Engine.
/// Example: {"customer_name":"John Doe"}
@@ -217,6 +229,7 @@ public ChatResponse(
string agentId,
global::RetellAI.ChatResponseChatStatus chatStatus,
int? version,
+ string? agentTag,
global::System.Collections.Generic.Dictionary? retellLlmDynamicVariables,
global::System.Collections.Generic.Dictionary? collectedDynamicVariables,
global::RetellAI.ChatResponseChatType? chatType,
@@ -232,6 +245,7 @@ public ChatResponse(
this.ChatId = chatId ?? throw new global::System.ArgumentNullException(nameof(chatId));
this.AgentId = agentId ?? throw new global::System.ArgumentNullException(nameof(agentId));
this.Version = version;
+ this.AgentTag = agentTag;
this.RetellLlmDynamicVariables = retellLlmDynamicVariables;
this.CollectedDynamicVariables = collectedDynamicVariables;
this.ChatStatus = chatStatus;
diff --git a/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3Request.Json.g.cs b/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3Request.Json.g.cs
new file mode 100644
index 00000000..38d97c95
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3Request.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace RetellAI
+{
+ public sealed partial class CreateWebCallV3Request
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::RetellAI.CreateWebCallV3Request? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::RetellAI.CreateWebCallV3Request),
+ jsonSerializerContext) as global::RetellAI.CreateWebCallV3Request;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::RetellAI.CreateWebCallV3Request? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::RetellAI.CreateWebCallV3Request? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::RetellAI.CreateWebCallV3Request),
+ jsonSerializerContext).ConfigureAwait(false)) as global::RetellAI.CreateWebCallV3Request;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ jsonSerializerOptions);
+ }
+ }
+}
diff --git a/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3Request.g.cs b/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3Request.g.cs
new file mode 100644
index 00000000..0f5248fc
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3Request.g.cs
@@ -0,0 +1,126 @@
+
+#nullable enable
+
+namespace RetellAI
+{
+ ///
+ ///
+ ///
+ public sealed partial class CreateWebCallV3Request
+ {
+ ///
+ /// Unique id of agent used for the call. Your agent would contain the LLM Websocket url used for this call.
+ /// Example: oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD
+ ///
+ /// oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD
+ [global::System.Text.Json.Serialization.JsonPropertyName("agent_id")]
+ [global::System.Text.Json.Serialization.JsonRequired]
+ public required string AgentId { get; set; }
+
+ ///
+ /// Agent version reference. Supports a numeric version (for example 3) or a tag/environment name (for example "prod"). The string "latest" resolves to the most recently created version (the largest version number), and "latest_published" resolves to the most recently published version. When a tag is provided, resolution uses that exact tag assignment (including its dynamic variables). If the tag exists but is currently unassigned, it resolves to latest. When a numeric version, latest, or latest_published is provided, resolution applies dynamic variables from the preferred tag for that resolved version (most recently assigned), if any.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("agent_version")]
+ [global::System.Text.Json.Serialization.JsonConverter(typeof(global::RetellAI.JsonConverters.AgentVersionReferenceJsonConverter))]
+ public global::RetellAI.AgentVersionReference? AgentVersion { get; set; }
+
+ ///
+ /// Override configuration for agent, retell LLM, or conversation flow settings for a specific call.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("agent_override")]
+ public global::RetellAI.AgentOverrideRequest? AgentOverride { get; set; }
+
+ ///
+ /// An arbitrary object for storage purpose only. You can put anything here like your internal customer id associated with the call. Not used for processing. You can later get this field from the call object.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("metadata")]
+ public object? Metadata { get; set; }
+
+ ///
+ /// Add optional dynamic variables in key value pairs of string that injects into your Response Engine prompt and tool description. Only applicable for Response Engine.
+ /// Example: {"customer_name":"John Doe"}
+ ///
+ /// {"customer_name":"John Doe"}
+ [global::System.Text.Json.Serialization.JsonPropertyName("retell_llm_dynamic_variables")]
+ public global::System.Collections.Generic.Dictionary? RetellLlmDynamicVariables { get; set; }
+
+ ///
+ /// Start the call at this conversation flow node (stage). Must be a valid node id in the agent's conversation flow. Only applicable when the agent uses conversation flow as the response engine. Ignored for retell-llm agents.
+ /// Example: collect_info
+ ///
+ /// collect_info
+ [global::System.Text.Json.Serialization.JsonPropertyName("current_node_id")]
+ public string? CurrentNodeId { get; set; }
+
+ ///
+ /// Start the conversation in this state (stage). Must be a valid state name in the agent's Retell LLM. Only applicable when the agent uses Retell LLM with states. Ignored for conversation-flow agents.
+ /// Example: information_collection
+ ///
+ /// information_collection
+ [global::System.Text.Json.Serialization.JsonPropertyName("current_state")]
+ public string? CurrentState { get; set; }
+
+ ///
+ /// Additional properties that are not explicitly defined in the schema
+ ///
+ [global::System.Text.Json.Serialization.JsonExtensionData]
+ public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ ///
+ /// Unique id of agent used for the call. Your agent would contain the LLM Websocket url used for this call.
+ /// Example: oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD
+ ///
+ ///
+ /// Agent version reference. Supports a numeric version (for example 3) or a tag/environment name (for example "prod"). The string "latest" resolves to the most recently created version (the largest version number), and "latest_published" resolves to the most recently published version. When a tag is provided, resolution uses that exact tag assignment (including its dynamic variables). If the tag exists but is currently unassigned, it resolves to latest. When a numeric version, latest, or latest_published is provided, resolution applies dynamic variables from the preferred tag for that resolved version (most recently assigned), if any.
+ ///
+ ///
+ /// Override configuration for agent, retell LLM, or conversation flow settings for a specific call.
+ ///
+ ///
+ /// An arbitrary object for storage purpose only. You can put anything here like your internal customer id associated with the call. Not used for processing. You can later get this field from the call object.
+ ///
+ ///
+ /// Add optional dynamic variables in key value pairs of string that injects into your Response Engine prompt and tool description. Only applicable for Response Engine.
+ /// Example: {"customer_name":"John Doe"}
+ ///
+ ///
+ /// Start the call at this conversation flow node (stage). Must be a valid node id in the agent's conversation flow. Only applicable when the agent uses conversation flow as the response engine. Ignored for retell-llm agents.
+ /// Example: collect_info
+ ///
+ ///
+ /// Start the conversation in this state (stage). Must be a valid state name in the agent's Retell LLM. Only applicable when the agent uses Retell LLM with states. Ignored for conversation-flow agents.
+ /// Example: information_collection
+ ///
+#if NET7_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
+#endif
+ public CreateWebCallV3Request(
+ string agentId,
+ global::RetellAI.AgentVersionReference? agentVersion,
+ global::RetellAI.AgentOverrideRequest? agentOverride,
+ object? metadata,
+ global::System.Collections.Generic.Dictionary? retellLlmDynamicVariables,
+ string? currentNodeId,
+ string? currentState)
+ {
+ this.AgentId = agentId ?? throw new global::System.ArgumentNullException(nameof(agentId));
+ this.AgentVersion = agentVersion;
+ this.AgentOverride = agentOverride;
+ this.Metadata = metadata;
+ this.RetellLlmDynamicVariables = retellLlmDynamicVariables;
+ this.CurrentNodeId = currentNodeId;
+ this.CurrentState = currentState;
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public CreateWebCallV3Request()
+ {
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3RequestMetadata.Json.g.cs b/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3RequestMetadata.Json.g.cs
new file mode 100644
index 00000000..d4d9cdd4
--- /dev/null
+++ b/src/libs/RetellAI/Generated/RetellAI.Models.CreateWebCallV3RequestMetadata.Json.g.cs
@@ -0,0 +1,141 @@
+#nullable enable
+
+namespace RetellAI
+{
+ public sealed partial class CreateWebCallV3RequestMetadata
+ {
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
+ ///
+ public string ToJson(
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ this.GetType(),
+ jsonSerializerContext);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext.
+ ///
+ public string ToJson()
+ {
+ return ToJson(global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public string ToJson(
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return ToJson(global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Serialize(
+ this,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerContext.
+ ///
+ public static global::RetellAI.CreateWebCallV3RequestMetadata? FromJson(
+ string json,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ typeof(global::RetellAI.CreateWebCallV3RequestMetadata),
+ jsonSerializerContext) as global::RetellAI.CreateWebCallV3RequestMetadata;
+ }
+
+ ///
+ /// Deserializes a JSON string using the generated default JsonSerializerContext.
+ ///
+ public static global::RetellAI.CreateWebCallV3RequestMetadata? FromJson(
+ string json)
+ {
+ return FromJson(
+ json,
+ global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON string using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::RetellAI.CreateWebCallV3RequestMetadata? FromJson(
+ string json,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJson(
+ json,
+ global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.Deserialize(
+ json,
+ jsonSerializerOptions);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerContext.
+ ///
+ public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
+ {
+ return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
+ jsonStream,
+ typeof(global::RetellAI.CreateWebCallV3RequestMetadata),
+ jsonSerializerContext).ConfigureAwait(false)) as global::RetellAI.CreateWebCallV3RequestMetadata;
+ }
+
+ ///
+ /// Deserializes a JSON stream using the generated default JsonSerializerContext.
+ ///
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ ///
+ /// Deserializes a JSON stream using the provided JsonSerializerOptions.
+ ///
+#if NET8_0_OR_GREATER
+ [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
+ [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
+#endif
+ public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
+ global::System.IO.Stream jsonStream,
+ global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
+ {
+ if (jsonSerializerOptions is null)
+ {
+ return FromJsonStreamAsync(
+ jsonStream,
+ global::RetellAI.SourceGenerationContext.Default);
+ }
+
+ return global::System.Text.Json.JsonSerializer.DeserializeAsync