diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactMode.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactMode.g.cs
new file mode 100644
index 00000000..5fe717f1
--- /dev/null
+++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactMode.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Vapi.JsonConverters
+{
+ ///
+ public sealed class TransferArtifactModeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Vapi.TransferArtifactMode 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::Vapi.TransferArtifactModeExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Vapi.TransferArtifactMode)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Vapi.TransferArtifactMode);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Vapi.TransferArtifactMode value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Vapi.TransferArtifactModeExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactModeNullable.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactModeNullable.g.cs
new file mode 100644
index 00000000..e7d975dd
--- /dev/null
+++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactModeNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Vapi.JsonConverters
+{
+ ///
+ public sealed class TransferArtifactModeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Vapi.TransferArtifactMode? 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::Vapi.TransferArtifactModeExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Vapi.TransferArtifactMode)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Vapi.TransferArtifactMode?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Vapi.TransferArtifactMode? 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::Vapi.TransferArtifactModeExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactStatus.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactStatus.g.cs
new file mode 100644
index 00000000..f5f2b87f
--- /dev/null
+++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactStatus.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Vapi.JsonConverters
+{
+ ///
+ public sealed class TransferArtifactStatusJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Vapi.TransferArtifactStatus 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::Vapi.TransferArtifactStatusExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Vapi.TransferArtifactStatus)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Vapi.TransferArtifactStatus);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Vapi.TransferArtifactStatus value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Vapi.TransferArtifactStatusExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactStatusNullable.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactStatusNullable.g.cs
new file mode 100644
index 00000000..d996fb2a
--- /dev/null
+++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.TransferArtifactStatusNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Vapi.JsonConverters
+{
+ ///
+ public sealed class TransferArtifactStatusNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Vapi.TransferArtifactStatus? 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::Vapi.TransferArtifactStatusExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Vapi.TransferArtifactStatus)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Vapi.TransferArtifactStatus?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Vapi.TransferArtifactStatus? 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::Vapi.TransferArtifactStatusExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs b/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs
index 42d614ec..9b8871e1 100644
--- a/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs
+++ b/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs
@@ -1957,6 +1957,14 @@ namespace Vapi
typeof(global::Vapi.JsonConverters.VonageTransportProviderNullableJsonConverter),
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeNullableJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusNullableJsonConverter),
+
typeof(global::Vapi.JsonConverters.RecordingConsentTypeJsonConverter),
typeof(global::Vapi.JsonConverters.RecordingConsentTypeNullableJsonConverter),
@@ -4869,6 +4877,10 @@ namespace Vapi
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
@@ -7876,6 +7888,14 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Vapi.JsonConverters.VonageTransportProviderNullableJsonConverter),
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeNullableJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusNullableJsonConverter),
+
typeof(global::Vapi.JsonConverters.RecordingConsentTypeJsonConverter),
typeof(global::Vapi.JsonConverters.RecordingConsentTypeNullableJsonConverter),
@@ -10788,6 +10808,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
@@ -13795,6 +13819,14 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Vapi.JsonConverters.VonageTransportProviderNullableJsonConverter),
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeNullableJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusNullableJsonConverter),
+
typeof(global::Vapi.JsonConverters.RecordingConsentTypeJsonConverter),
typeof(global::Vapi.JsonConverters.RecordingConsentTypeNullableJsonConverter),
@@ -16707,6 +16739,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
@@ -17485,16 +17521,20 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.MonitorResult))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.Monitor))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TransferArtifact))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TransferArtifactMode), TypeInfoPropertyName = "TransferArtifactMode2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TransferArtifactStatus), TypeInfoPropertyName = "TransferArtifactStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList>))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfUserMessageSystemMessageBotMessageToolCallMessageToolCallResultMessage2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.Mono))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.Recording))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.NodeArtifact))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList>))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfUserMessageSystemMessageBotMessageToolCallMessageToolCallResultMessage2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AssistantActivation))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TurnLatency))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PerformanceMetrics))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.Artifact))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.RecordingConsent))]
@@ -17755,10 +17795,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfStringJsonSchema2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.VoicemailTool))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.VoicemailToolType), TypeInfoPropertyName = "VoicemailToolType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateApiRequestToolDTOType), TypeInfoPropertyName = "CreateApiRequestToolDTOType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateApiRequestToolDTOMethod), TypeInfoPropertyName = "CreateApiRequestToolDTOMethod2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateCodeToolDTOType), TypeInfoPropertyName = "CreateCodeToolDTOType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateOutputToolDTO))]
internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -19714,6 +19750,14 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Vapi.JsonConverters.VonageTransportProviderNullableJsonConverter),
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeNullableJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusNullableJsonConverter),
+
typeof(global::Vapi.JsonConverters.RecordingConsentTypeJsonConverter),
typeof(global::Vapi.JsonConverters.RecordingConsentTypeNullableJsonConverter),
@@ -22626,6 +22670,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
@@ -23255,6 +23303,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateApiRequestToolDTOType), TypeInfoPropertyName = "CreateApiRequestToolDTOType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateApiRequestToolDTOMethod), TypeInfoPropertyName = "CreateApiRequestToolDTOMethod2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateCodeToolDTOType), TypeInfoPropertyName = "CreateCodeToolDTOType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateOutputToolDTO))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateOutputToolDTOType), TypeInfoPropertyName = "CreateOutputToolDTOType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateBashToolDTOType), TypeInfoPropertyName = "CreateBashToolDTOType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateBashToolDTOSubType), TypeInfoPropertyName = "CreateBashToolDTOSubType2")]
@@ -23674,10 +23726,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AnthropicBedrockCredentialRegion), TypeInfoPropertyName = "AnthropicBedrockCredentialRegion2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AnyscaleCredential))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AnyscaleCredentialProvider), TypeInfoPropertyName = "AnyscaleCredentialProvider2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AssemblyAICredential))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AssemblyAICredentialProvider), TypeInfoPropertyName = "AssemblyAICredentialProvider2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AzureCredential))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AzureCredentialProvider), TypeInfoPropertyName = "AzureCredentialProvider2")]
internal sealed partial class SourceGenerationContextChunk3 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -25633,6 +25681,14 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
typeof(global::Vapi.JsonConverters.VonageTransportProviderNullableJsonConverter),
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeNullableJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusNullableJsonConverter),
+
typeof(global::Vapi.JsonConverters.RecordingConsentTypeJsonConverter),
typeof(global::Vapi.JsonConverters.RecordingConsentTypeNullableJsonConverter),
@@ -28545,6 +28601,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
@@ -29174,6 +29234,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AssemblyAICredential))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AssemblyAICredentialProvider), TypeInfoPropertyName = "AssemblyAICredentialProvider2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AzureCredential))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AzureCredentialProvider), TypeInfoPropertyName = "AzureCredentialProvider2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AzureCredentialService), TypeInfoPropertyName = "AzureCredentialService2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AzureCredentialRegion), TypeInfoPropertyName = "AzureCredentialRegion2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AzureOpenAICredential))]
@@ -29593,10 +29657,6 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageModelOutputType), TypeInfoPropertyName = "ServerMessageModelOutputType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessagePhoneCallControl))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessagePhoneCallControlType), TypeInfoPropertyName = "ServerMessagePhoneCallControlType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessagePhoneCallControlRequest), TypeInfoPropertyName = "ServerMessagePhoneCallControlRequest2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageSpeechUpdate))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageSpeechUpdateType), TypeInfoPropertyName = "ServerMessageSpeechUpdateType2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageSpeechUpdateStatus), TypeInfoPropertyName = "ServerMessageSpeechUpdateStatus2")]
internal sealed partial class SourceGenerationContextChunk4 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -31552,6 +31612,14 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex
typeof(global::Vapi.JsonConverters.VonageTransportProviderNullableJsonConverter),
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactModeNullableJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.TransferArtifactStatusNullableJsonConverter),
+
typeof(global::Vapi.JsonConverters.RecordingConsentTypeJsonConverter),
typeof(global::Vapi.JsonConverters.RecordingConsentTypeNullableJsonConverter),
@@ -34464,6 +34532,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
+ typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
+
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
typeof(global::Vapi.JsonConverters.OneOfJsonConverter),
@@ -35093,6 +35165,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessagePhoneCallControlRequest), TypeInfoPropertyName = "ServerMessagePhoneCallControlRequest2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageSpeechUpdate))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageSpeechUpdateType), TypeInfoPropertyName = "ServerMessageSpeechUpdateType2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageSpeechUpdateStatus), TypeInfoPropertyName = "ServerMessageSpeechUpdateStatus2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageSpeechUpdateRole), TypeInfoPropertyName = "ServerMessageSpeechUpdateRole2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageStatusUpdate))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ServerMessageStatusUpdateType), TypeInfoPropertyName = "ServerMessageStatusUpdateType2")]
@@ -35378,6 +35454,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))]
+ [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))]
@@ -36468,6 +36545,10 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Vapi.JsonConverters.VonageTransportConversationTypeNullableJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.VonageTransportProviderJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.VonageTransportProviderNullableJsonConverter());
+ options.Converters.Add(new global::Vapi.JsonConverters.TransferArtifactModeJsonConverter());
+ options.Converters.Add(new global::Vapi.JsonConverters.TransferArtifactModeNullableJsonConverter());
+ options.Converters.Add(new global::Vapi.JsonConverters.TransferArtifactStatusJsonConverter());
+ options.Converters.Add(new global::Vapi.JsonConverters.TransferArtifactStatusNullableJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.RecordingConsentTypeJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.RecordingConsentTypeNullableJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.TransferPhoneNumberHookActionTypeJsonConverter());
@@ -37924,6 +38005,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter());
+ options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter());
options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter());
diff --git a/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs b/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs
index 47e8d332..8d08f091 100644
--- a/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs
@@ -4000,15 +4000,15 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Vapi.Mono? Type993 { get; set; }
+ public global::Vapi.TransferArtifact? Type993 { get; set; }
///
///
///
- public global::Vapi.Recording? Type994 { get; set; }
+ public global::Vapi.TransferArtifactMode? Type994 { get; set; }
///
///
///
- public global::Vapi.NodeArtifact? Type995 { get; set; }
+ public global::Vapi.TransferArtifactStatus? Type995 { get; set; }
///
///
///
@@ -4020,5307 +4020,5323 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Vapi.AssistantActivation? Type998 { get; set; }
+ public global::Vapi.Mono? Type998 { get; set; }
///
///
///
- public global::Vapi.TurnLatency? Type999 { get; set; }
+ public global::Vapi.Recording? Type999 { get; set; }
///
///
///
- public global::Vapi.PerformanceMetrics? Type1000 { get; set; }
+ public global::Vapi.NodeArtifact? Type1000 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1001 { get; set; }
+ public global::Vapi.AssistantActivation? Type1001 { get; set; }
///
///
///
- public global::Vapi.Artifact? Type1002 { get; set; }
+ public global::Vapi.TurnLatency? Type1002 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1003 { get; set; }
+ public global::Vapi.PerformanceMetrics? Type1003 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1004 { get; set; }
+ public global::System.Collections.Generic.IList? Type1004 { get; set; }
///
///
///
- public global::Vapi.RecordingConsent? Type1005 { get; set; }
+ public global::Vapi.Artifact? Type1005 { get; set; }
///
///
///
- public global::Vapi.RecordingConsentType? Type1006 { get; set; }
+ public global::System.Collections.Generic.IList? Type1006 { get; set; }
///
///
///
- public global::Vapi.Compliance? Type1007 { get; set; }
+ public global::System.Collections.Generic.IList? Type1007 { get; set; }
///
///
///
- public global::Vapi.WorkflowOverrides? Type1008 { get; set; }
+ public global::System.Collections.Generic.IList? Type1008 { get; set; }
///
///
///
- public global::Vapi.TransferPhoneNumberHookAction? Type1009 { get; set; }
+ public global::Vapi.RecordingConsent? Type1009 { get; set; }
///
///
///
- public global::Vapi.TransferPhoneNumberHookActionType? Type1010 { get; set; }
+ public global::Vapi.RecordingConsentType? Type1010 { get; set; }
///
///
///
- public global::Vapi.SayPhoneNumberHookAction? Type1011 { get; set; }
+ public global::Vapi.Compliance? Type1011 { get; set; }
///
///
///
- public global::Vapi.SayPhoneNumberHookActionType? Type1012 { get; set; }
+ public global::Vapi.WorkflowOverrides? Type1012 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberCallRingingHookFilter? Type1013 { get; set; }
+ public global::Vapi.TransferPhoneNumberHookAction? Type1013 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberCallRingingHookFilterType? Type1014 { get; set; }
+ public global::Vapi.TransferPhoneNumberHookActionType? Type1014 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberCallRingingHookFilterKey? Type1015 { get; set; }
+ public global::Vapi.SayPhoneNumberHookAction? Type1015 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberHookCallRinging? Type1016 { get; set; }
+ public global::Vapi.SayPhoneNumberHookActionType? Type1016 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberHookCallRingingOn? Type1017 { get; set; }
+ public global::Vapi.PhoneNumberCallRingingHookFilter? Type1017 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1018 { get; set; }
+ public global::Vapi.PhoneNumberCallRingingHookFilterType? Type1018 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1019 { get; set; }
+ public global::Vapi.PhoneNumberCallRingingHookFilterKey? Type1019 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1020 { get; set; }
+ public global::Vapi.PhoneNumberHookCallRinging? Type1020 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberCallEndingHookFilter? Type1021 { get; set; }
+ public global::Vapi.PhoneNumberHookCallRingingOn? Type1021 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberCallEndingHookFilterType? Type1022 { get; set; }
+ public global::System.Collections.Generic.IList? Type1022 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberCallEndingHookFilterKey? Type1023 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1023 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1024 { get; set; }
+ public global::Vapi.OneOf? Type1024 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberCallEndingHookFilterOneOfItem? Type1025 { get; set; }
+ public global::Vapi.PhoneNumberCallEndingHookFilter? Type1025 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberHookCallEnding? Type1026 { get; set; }
+ public global::Vapi.PhoneNumberCallEndingHookFilterType? Type1026 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberHookCallEndingOn? Type1027 { get; set; }
+ public global::Vapi.PhoneNumberCallEndingHookFilterKey? Type1027 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1028 { get; set; }
+ public global::System.Collections.Generic.IList? Type1028 { get; set; }
///
///
///
- public global::Vapi.ImportTwilioPhoneNumberDTO? Type1029 { get; set; }
+ public global::Vapi.PhoneNumberCallEndingHookFilterOneOfItem? Type1029 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1030 { get; set; }
+ public global::Vapi.PhoneNumberHookCallEnding? Type1030 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1031 { get; set; }
+ public global::Vapi.PhoneNumberHookCallEndingOn? Type1031 { get; set; }
///
///
///
- public global::Vapi.CreateCustomerDTO? Type1032 { get; set; }
+ public global::System.Collections.Generic.IList? Type1032 { get; set; }
///
///
///
- public global::Vapi.SchedulePlan? Type1033 { get; set; }
+ public global::Vapi.ImportTwilioPhoneNumberDTO? Type1033 { get; set; }
///
///
///
- public global::Vapi.Call? Type1034 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1034 { get; set; }
///
///
///
- public global::Vapi.CallType? Type1035 { get; set; }
+ public global::Vapi.OneOf? Type1035 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1036 { get; set; }
+ public global::Vapi.CreateCustomerDTO? Type1036 { get; set; }
///
///
///
- public global::Vapi.KnowledgeBaseCost? Type1037 { get; set; }
+ public global::Vapi.SchedulePlan? Type1037 { get; set; }
///
///
///
- public global::Vapi.CallPhoneCallProvider? Type1038 { get; set; }
+ public global::Vapi.Call? Type1038 { get; set; }
///
///
///
- public global::Vapi.CallPhoneCallTransport? Type1039 { get; set; }
+ public global::Vapi.CallType? Type1039 { get; set; }
///
///
///
- public global::Vapi.CallStatus? Type1040 { get; set; }
+ public global::Vapi.OneOf? Type1040 { get; set; }
///
///
///
- public global::Vapi.CallEndedReason? Type1041 { get; set; }
+ public global::Vapi.KnowledgeBaseCost? Type1041 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1042 { get; set; }
+ public global::Vapi.CallPhoneCallProvider? Type1042 { get; set; }
///
///
///
- public global::Vapi.CallBatchError? Type1043 { get; set; }
+ public global::Vapi.CallPhoneCallTransport? Type1043 { get; set; }
///
///
///
- public global::Vapi.CallBatchResponse? Type1044 { get; set; }
+ public global::Vapi.CallStatus? Type1044 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1045 { get; set; }
+ public global::Vapi.CallEndedReason? Type1045 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1046 { get; set; }
+ public global::Vapi.OneOf? Type1046 { get; set; }
///
///
///
- public global::Vapi.AssistantSpeechWordAlignmentTiming? Type1047 { get; set; }
+ public global::Vapi.CallBatchError? Type1047 { get; set; }
///
///
///
- public global::Vapi.AssistantSpeechWordAlignmentTimingType? Type1048 { get; set; }
+ public global::Vapi.CallBatchResponse? Type1048 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1049 { get; set; }
+ public global::System.Collections.Generic.IList? Type1049 { get; set; }
///
///
///
- public global::Vapi.AssistantSpeechWordTimestamp? Type1050 { get; set; }
+ public global::System.Collections.Generic.IList? Type1050 { get; set; }
///
///
///
- public global::Vapi.AssistantSpeechWordProgressTiming? Type1051 { get; set; }
+ public global::Vapi.AssistantSpeechWordAlignmentTiming? Type1051 { get; set; }
///
///
///
- public global::Vapi.AssistantSpeechWordProgressTimingType? Type1052 { get; set; }
+ public global::Vapi.AssistantSpeechWordAlignmentTimingType? Type1052 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1053 { get; set; }
+ public global::System.Collections.Generic.IList? Type1053 { get; set; }
///
///
///
- public global::Vapi.CreateCallDTO? Type1054 { get; set; }
+ public global::Vapi.AssistantSpeechWordTimestamp? Type1054 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1055 { get; set; }
+ public global::Vapi.AssistantSpeechWordProgressTiming? Type1055 { get; set; }
///
///
///
- public global::Vapi.StructuredOutputFilterDTO? Type1056 { get; set; }
+ public global::Vapi.AssistantSpeechWordProgressTimingType? Type1056 { get; set; }
///
///
///
- public global::Vapi.CallPaginatedResponse? Type1057 { get; set; }
+ public global::System.Collections.Generic.IList? Type1057 { get; set; }
///
///
///
- public global::Vapi.CreateOutboundCallDTO? Type1058 { get; set; }
+ public global::Vapi.CreateCallDTO? Type1058 { get; set; }
///
///
///
- public global::Vapi.CreateWebCallDTO? Type1059 { get; set; }
+ public global::System.Collections.Generic.IList? Type1059 { get; set; }
///
///
///
- public global::Vapi.UpdateCallDTO? Type1060 { get; set; }
+ public global::Vapi.StructuredOutputFilterDTO? Type1060 { get; set; }
///
///
///
- public global::Vapi.DeleteCallDTO? Type1061 { get; set; }
+ public global::Vapi.CallPaginatedResponse? Type1061 { get; set; }
///
///
///
- public global::Vapi.DeveloperMessageRole? Type1062 { get; set; }
+ public global::Vapi.CreateOutboundCallDTO? Type1062 { get; set; }
///
///
///
- public global::Vapi.ToolCallFunction? Type1063 { get; set; }
+ public global::Vapi.CreateWebCallDTO? Type1063 { get; set; }
///
///
///
- public global::Vapi.ToolCall? Type1064 { get; set; }
+ public global::Vapi.UpdateCallDTO? Type1064 { get; set; }
///
///
///
- public global::Vapi.AssistantMessageRole? Type1065 { get; set; }
+ public global::Vapi.DeleteCallDTO? Type1065 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1066 { get; set; }
+ public global::Vapi.DeveloperMessageRole? Type1066 { get; set; }
///
///
///
- public global::Vapi.ToolMessageRole? Type1067 { get; set; }
+ public global::Vapi.ToolCallFunction? Type1067 { get; set; }
///
///
///
- public global::Vapi.FunctionCall? Type1068 { get; set; }
+ public global::Vapi.ToolCall? Type1068 { get; set; }
///
///
///
- public global::Vapi.Chat? Type1069 { get; set; }
+ public global::Vapi.AssistantMessageRole? Type1069 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1070 { get; set; }
+ public global::System.Collections.Generic.IList? Type1070 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1071 { get; set; }
+ public global::Vapi.ToolMessageRole? Type1071 { get; set; }
///
///
///
- public global::Vapi.TwilioSMSChatTransport? Type1072 { get; set; }
+ public global::Vapi.FunctionCall? Type1072 { get; set; }
///
///
///
- public global::Vapi.TwilioSMSChatTransportConversationType? Type1073 { get; set; }
+ public global::Vapi.Chat? Type1073 { get; set; }
///
///
///
- public global::Vapi.TwilioSMSChatTransportType? Type1074 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1074 { get; set; }
///
///
///
- public global::Vapi.CreateChatDTO? Type1075 { get; set; }
+ public global::Vapi.OneOf? Type1075 { get; set; }
///
///
///
- public global::Vapi.GetChatPaginatedDTO? Type1076 { get; set; }
+ public global::Vapi.TwilioSMSChatTransport? Type1076 { get; set; }
///
///
///
- public global::Vapi.GetChatPaginatedDTOSortOrder? Type1077 { get; set; }
+ public global::Vapi.TwilioSMSChatTransportConversationType? Type1077 { get; set; }
///
///
///
- public global::Vapi.GetChatPaginatedDTOSortBy? Type1078 { get; set; }
+ public global::Vapi.TwilioSMSChatTransportType? Type1078 { get; set; }
///
///
///
- public global::Vapi.ChatPaginatedResponse? Type1079 { get; set; }
+ public global::Vapi.CreateChatDTO? Type1079 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1080 { get; set; }
+ public global::Vapi.GetChatPaginatedDTO? Type1080 { get; set; }
///
///
///
- public global::Vapi.CreateChatStreamResponse? Type1081 { get; set; }
+ public global::Vapi.GetChatPaginatedDTOSortOrder? Type1081 { get; set; }
///
///
///
- public global::Vapi.OpenAIResponsesRequest? Type1082 { get; set; }
+ public global::Vapi.GetChatPaginatedDTOSortBy? Type1082 { get; set; }
///
///
///
- public global::Vapi.ChatAssistantOverrides? Type1083 { get; set; }
+ public global::Vapi.ChatPaginatedResponse? Type1083 { get; set; }
///
///
///
- public global::Vapi.CreateWebCustomerDTO? Type1084 { get; set; }
+ public global::System.Collections.Generic.IList? Type1084 { get; set; }
///
///
///
- public global::Vapi.CreateWebChatDTO? Type1085 { get; set; }
+ public global::Vapi.CreateChatStreamResponse? Type1085 { get; set; }
///
///
///
- public global::Vapi.WebChat? Type1086 { get; set; }
+ public global::Vapi.OpenAIResponsesRequest? Type1086 { get; set; }
///
///
///
- public global::Vapi.OpenAIWebChatRequest? Type1087 { get; set; }
+ public global::Vapi.ChatAssistantOverrides? Type1087 { get; set; }
///
///
///
- public global::Vapi.ExportChatDTO? Type1088 { get; set; }
+ public global::Vapi.CreateWebCustomerDTO? Type1088 { get; set; }
///
///
///
- public global::Vapi.ExportChatDTOColumns? Type1089 { get; set; }
+ public global::Vapi.CreateWebChatDTO? Type1089 { get; set; }
///
///
///
- public global::Vapi.ExportChatDTOFormat? Type1090 { get; set; }
+ public global::Vapi.WebChat? Type1090 { get; set; }
///
///
///
- public global::Vapi.ExportChatDTOSortOrder? Type1091 { get; set; }
+ public global::Vapi.OpenAIWebChatRequest? Type1091 { get; set; }
///
///
///
- public global::Vapi.ExportChatDTOSortBy? Type1092 { get; set; }
+ public global::Vapi.ExportChatDTO? Type1092 { get; set; }
///
///
///
- public global::Vapi.ResponseOutputText? Type1093 { get; set; }
+ public global::Vapi.ExportChatDTOColumns? Type1093 { get; set; }
///
///
///
- public global::Vapi.ResponseOutputTextType? Type1094 { get; set; }
+ public global::Vapi.ExportChatDTOFormat? Type1094 { get; set; }
///
///
///
- public global::Vapi.ResponseOutputMessage? Type1095 { get; set; }
+ public global::Vapi.ExportChatDTOSortOrder? Type1095 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1096 { get; set; }
+ public global::Vapi.ExportChatDTOSortBy? Type1096 { get; set; }
///
///
///
- public global::Vapi.ResponseOutputMessageRole? Type1097 { get; set; }
+ public global::Vapi.ResponseOutputText? Type1097 { get; set; }
///
///
///
- public global::Vapi.ResponseOutputMessageStatus? Type1098 { get; set; }
+ public global::Vapi.ResponseOutputTextType? Type1098 { get; set; }
///
///
///
- public global::Vapi.ResponseOutputMessageType? Type1099 { get; set; }
+ public global::Vapi.ResponseOutputMessage? Type1099 { get; set; }
///
///
///
- public global::Vapi.ResponseObject? Type1100 { get; set; }
+ public global::System.Collections.Generic.IList? Type1100 { get; set; }
///
///
///
- public global::Vapi.ResponseObjectObject? Type1101 { get; set; }
+ public global::Vapi.ResponseOutputMessageRole? Type1101 { get; set; }
///
///
///
- public global::Vapi.ResponseObjectStatus? Type1102 { get; set; }
+ public global::Vapi.ResponseOutputMessageStatus? Type1102 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1103 { get; set; }
+ public global::Vapi.ResponseOutputMessageType? Type1103 { get; set; }
///
///
///
- public global::Vapi.ResponseTextDeltaEvent? Type1104 { get; set; }
+ public global::Vapi.ResponseObject? Type1104 { get; set; }
///
///
///
- public global::Vapi.ResponseTextDeltaEventType? Type1105 { get; set; }
+ public global::Vapi.ResponseObjectObject? Type1105 { get; set; }
///
///
///
- public global::Vapi.ResponseTextDoneEvent? Type1106 { get; set; }
+ public global::Vapi.ResponseObjectStatus? Type1106 { get; set; }
///
///
///
- public global::Vapi.ResponseTextDoneEventType? Type1107 { get; set; }
+ public global::System.Collections.Generic.IList? Type1107 { get; set; }
///
///
///
- public global::Vapi.ResponseCompletedEvent? Type1108 { get; set; }
+ public global::Vapi.ResponseTextDeltaEvent? Type1108 { get; set; }
///
///
///
- public global::Vapi.ResponseCompletedEventType? Type1109 { get; set; }
+ public global::Vapi.ResponseTextDeltaEventType? Type1109 { get; set; }
///
///
///
- public global::Vapi.ResponseErrorEvent? Type1110 { get; set; }
+ public global::Vapi.ResponseTextDoneEvent? Type1110 { get; set; }
///
///
///
- public global::Vapi.ResponseErrorEventType? Type1111 { get; set; }
+ public global::Vapi.ResponseTextDoneEventType? Type1111 { get; set; }
///
///
///
- public global::Vapi.DialPlanEntry? Type1112 { get; set; }
+ public global::Vapi.ResponseCompletedEvent? Type1112 { get; set; }
///
///
///
- public global::Vapi.CreateCampaignDTO? Type1113 { get; set; }
+ public global::Vapi.ResponseCompletedEventType? Type1113 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1114 { get; set; }
+ public global::Vapi.ResponseErrorEvent? Type1114 { get; set; }
///
///
///
- public global::Vapi.Campaign? Type1115 { get; set; }
+ public global::Vapi.ResponseErrorEventType? Type1115 { get; set; }
///
///
///
- public global::Vapi.CampaignStatus? Type1116 { get; set; }
+ public global::Vapi.DialPlanEntry? Type1116 { get; set; }
///
///
///
- public global::Vapi.CampaignEndedReason? Type1117 { get; set; }
+ public global::Vapi.CreateCampaignDTO? Type1117 { get; set; }
///
///
///
- public global::Vapi.CampaignPaginatedResponse? Type1118 { get; set; }
+ public global::System.Collections.Generic.IList? Type1118 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1119 { get; set; }
+ public global::Vapi.Campaign? Type1119 { get; set; }
///
///
///
- public global::Vapi.UpdateCampaignDTO? Type1120 { get; set; }
+ public global::Vapi.CampaignStatus? Type1120 { get; set; }
///
///
///
- public global::Vapi.UpdateCampaignDTOStatus? Type1121 { get; set; }
+ public global::Vapi.CampaignEndedReason? Type1121 { get; set; }
///
///
///
- public global::Vapi.RelayTargetAssistant? Type1122 { get; set; }
+ public global::Vapi.CampaignPaginatedResponse? Type1122 { get; set; }
///
///
///
- public global::Vapi.RelayTargetAssistantType? Type1123 { get; set; }
+ public global::System.Collections.Generic.IList? Type1123 { get; set; }
///
///
///
- public global::Vapi.RelayTargetSquad? Type1124 { get; set; }
+ public global::Vapi.UpdateCampaignDTO? Type1124 { get; set; }
///
///
///
- public global::Vapi.RelayTargetSquadType? Type1125 { get; set; }
+ public global::Vapi.UpdateCampaignDTOStatus? Type1125 { get; set; }
///
///
///
- public global::Vapi.RelayTargetOptions? Type1126 { get; set; }
+ public global::Vapi.RelayTargetAssistant? Type1126 { get; set; }
///
///
///
- public global::Vapi.RelayTargetOptionsType? Type1127 { get; set; }
+ public global::Vapi.RelayTargetAssistantType? Type1127 { get; set; }
///
///
///
- public global::Vapi.RelayCommandSay? Type1128 { get; set; }
+ public global::Vapi.RelayTargetSquad? Type1128 { get; set; }
///
///
///
- public global::Vapi.RelayCommandSayType? Type1129 { get; set; }
+ public global::Vapi.RelayTargetSquadType? Type1129 { get; set; }
///
///
///
- public global::Vapi.RelayCommandNote? Type1130 { get; set; }
+ public global::Vapi.RelayTargetOptions? Type1130 { get; set; }
///
///
///
- public global::Vapi.RelayCommandNoteType? Type1131 { get; set; }
+ public global::Vapi.RelayTargetOptionsType? Type1131 { get; set; }
///
///
///
- public global::Vapi.RelayCommandOptions? Type1132 { get; set; }
+ public global::Vapi.RelayCommandSay? Type1132 { get; set; }
///
///
///
- public global::Vapi.RelayCommandOptionsType? Type1133 { get; set; }
+ public global::Vapi.RelayCommandSayType? Type1133 { get; set; }
///
///
///
- public global::Vapi.RelayRequest? Type1134 { get; set; }
+ public global::Vapi.RelayCommandNote? Type1134 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1135 { get; set; }
+ public global::Vapi.RelayCommandNoteType? Type1135 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1136 { get; set; }
+ public global::Vapi.RelayCommandOptions? Type1136 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1137 { get; set; }
+ public global::Vapi.RelayCommandOptionsType? Type1137 { get; set; }
///
///
///
- public global::Vapi.RelayResponse? Type1138 { get; set; }
+ public global::Vapi.RelayRequest? Type1138 { get; set; }
///
///
///
- public global::Vapi.RelayResponseStatus? Type1139 { get; set; }
+ public global::Vapi.OneOf? Type1139 { get; set; }
///
///
///
- public global::Vapi.Session? Type1140 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1140 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1141 { get; set; }
+ public global::Vapi.OneOf? Type1141 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1142 { get; set; }
+ public global::Vapi.RelayResponse? Type1142 { get; set; }
///
///
///
- public global::Vapi.SessionCost? Type1143 { get; set; }
+ public global::Vapi.RelayResponseStatus? Type1143 { get; set; }
///
///
///
- public global::Vapi.SessionStatus? Type1144 { get; set; }
+ public global::Vapi.Session? Type1144 { get; set; }
///
///
///
- public global::Vapi.CreateSessionDTO? Type1145 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1145 { get; set; }
///
///
///
- public global::Vapi.CreateSessionDTOStatus? Type1146 { get; set; }
+ public global::Vapi.OneOf? Type1146 { get; set; }
///
///
///
- public global::Vapi.UpdateSessionDTO? Type1147 { get; set; }
+ public global::Vapi.SessionCost? Type1147 { get; set; }
///
///
///
- public global::Vapi.UpdateSessionDTOStatus? Type1148 { get; set; }
+ public global::Vapi.SessionStatus? Type1148 { get; set; }
///
///
///
- public global::Vapi.GetSessionPaginatedDTO? Type1149 { get; set; }
+ public global::Vapi.CreateSessionDTO? Type1149 { get; set; }
///
///
///
- public global::Vapi.GetSessionPaginatedDTOSortOrder? Type1150 { get; set; }
+ public global::Vapi.CreateSessionDTOStatus? Type1150 { get; set; }
///
///
///
- public global::Vapi.GetSessionPaginatedDTOSortBy? Type1151 { get; set; }
+ public global::Vapi.UpdateSessionDTO? Type1151 { get; set; }
///
///
///
- public global::Vapi.SessionPaginatedResponse? Type1152 { get; set; }
+ public global::Vapi.UpdateSessionDTOStatus? Type1152 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1153 { get; set; }
+ public global::Vapi.GetSessionPaginatedDTO? Type1153 { get; set; }
///
///
///
- public global::Vapi.ExportSessionDTO? Type1154 { get; set; }
+ public global::Vapi.GetSessionPaginatedDTOSortOrder? Type1154 { get; set; }
///
///
///
- public global::Vapi.ExportSessionDTOColumns? Type1155 { get; set; }
+ public global::Vapi.GetSessionPaginatedDTOSortBy? Type1155 { get; set; }
///
///
///
- public global::Vapi.ExportSessionDTOFormat? Type1156 { get; set; }
+ public global::Vapi.SessionPaginatedResponse? Type1156 { get; set; }
///
///
///
- public global::Vapi.ExportSessionDTOSortOrder? Type1157 { get; set; }
+ public global::System.Collections.Generic.IList? Type1157 { get; set; }
///
///
///
- public global::Vapi.ExportSessionDTOSortBy? Type1158 { get; set; }
+ public global::Vapi.ExportSessionDTO? Type1158 { get; set; }
///
///
///
- public global::Vapi.ByoPhoneNumber? Type1159 { get; set; }
+ public global::Vapi.ExportSessionDTOColumns? Type1159 { get; set; }
///
///
///
- public global::Vapi.ByoPhoneNumberProvider? Type1160 { get; set; }
+ public global::Vapi.ExportSessionDTOFormat? Type1160 { get; set; }
///
///
///
- public global::Vapi.ByoPhoneNumberStatus? Type1161 { get; set; }
+ public global::Vapi.ExportSessionDTOSortOrder? Type1161 { get; set; }
///
///
///
- public global::Vapi.TwilioPhoneNumber? Type1162 { get; set; }
+ public global::Vapi.ExportSessionDTOSortBy? Type1162 { get; set; }
///
///
///
- public global::Vapi.TwilioPhoneNumberProvider? Type1163 { get; set; }
+ public global::Vapi.ByoPhoneNumber? Type1163 { get; set; }
///
///
///
- public global::Vapi.TwilioPhoneNumberStatus? Type1164 { get; set; }
+ public global::Vapi.ByoPhoneNumberProvider? Type1164 { get; set; }
///
///
///
- public global::Vapi.VonagePhoneNumber? Type1165 { get; set; }
+ public global::Vapi.ByoPhoneNumberStatus? Type1165 { get; set; }
///
///
///
- public global::Vapi.VonagePhoneNumberProvider? Type1166 { get; set; }
+ public global::Vapi.TwilioPhoneNumber? Type1166 { get; set; }
///
///
///
- public global::Vapi.VonagePhoneNumberStatus? Type1167 { get; set; }
+ public global::Vapi.TwilioPhoneNumberProvider? Type1167 { get; set; }
///
///
///
- public global::Vapi.SipAuthentication? Type1168 { get; set; }
+ public global::Vapi.TwilioPhoneNumberStatus? Type1168 { get; set; }
///
///
///
- public global::Vapi.VapiPhoneNumber? Type1169 { get; set; }
+ public global::Vapi.VonagePhoneNumber? Type1169 { get; set; }
///
///
///
- public global::Vapi.VapiPhoneNumberProvider? Type1170 { get; set; }
+ public global::Vapi.VonagePhoneNumberProvider? Type1170 { get; set; }
///
///
///
- public global::Vapi.VapiPhoneNumberStatus? Type1171 { get; set; }
+ public global::Vapi.VonagePhoneNumberStatus? Type1171 { get; set; }
///
///
///
- public global::Vapi.TelnyxPhoneNumber? Type1172 { get; set; }
+ public global::Vapi.SipAuthentication? Type1172 { get; set; }
///
///
///
- public global::Vapi.TelnyxPhoneNumberProvider? Type1173 { get; set; }
+ public global::Vapi.VapiPhoneNumber? Type1173 { get; set; }
///
///
///
- public global::Vapi.TelnyxPhoneNumberStatus? Type1174 { get; set; }
+ public global::Vapi.VapiPhoneNumberProvider? Type1174 { get; set; }
///
///
///
- public global::Vapi.CreateByoPhoneNumberDTO? Type1175 { get; set; }
+ public global::Vapi.VapiPhoneNumberStatus? Type1175 { get; set; }
///
///
///
- public global::Vapi.CreateByoPhoneNumberDTOProvider? Type1176 { get; set; }
+ public global::Vapi.TelnyxPhoneNumber? Type1176 { get; set; }
///
///
///
- public global::Vapi.CreateTwilioPhoneNumberDTO? Type1177 { get; set; }
+ public global::Vapi.TelnyxPhoneNumberProvider? Type1177 { get; set; }
///
///
///
- public global::Vapi.CreateTwilioPhoneNumberDTOProvider? Type1178 { get; set; }
+ public global::Vapi.TelnyxPhoneNumberStatus? Type1178 { get; set; }
///
///
///
- public global::Vapi.CreateVonagePhoneNumberDTO? Type1179 { get; set; }
+ public global::Vapi.CreateByoPhoneNumberDTO? Type1179 { get; set; }
///
///
///
- public global::Vapi.CreateVonagePhoneNumberDTOProvider? Type1180 { get; set; }
+ public global::Vapi.CreateByoPhoneNumberDTOProvider? Type1180 { get; set; }
///
///
///
- public global::Vapi.CreateVapiPhoneNumberDTO? Type1181 { get; set; }
+ public global::Vapi.CreateTwilioPhoneNumberDTO? Type1181 { get; set; }
///
///
///
- public global::Vapi.CreateVapiPhoneNumberDTOProvider? Type1182 { get; set; }
+ public global::Vapi.CreateTwilioPhoneNumberDTOProvider? Type1182 { get; set; }
///
///
///
- public global::Vapi.CreateTelnyxPhoneNumberDTO? Type1183 { get; set; }
+ public global::Vapi.CreateVonagePhoneNumberDTO? Type1183 { get; set; }
///
///
///
- public global::Vapi.CreateTelnyxPhoneNumberDTOProvider? Type1184 { get; set; }
+ public global::Vapi.CreateVonagePhoneNumberDTOProvider? Type1184 { get; set; }
///
///
///
- public global::Vapi.UpdateByoPhoneNumberDTO? Type1185 { get; set; }
+ public global::Vapi.CreateVapiPhoneNumberDTO? Type1185 { get; set; }
///
///
///
- public global::Vapi.UpdateByoPhoneNumberDTOProvider? Type1186 { get; set; }
+ public global::Vapi.CreateVapiPhoneNumberDTOProvider? Type1186 { get; set; }
///
///
///
- public global::Vapi.UpdateTwilioPhoneNumberDTO? Type1187 { get; set; }
+ public global::Vapi.CreateTelnyxPhoneNumberDTO? Type1187 { get; set; }
///
///
///
- public global::Vapi.UpdateTwilioPhoneNumberDTOProvider? Type1188 { get; set; }
+ public global::Vapi.CreateTelnyxPhoneNumberDTOProvider? Type1188 { get; set; }
///
///
///
- public global::Vapi.UpdateVonagePhoneNumberDTO? Type1189 { get; set; }
+ public global::Vapi.UpdateByoPhoneNumberDTO? Type1189 { get; set; }
///
///
///
- public global::Vapi.UpdateVonagePhoneNumberDTOProvider? Type1190 { get; set; }
+ public global::Vapi.UpdateByoPhoneNumberDTOProvider? Type1190 { get; set; }
///
///
///
- public global::Vapi.UpdateVapiPhoneNumberDTO? Type1191 { get; set; }
+ public global::Vapi.UpdateTwilioPhoneNumberDTO? Type1191 { get; set; }
///
///
///
- public global::Vapi.UpdateVapiPhoneNumberDTOProvider? Type1192 { get; set; }
+ public global::Vapi.UpdateTwilioPhoneNumberDTOProvider? Type1192 { get; set; }
///
///
///
- public global::Vapi.UpdateTelnyxPhoneNumberDTO? Type1193 { get; set; }
+ public global::Vapi.UpdateVonagePhoneNumberDTO? Type1193 { get; set; }
///
///
///
- public global::Vapi.UpdateTelnyxPhoneNumberDTOProvider? Type1194 { get; set; }
+ public global::Vapi.UpdateVonagePhoneNumberDTOProvider? Type1194 { get; set; }
///
///
///
- public global::Vapi.ImportVonagePhoneNumberDTO? Type1195 { get; set; }
+ public global::Vapi.UpdateVapiPhoneNumberDTO? Type1195 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberPaginatedResponse? Type1196 { get; set; }
+ public global::Vapi.UpdateVapiPhoneNumberDTOProvider? Type1196 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1197 { get; set; }
+ public global::Vapi.UpdateTelnyxPhoneNumberDTO? Type1197 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1198 { get; set; }
+ public global::Vapi.UpdateTelnyxPhoneNumberDTOProvider? Type1198 { get; set; }
///
///
///
- public global::Vapi.ApiRequestTool? Type1199 { get; set; }
+ public global::Vapi.ImportVonagePhoneNumberDTO? Type1199 { get; set; }
///
///
///
- public global::Vapi.ApiRequestToolType? Type1200 { get; set; }
+ public global::Vapi.PhoneNumberPaginatedResponse? Type1200 { get; set; }
///
///
///
- public global::Vapi.ApiRequestToolMethod? Type1201 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1201 { get; set; }
///
///
///
- public global::Vapi.CodeToolEnvironmentVariable? Type1202 { get; set; }
+ public global::Vapi.OneOf? Type1202 { get; set; }
///
///
///
- public global::Vapi.CodeTool? Type1203 { get; set; }
+ public global::Vapi.ApiRequestTool? Type1203 { get; set; }
///
///
///
- public global::Vapi.CodeToolType? Type1204 { get; set; }
+ public global::Vapi.ApiRequestToolType? Type1204 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1205 { get; set; }
+ public global::Vapi.ApiRequestToolMethod? Type1205 { get; set; }
///
///
///
- public global::Vapi.DtmfTool? Type1206 { get; set; }
+ public global::Vapi.CodeToolEnvironmentVariable? Type1206 { get; set; }
///
///
///
- public global::Vapi.DtmfToolType? Type1207 { get; set; }
+ public global::Vapi.CodeTool? Type1207 { get; set; }
///
///
///
- public global::Vapi.EndCallTool? Type1208 { get; set; }
+ public global::Vapi.CodeToolType? Type1208 { get; set; }
///
///
///
- public global::Vapi.EndCallToolType? Type1209 { get; set; }
+ public global::System.Collections.Generic.IList? Type1209 { get; set; }
///
///
///
- public global::Vapi.FunctionTool? Type1210 { get; set; }
+ public global::Vapi.DtmfTool? Type1210 { get; set; }
///
///
///
- public global::Vapi.FunctionToolType? Type1211 { get; set; }
+ public global::Vapi.DtmfToolType? Type1211 { get; set; }
///
///
///
- public global::Vapi.GhlTool? Type1212 { get; set; }
+ public global::Vapi.EndCallTool? Type1212 { get; set; }
///
///
///
- public global::Vapi.GhlToolType? Type1213 { get; set; }
+ public global::Vapi.EndCallToolType? Type1213 { get; set; }
///
///
///
- public global::Vapi.MakeTool? Type1214 { get; set; }
+ public global::Vapi.FunctionTool? Type1214 { get; set; }
///
///
///
- public global::Vapi.MakeToolType? Type1215 { get; set; }
+ public global::Vapi.FunctionToolType? Type1215 { get; set; }
///
///
///
- public global::Vapi.TransferCallTool? Type1216 { get; set; }
+ public global::Vapi.GhlTool? Type1216 { get; set; }
///
///
///
- public global::Vapi.TransferCallToolType? Type1217 { get; set; }
+ public global::Vapi.GhlToolType? Type1217 { get; set; }
///
///
///
- public global::Vapi.HandoffTool? Type1218 { get; set; }
+ public global::Vapi.MakeTool? Type1218 { get; set; }
///
///
///
- public global::Vapi.HandoffToolType? Type1219 { get; set; }
+ public global::Vapi.MakeToolType? Type1219 { get; set; }
///
///
///
- public global::Vapi.OutputTool? Type1220 { get; set; }
+ public global::Vapi.TransferCallTool? Type1220 { get; set; }
///
///
///
- public global::Vapi.OutputToolType? Type1221 { get; set; }
+ public global::Vapi.TransferCallToolType? Type1221 { get; set; }
///
///
///
- public global::Vapi.BashTool? Type1222 { get; set; }
+ public global::Vapi.HandoffTool? Type1222 { get; set; }
///
///
///
- public global::Vapi.BashToolType? Type1223 { get; set; }
+ public global::Vapi.HandoffToolType? Type1223 { get; set; }
///
///
///
- public global::Vapi.BashToolSubType? Type1224 { get; set; }
+ public global::Vapi.OutputTool? Type1224 { get; set; }
///
///
///
- public global::Vapi.BashToolName? Type1225 { get; set; }
+ public global::Vapi.OutputToolType? Type1225 { get; set; }
///
///
///
- public global::Vapi.ComputerTool? Type1226 { get; set; }
+ public global::Vapi.BashTool? Type1226 { get; set; }
///
///
///
- public global::Vapi.ComputerToolType? Type1227 { get; set; }
+ public global::Vapi.BashToolType? Type1227 { get; set; }
///
///
///
- public global::Vapi.ComputerToolSubType? Type1228 { get; set; }
+ public global::Vapi.BashToolSubType? Type1228 { get; set; }
///
///
///
- public global::Vapi.ComputerToolName? Type1229 { get; set; }
+ public global::Vapi.BashToolName? Type1229 { get; set; }
///
///
///
- public global::Vapi.TextEditorTool? Type1230 { get; set; }
+ public global::Vapi.ComputerTool? Type1230 { get; set; }
///
///
///
- public global::Vapi.TextEditorToolType? Type1231 { get; set; }
+ public global::Vapi.ComputerToolType? Type1231 { get; set; }
///
///
///
- public global::Vapi.TextEditorToolSubType? Type1232 { get; set; }
+ public global::Vapi.ComputerToolSubType? Type1232 { get; set; }
///
///
///
- public global::Vapi.TextEditorToolName? Type1233 { get; set; }
+ public global::Vapi.ComputerToolName? Type1233 { get; set; }
///
///
///
- public global::Vapi.QueryTool? Type1234 { get; set; }
+ public global::Vapi.TextEditorTool? Type1234 { get; set; }
///
///
///
- public global::Vapi.QueryToolType? Type1235 { get; set; }
+ public global::Vapi.TextEditorToolType? Type1235 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarCreateEventTool? Type1236 { get; set; }
+ public global::Vapi.TextEditorToolSubType? Type1236 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarCreateEventToolType? Type1237 { get; set; }
+ public global::Vapi.TextEditorToolName? Type1237 { get; set; }
///
///
///
- public global::Vapi.GoogleSheetsRowAppendTool? Type1238 { get; set; }
+ public global::Vapi.QueryTool? Type1238 { get; set; }
///
///
///
- public global::Vapi.GoogleSheetsRowAppendToolType? Type1239 { get; set; }
+ public global::Vapi.QueryToolType? Type1239 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarCheckAvailabilityTool? Type1240 { get; set; }
+ public global::Vapi.GoogleCalendarCreateEventTool? Type1240 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarCheckAvailabilityToolType? Type1241 { get; set; }
+ public global::Vapi.GoogleCalendarCreateEventToolType? Type1241 { get; set; }
///
///
///
- public global::Vapi.SlackSendMessageTool? Type1242 { get; set; }
+ public global::Vapi.GoogleSheetsRowAppendTool? Type1242 { get; set; }
///
///
///
- public global::Vapi.SlackSendMessageToolType? Type1243 { get; set; }
+ public global::Vapi.GoogleSheetsRowAppendToolType? Type1243 { get; set; }
///
///
///
- public global::Vapi.SmsTool? Type1244 { get; set; }
+ public global::Vapi.GoogleCalendarCheckAvailabilityTool? Type1244 { get; set; }
///
///
///
- public global::Vapi.SmsToolType? Type1245 { get; set; }
+ public global::Vapi.GoogleCalendarCheckAvailabilityToolType? Type1245 { get; set; }
///
///
///
- public global::Vapi.McpTool? Type1246 { get; set; }
+ public global::Vapi.SlackSendMessageTool? Type1246 { get; set; }
///
///
///
- public global::Vapi.McpToolType? Type1247 { get; set; }
+ public global::Vapi.SlackSendMessageToolType? Type1247 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarAvailabilityTool? Type1248 { get; set; }
+ public global::Vapi.SmsTool? Type1248 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarAvailabilityToolType? Type1249 { get; set; }
+ public global::Vapi.SmsToolType? Type1249 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarEventCreateTool? Type1250 { get; set; }
+ public global::Vapi.McpTool? Type1250 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarEventCreateToolType? Type1251 { get; set; }
+ public global::Vapi.McpToolType? Type1251 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactCreateTool? Type1252 { get; set; }
+ public global::Vapi.GoHighLevelCalendarAvailabilityTool? Type1252 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactCreateToolType? Type1253 { get; set; }
+ public global::Vapi.GoHighLevelCalendarAvailabilityToolType? Type1253 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactGetTool? Type1254 { get; set; }
+ public global::Vapi.GoHighLevelCalendarEventCreateTool? Type1254 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactGetToolType? Type1255 { get; set; }
+ public global::Vapi.GoHighLevelCalendarEventCreateToolType? Type1255 { get; set; }
///
///
///
- public global::Vapi.SipRequestTool? Type1256 { get; set; }
+ public global::Vapi.GoHighLevelContactCreateTool? Type1256 { get; set; }
///
///
///
- public global::Vapi.SipRequestToolType? Type1257 { get; set; }
+ public global::Vapi.GoHighLevelContactCreateToolType? Type1257 { get; set; }
///
///
///
- public global::Vapi.SipRequestToolVerb? Type1258 { get; set; }
+ public global::Vapi.GoHighLevelContactGetTool? Type1258 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1259 { get; set; }
+ public global::Vapi.GoHighLevelContactGetToolType? Type1259 { get; set; }
///
///
///
- public global::Vapi.VoicemailTool? Type1260 { get; set; }
+ public global::Vapi.SipRequestTool? Type1260 { get; set; }
///
///
///
- public global::Vapi.VoicemailToolType? Type1261 { get; set; }
+ public global::Vapi.SipRequestToolType? Type1261 { get; set; }
///
///
///
- public global::Vapi.CreateApiRequestToolDTOType? Type1262 { get; set; }
+ public global::Vapi.SipRequestToolVerb? Type1262 { get; set; }
///
///
///
- public global::Vapi.CreateApiRequestToolDTOMethod? Type1263 { get; set; }
+ public global::Vapi.OneOf? Type1263 { get; set; }
///
///
///
- public global::Vapi.CreateCodeToolDTOType? Type1264 { get; set; }
+ public global::Vapi.VoicemailTool? Type1264 { get; set; }
///
///
///
- public global::Vapi.CreateOutputToolDTO? Type1265 { get; set; }
+ public global::Vapi.VoicemailToolType? Type1265 { get; set; }
///
///
///
- public global::Vapi.CreateOutputToolDTOType? Type1266 { get; set; }
+ public global::Vapi.CreateApiRequestToolDTOType? Type1266 { get; set; }
///
///
///
- public global::Vapi.CreateBashToolDTOType? Type1267 { get; set; }
+ public global::Vapi.CreateApiRequestToolDTOMethod? Type1267 { get; set; }
///
///
///
- public global::Vapi.CreateBashToolDTOSubType? Type1268 { get; set; }
+ public global::Vapi.CreateCodeToolDTOType? Type1268 { get; set; }
///
///
///
- public global::Vapi.CreateBashToolDTOName? Type1269 { get; set; }
+ public global::Vapi.CreateOutputToolDTO? Type1269 { get; set; }
///
///
///
- public global::Vapi.CreateComputerToolDTOType? Type1270 { get; set; }
+ public global::Vapi.CreateOutputToolDTOType? Type1270 { get; set; }
///
///
///
- public global::Vapi.CreateComputerToolDTOSubType? Type1271 { get; set; }
+ public global::Vapi.CreateBashToolDTOType? Type1271 { get; set; }
///
///
///
- public global::Vapi.CreateComputerToolDTOName? Type1272 { get; set; }
+ public global::Vapi.CreateBashToolDTOSubType? Type1272 { get; set; }
///
///
///
- public global::Vapi.CreateTextEditorToolDTOType? Type1273 { get; set; }
+ public global::Vapi.CreateBashToolDTOName? Type1273 { get; set; }
///
///
///
- public global::Vapi.CreateTextEditorToolDTOSubType? Type1274 { get; set; }
+ public global::Vapi.CreateComputerToolDTOType? Type1274 { get; set; }
///
///
///
- public global::Vapi.CreateTextEditorToolDTOName? Type1275 { get; set; }
+ public global::Vapi.CreateComputerToolDTOSubType? Type1275 { get; set; }
///
///
///
- public global::Vapi.CreateSmsToolDTOType? Type1276 { get; set; }
+ public global::Vapi.CreateComputerToolDTOName? Type1276 { get; set; }
///
///
///
- public global::Vapi.CreateSipRequestToolDTOType? Type1277 { get; set; }
+ public global::Vapi.CreateTextEditorToolDTOType? Type1277 { get; set; }
///
///
///
- public global::Vapi.CreateSipRequestToolDTOVerb? Type1278 { get; set; }
+ public global::Vapi.CreateTextEditorToolDTOSubType? Type1278 { get; set; }
///
///
///
- public global::Vapi.UpdateApiRequestToolDTO? Type1279 { get; set; }
+ public global::Vapi.CreateTextEditorToolDTOName? Type1279 { get; set; }
///
///
///
- public global::Vapi.UpdateApiRequestToolDTOType? Type1280 { get; set; }
+ public global::Vapi.CreateSmsToolDTOType? Type1280 { get; set; }
///
///
///
- public global::Vapi.UpdateApiRequestToolDTOMethod? Type1281 { get; set; }
+ public global::Vapi.CreateSipRequestToolDTOType? Type1281 { get; set; }
///
///
///
- public global::Vapi.UpdateCodeToolDTO? Type1282 { get; set; }
+ public global::Vapi.CreateSipRequestToolDTOVerb? Type1282 { get; set; }
///
///
///
- public global::Vapi.UpdateCodeToolDTOType? Type1283 { get; set; }
+ public global::Vapi.UpdateApiRequestToolDTO? Type1283 { get; set; }
///
///
///
- public global::Vapi.UpdateDtmfToolDTO? Type1284 { get; set; }
+ public global::Vapi.UpdateApiRequestToolDTOType? Type1284 { get; set; }
///
///
///
- public global::Vapi.UpdateDtmfToolDTOType? Type1285 { get; set; }
+ public global::Vapi.UpdateApiRequestToolDTOMethod? Type1285 { get; set; }
///
///
///
- public global::Vapi.UpdateEndCallToolDTO? Type1286 { get; set; }
+ public global::Vapi.UpdateCodeToolDTO? Type1286 { get; set; }
///
///
///
- public global::Vapi.UpdateEndCallToolDTOType? Type1287 { get; set; }
+ public global::Vapi.UpdateCodeToolDTOType? Type1287 { get; set; }
///
///
///
- public global::Vapi.UpdateFunctionToolDTO? Type1288 { get; set; }
+ public global::Vapi.UpdateDtmfToolDTO? Type1288 { get; set; }
///
///
///
- public global::Vapi.UpdateFunctionToolDTOType? Type1289 { get; set; }
+ public global::Vapi.UpdateDtmfToolDTOType? Type1289 { get; set; }
///
///
///
- public global::Vapi.UpdateGhlToolDTO? Type1290 { get; set; }
+ public global::Vapi.UpdateEndCallToolDTO? Type1290 { get; set; }
///
///
///
- public global::Vapi.UpdateGhlToolDTOType? Type1291 { get; set; }
+ public global::Vapi.UpdateEndCallToolDTOType? Type1291 { get; set; }
///
///
///
- public global::Vapi.UpdateMakeToolDTO? Type1292 { get; set; }
+ public global::Vapi.UpdateFunctionToolDTO? Type1292 { get; set; }
///
///
///
- public global::Vapi.UpdateMakeToolDTOType? Type1293 { get; set; }
+ public global::Vapi.UpdateFunctionToolDTOType? Type1293 { get; set; }
///
///
///
- public global::Vapi.UpdateHandoffToolDTO? Type1294 { get; set; }
+ public global::Vapi.UpdateGhlToolDTO? Type1294 { get; set; }
///
///
///
- public global::Vapi.UpdateHandoffToolDTOType? Type1295 { get; set; }
+ public global::Vapi.UpdateGhlToolDTOType? Type1295 { get; set; }
///
///
///
- public global::Vapi.UpdateTransferCallToolDTO? Type1296 { get; set; }
+ public global::Vapi.UpdateMakeToolDTO? Type1296 { get; set; }
///
///
///
- public global::Vapi.UpdateTransferCallToolDTOType? Type1297 { get; set; }
+ public global::Vapi.UpdateMakeToolDTOType? Type1297 { get; set; }
///
///
///
- public global::Vapi.UpdateOutputToolDTO? Type1298 { get; set; }
+ public global::Vapi.UpdateHandoffToolDTO? Type1298 { get; set; }
///
///
///
- public global::Vapi.UpdateOutputToolDTOType? Type1299 { get; set; }
+ public global::Vapi.UpdateHandoffToolDTOType? Type1299 { get; set; }
///
///
///
- public global::Vapi.UpdateBashToolDTO? Type1300 { get; set; }
+ public global::Vapi.UpdateTransferCallToolDTO? Type1300 { get; set; }
///
///
///
- public global::Vapi.UpdateBashToolDTOType? Type1301 { get; set; }
+ public global::Vapi.UpdateTransferCallToolDTOType? Type1301 { get; set; }
///
///
///
- public global::Vapi.UpdateBashToolDTOSubType? Type1302 { get; set; }
+ public global::Vapi.UpdateOutputToolDTO? Type1302 { get; set; }
///
///
///
- public global::Vapi.UpdateBashToolDTOName? Type1303 { get; set; }
+ public global::Vapi.UpdateOutputToolDTOType? Type1303 { get; set; }
///
///
///
- public global::Vapi.UpdateComputerToolDTO? Type1304 { get; set; }
+ public global::Vapi.UpdateBashToolDTO? Type1304 { get; set; }
///
///
///
- public global::Vapi.UpdateComputerToolDTOType? Type1305 { get; set; }
+ public global::Vapi.UpdateBashToolDTOType? Type1305 { get; set; }
///
///
///
- public global::Vapi.UpdateComputerToolDTOSubType? Type1306 { get; set; }
+ public global::Vapi.UpdateBashToolDTOSubType? Type1306 { get; set; }
///
///
///
- public global::Vapi.UpdateComputerToolDTOName? Type1307 { get; set; }
+ public global::Vapi.UpdateBashToolDTOName? Type1307 { get; set; }
///
///
///
- public global::Vapi.UpdateTextEditorToolDTO? Type1308 { get; set; }
+ public global::Vapi.UpdateComputerToolDTO? Type1308 { get; set; }
///
///
///
- public global::Vapi.UpdateTextEditorToolDTOType? Type1309 { get; set; }
+ public global::Vapi.UpdateComputerToolDTOType? Type1309 { get; set; }
///
///
///
- public global::Vapi.UpdateTextEditorToolDTOSubType? Type1310 { get; set; }
+ public global::Vapi.UpdateComputerToolDTOSubType? Type1310 { get; set; }
///
///
///
- public global::Vapi.UpdateTextEditorToolDTOName? Type1311 { get; set; }
+ public global::Vapi.UpdateComputerToolDTOName? Type1311 { get; set; }
///
///
///
- public global::Vapi.UpdateQueryToolDTO? Type1312 { get; set; }
+ public global::Vapi.UpdateTextEditorToolDTO? Type1312 { get; set; }
///
///
///
- public global::Vapi.UpdateQueryToolDTOType? Type1313 { get; set; }
+ public global::Vapi.UpdateTextEditorToolDTOType? Type1313 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCalendarCreateEventToolDTO? Type1314 { get; set; }
+ public global::Vapi.UpdateTextEditorToolDTOSubType? Type1314 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCalendarCreateEventToolDTOType? Type1315 { get; set; }
+ public global::Vapi.UpdateTextEditorToolDTOName? Type1315 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleSheetsRowAppendToolDTO? Type1316 { get; set; }
+ public global::Vapi.UpdateQueryToolDTO? Type1316 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleSheetsRowAppendToolDTOType? Type1317 { get; set; }
+ public global::Vapi.UpdateQueryToolDTOType? Type1317 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCalendarCheckAvailabilityToolDTO? Type1318 { get; set; }
+ public global::Vapi.UpdateGoogleCalendarCreateEventToolDTO? Type1318 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCalendarCheckAvailabilityToolDTOType? Type1319 { get; set; }
+ public global::Vapi.UpdateGoogleCalendarCreateEventToolDTOType? Type1319 { get; set; }
///
///
///
- public global::Vapi.UpdateSlackSendMessageToolDTO? Type1320 { get; set; }
+ public global::Vapi.UpdateGoogleSheetsRowAppendToolDTO? Type1320 { get; set; }
///
///
///
- public global::Vapi.UpdateSlackSendMessageToolDTOType? Type1321 { get; set; }
+ public global::Vapi.UpdateGoogleSheetsRowAppendToolDTOType? Type1321 { get; set; }
///
///
///
- public global::Vapi.UpdateSmsToolDTO? Type1322 { get; set; }
+ public global::Vapi.UpdateGoogleCalendarCheckAvailabilityToolDTO? Type1322 { get; set; }
///
///
///
- public global::Vapi.UpdateSmsToolDTOType? Type1323 { get; set; }
+ public global::Vapi.UpdateGoogleCalendarCheckAvailabilityToolDTOType? Type1323 { get; set; }
///
///
///
- public global::Vapi.UpdateMcpToolDTO? Type1324 { get; set; }
+ public global::Vapi.UpdateSlackSendMessageToolDTO? Type1324 { get; set; }
///
///
///
- public global::Vapi.UpdateMcpToolDTOType? Type1325 { get; set; }
+ public global::Vapi.UpdateSlackSendMessageToolDTOType? Type1325 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelCalendarAvailabilityToolDTO? Type1326 { get; set; }
+ public global::Vapi.UpdateSmsToolDTO? Type1326 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelCalendarAvailabilityToolDTOType? Type1327 { get; set; }
+ public global::Vapi.UpdateSmsToolDTOType? Type1327 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelCalendarEventCreateToolDTO? Type1328 { get; set; }
+ public global::Vapi.UpdateMcpToolDTO? Type1328 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelCalendarEventCreateToolDTOType? Type1329 { get; set; }
+ public global::Vapi.UpdateMcpToolDTOType? Type1329 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelContactCreateToolDTO? Type1330 { get; set; }
+ public global::Vapi.UpdateGoHighLevelCalendarAvailabilityToolDTO? Type1330 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelContactCreateToolDTOType? Type1331 { get; set; }
+ public global::Vapi.UpdateGoHighLevelCalendarAvailabilityToolDTOType? Type1331 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelContactGetToolDTO? Type1332 { get; set; }
+ public global::Vapi.UpdateGoHighLevelCalendarEventCreateToolDTO? Type1332 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelContactGetToolDTOType? Type1333 { get; set; }
+ public global::Vapi.UpdateGoHighLevelCalendarEventCreateToolDTOType? Type1333 { get; set; }
///
///
///
- public global::Vapi.UpdateSipRequestToolDTO? Type1334 { get; set; }
+ public global::Vapi.UpdateGoHighLevelContactCreateToolDTO? Type1334 { get; set; }
///
///
///
- public global::Vapi.UpdateSipRequestToolDTOType? Type1335 { get; set; }
+ public global::Vapi.UpdateGoHighLevelContactCreateToolDTOType? Type1335 { get; set; }
///
///
///
- public global::Vapi.UpdateSipRequestToolDTOVerb? Type1336 { get; set; }
+ public global::Vapi.UpdateGoHighLevelContactGetToolDTO? Type1336 { get; set; }
///
///
///
- public global::Vapi.UpdateVoicemailToolDTO? Type1337 { get; set; }
+ public global::Vapi.UpdateGoHighLevelContactGetToolDTOType? Type1337 { get; set; }
///
///
///
- public global::Vapi.UpdateVoicemailToolDTOType? Type1338 { get; set; }
+ public global::Vapi.UpdateSipRequestToolDTO? Type1338 { get; set; }
///
///
///
- public global::Vapi.CreateFileDTO? Type1339 { get; set; }
+ public global::Vapi.UpdateSipRequestToolDTOType? Type1339 { get; set; }
///
///
///
- public global::Vapi.File? Type1340 { get; set; }
+ public global::Vapi.UpdateSipRequestToolDTOVerb? Type1340 { get; set; }
///
///
///
- public global::Vapi.FileObject? Type1341 { get; set; }
+ public global::Vapi.UpdateVoicemailToolDTO? Type1341 { get; set; }
///
///
///
- public global::Vapi.FileStatus? Type1342 { get; set; }
+ public global::Vapi.UpdateVoicemailToolDTOType? Type1342 { get; set; }
///
///
///
- public global::Vapi.UpdateFileDTO? Type1343 { get; set; }
+ public global::Vapi.CreateFileDTO? Type1343 { get; set; }
///
///
///
- public global::Vapi.CustomKnowledgeBase? Type1344 { get; set; }
+ public global::Vapi.File? Type1344 { get; set; }
///
///
///
- public global::Vapi.CustomKnowledgeBaseProvider? Type1345 { get; set; }
+ public global::Vapi.FileObject? Type1345 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomKnowledgeBaseDTO? Type1346 { get; set; }
+ public global::Vapi.FileStatus? Type1346 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomKnowledgeBaseDTOProvider? Type1347 { get; set; }
+ public global::Vapi.UpdateFileDTO? Type1347 { get; set; }
///
///
///
- public global::Vapi.StructuredOutput? Type1348 { get; set; }
+ public global::Vapi.CustomKnowledgeBase? Type1348 { get; set; }
///
///
///
- public global::Vapi.StructuredOutputType? Type1349 { get; set; }
+ public global::Vapi.CustomKnowledgeBaseProvider? Type1349 { get; set; }
///
///
///
- public global::Vapi.StructuredOutputPaginatedResponse? Type1350 { get; set; }
+ public global::Vapi.UpdateCustomKnowledgeBaseDTO? Type1350 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1351 { get; set; }
+ public global::Vapi.UpdateCustomKnowledgeBaseDTOProvider? Type1351 { get; set; }
///
///
///
- public global::Vapi.UpdateStructuredOutputDTO? Type1352 { get; set; }
+ public global::Vapi.StructuredOutput? Type1352 { get; set; }
///
///
///
- public global::Vapi.UpdateStructuredOutputDTOType? Type1353 { get; set; }
+ public global::Vapi.StructuredOutputType? Type1353 { get; set; }
///
///
///
- public global::Vapi.StructuredOutputRunDTO? Type1354 { get; set; }
+ public global::Vapi.StructuredOutputPaginatedResponse? Type1354 { get; set; }
///
///
///
- public global::Vapi.TesterPlan? Type1355 { get; set; }
+ public global::System.Collections.Generic.IList? Type1355 { get; set; }
///
///
///
- public global::Vapi.TestSuitePhoneNumber? Type1356 { get; set; }
+ public global::Vapi.UpdateStructuredOutputDTO? Type1356 { get; set; }
///
///
///
- public global::Vapi.TestSuitePhoneNumberProvider? Type1357 { get; set; }
+ public global::Vapi.UpdateStructuredOutputDTOType? Type1357 { get; set; }
///
///
///
- public global::Vapi.TargetPlan? Type1358 { get; set; }
+ public global::Vapi.StructuredOutputRunDTO? Type1358 { get; set; }
///
///
///
- public global::Vapi.TestSuite? Type1359 { get; set; }
+ public global::Vapi.TesterPlan? Type1359 { get; set; }
///
///
///
- public global::Vapi.TestSuitesPaginatedResponse? Type1360 { get; set; }
+ public global::Vapi.TestSuitePhoneNumber? Type1360 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1361 { get; set; }
+ public global::Vapi.TestSuitePhoneNumberProvider? Type1361 { get; set; }
///
///
///
- public global::Vapi.CreateTestSuiteDto? Type1362 { get; set; }
+ public global::Vapi.TargetPlan? Type1362 { get; set; }
///
///
///
- public global::Vapi.UpdateTestSuiteDto? Type1363 { get; set; }
+ public global::Vapi.TestSuite? Type1363 { get; set; }
///
///
///
- public global::Vapi.TestSuiteTestVoice? Type1364 { get; set; }
+ public global::Vapi.TestSuitesPaginatedResponse? Type1364 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1365 { get; set; }
+ public global::System.Collections.Generic.IList? Type1365 { get; set; }
///
///
///
- public global::Vapi.TestSuiteTestScorerAI? Type1366 { get; set; }
+ public global::Vapi.CreateTestSuiteDto? Type1366 { get; set; }
///
///
///
- public global::Vapi.TestSuiteTestVoiceType? Type1367 { get; set; }
+ public global::Vapi.UpdateTestSuiteDto? Type1367 { get; set; }
///
///
///
- public global::Vapi.TestSuiteTestChat? Type1368 { get; set; }
+ public global::Vapi.TestSuiteTestVoice? Type1368 { get; set; }
///
///
///
- public global::Vapi.TestSuiteTestChatType? Type1369 { get; set; }
+ public global::System.Collections.Generic.IList? Type1369 { get; set; }
///
///
///
- public global::Vapi.CreateTestSuiteTestVoiceDto? Type1370 { get; set; }
+ public global::Vapi.TestSuiteTestScorerAI? Type1370 { get; set; }
///
///
///
- public global::Vapi.CreateTestSuiteTestVoiceDtoType? Type1371 { get; set; }
+ public global::Vapi.TestSuiteTestVoiceType? Type1371 { get; set; }
///
///
///
- public global::Vapi.CreateTestSuiteTestChatDto? Type1372 { get; set; }
+ public global::Vapi.TestSuiteTestChat? Type1372 { get; set; }
///
///
///
- public global::Vapi.CreateTestSuiteTestChatDtoType? Type1373 { get; set; }
+ public global::Vapi.TestSuiteTestChatType? Type1373 { get; set; }
///
///
///
- public global::Vapi.UpdateTestSuiteTestVoiceDto? Type1374 { get; set; }
+ public global::Vapi.CreateTestSuiteTestVoiceDto? Type1374 { get; set; }
///
///
///
- public global::Vapi.UpdateTestSuiteTestVoiceDtoType? Type1375 { get; set; }
+ public global::Vapi.CreateTestSuiteTestVoiceDtoType? Type1375 { get; set; }
///
///
///
- public global::Vapi.UpdateTestSuiteTestChatDto? Type1376 { get; set; }
+ public global::Vapi.CreateTestSuiteTestChatDto? Type1376 { get; set; }
///
///
///
- public global::Vapi.UpdateTestSuiteTestChatDtoType? Type1377 { get; set; }
+ public global::Vapi.CreateTestSuiteTestChatDtoType? Type1377 { get; set; }
///
///
///
- public global::Vapi.TestSuiteTestScorerAIType? Type1378 { get; set; }
+ public global::Vapi.UpdateTestSuiteTestVoiceDto? Type1378 { get; set; }
///
///
///
- public global::Vapi.TestSuiteTestsPaginatedResponse? Type1379 { get; set; }
+ public global::Vapi.UpdateTestSuiteTestVoiceDtoType? Type1379 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1380 { get; set; }
+ public global::Vapi.UpdateTestSuiteTestChatDto? Type1380 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1381 { get; set; }
+ public global::Vapi.UpdateTestSuiteTestChatDtoType? Type1381 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunScorerAI? Type1382 { get; set; }
+ public global::Vapi.TestSuiteTestScorerAIType? Type1382 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunScorerAIType? Type1383 { get; set; }
+ public global::Vapi.TestSuiteTestsPaginatedResponse? Type1383 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunScorerAIResult? Type1384 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1384 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunTestAttemptCall? Type1385 { get; set; }
+ public global::Vapi.OneOf? Type1385 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunTestAttemptMetadata? Type1386 { get; set; }
+ public global::Vapi.TestSuiteRunScorerAI? Type1386 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunTestAttempt? Type1387 { get; set; }
+ public global::Vapi.TestSuiteRunScorerAIType? Type1387 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1388 { get; set; }
+ public global::Vapi.TestSuiteRunScorerAIResult? Type1388 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunTestResult? Type1389 { get; set; }
+ public global::Vapi.TestSuiteRunTestAttemptCall? Type1389 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1390 { get; set; }
+ public global::Vapi.TestSuiteRunTestAttemptMetadata? Type1390 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRun? Type1391 { get; set; }
+ public global::Vapi.TestSuiteRunTestAttempt? Type1391 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunStatus? Type1392 { get; set; }
+ public global::System.Collections.Generic.IList? Type1392 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1393 { get; set; }
+ public global::Vapi.TestSuiteRunTestResult? Type1393 { get; set; }
///
///
///
- public global::Vapi.TestSuiteRunsPaginatedResponse? Type1394 { get; set; }
+ public global::System.Collections.Generic.IList? Type1394 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1395 { get; set; }
+ public global::Vapi.TestSuiteRun? Type1395 { get; set; }
///
///
///
- public global::Vapi.CreateTestSuiteRunDto? Type1396 { get; set; }
+ public global::Vapi.TestSuiteRunStatus? Type1396 { get; set; }
///
///
///
- public global::Vapi.UpdateTestSuiteRunDto? Type1397 { get; set; }
+ public global::System.Collections.Generic.IList? Type1397 { get; set; }
///
///
///
- public global::Vapi.CreatePersonalityDTO? Type1398 { get; set; }
+ public global::Vapi.TestSuiteRunsPaginatedResponse? Type1398 { get; set; }
///
///
///
- public global::Vapi.Personality? Type1399 { get; set; }
+ public global::System.Collections.Generic.IList? Type1399 { get; set; }
///
///
///
- public global::System.Guid? Type1400 { get; set; }
+ public global::Vapi.CreateTestSuiteRunDto? Type1400 { get; set; }
///
///
///
- public global::Vapi.UpdatePersonalityDTO? Type1401 { get; set; }
+ public global::Vapi.UpdateTestSuiteRunDto? Type1401 { get; set; }
///
///
///
- public global::Vapi.SimulationHookInclude? Type1402 { get; set; }
+ public global::Vapi.CreatePersonalityDTO? Type1402 { get; set; }
///
///
///
- public global::Vapi.SimulationHookWebhookAction? Type1403 { get; set; }
+ public global::Vapi.Personality? Type1403 { get; set; }
///
///
///
- public global::Vapi.SimulationHookWebhookActionType? Type1404 { get; set; }
+ public global::System.Guid? Type1404 { get; set; }
///
///
///
- public global::Vapi.SimulationHookCallStarted? Type1405 { get; set; }
+ public global::Vapi.UpdatePersonalityDTO? Type1405 { get; set; }
///
///
///
- public global::Vapi.SimulationHookCallStartedOn? Type1406 { get; set; }
+ public global::Vapi.SimulationHookInclude? Type1406 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1407 { get; set; }
+ public global::Vapi.SimulationHookWebhookAction? Type1407 { get; set; }
///
///
///
- public global::Vapi.SimulationHookCallEnded? Type1408 { get; set; }
+ public global::Vapi.SimulationHookWebhookActionType? Type1408 { get; set; }
///
///
///
- public global::Vapi.SimulationHookCallEndedOn? Type1409 { get; set; }
+ public global::Vapi.SimulationHookCallStarted? Type1409 { get; set; }
///
///
///
- public global::Vapi.EvaluationPlanItem? Type1410 { get; set; }
+ public global::Vapi.SimulationHookCallStartedOn? Type1410 { get; set; }
///
///
///
- public global::Vapi.EvaluationPlanItemComparator? Type1411 { get; set; }
+ public global::System.Collections.Generic.IList? Type1411 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1412 { get; set; }
+ public global::Vapi.SimulationHookCallEnded? Type1412 { get; set; }
///
///
///
- public global::Vapi.ScenarioToolMock? Type1413 { get; set; }
+ public global::Vapi.SimulationHookCallEndedOn? Type1413 { get; set; }
///
///
///
- public global::Vapi.CreateScenarioDTO? Type1414 { get; set; }
+ public global::Vapi.EvaluationPlanItem? Type1414 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1415 { get; set; }
+ public global::Vapi.EvaluationPlanItemComparator? Type1415 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1416 { get; set; }
+ public global::Vapi.OneOf? Type1416 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1417 { get; set; }
+ public global::Vapi.ScenarioToolMock? Type1417 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1418 { get; set; }
+ public global::Vapi.CreateScenarioDTO? Type1418 { get; set; }
///
///
///
- public global::Vapi.Scenario? Type1419 { get; set; }
+ public global::System.Collections.Generic.IList? Type1419 { get; set; }
///
///
///
- public global::Vapi.UpdateScenarioDTO? Type1420 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1420 { get; set; }
///
///
///
- public global::Vapi.SimulationRunSimulationEntry? Type1421 { get; set; }
+ public global::Vapi.OneOf? Type1421 { get; set; }
///
///
///
- public global::Vapi.SimulationRunSimulationEntryType? Type1422 { get; set; }
+ public global::System.Collections.Generic.IList? Type1422 { get; set; }
///
///
///
- public global::Vapi.SimulationRunSuiteEntry? Type1423 { get; set; }
+ public global::Vapi.Scenario? Type1423 { get; set; }
///
///
///
- public global::Vapi.SimulationRunSuiteEntryType? Type1424 { get; set; }
+ public global::Vapi.UpdateScenarioDTO? Type1424 { get; set; }
///
///
///
- public global::Vapi.SimulationRunTargetAssistant? Type1425 { get; set; }
+ public global::Vapi.SimulationRunSimulationEntry? Type1425 { get; set; }
///
///
///
- public global::Vapi.SimulationRunTargetAssistantType? Type1426 { get; set; }
+ public global::Vapi.SimulationRunSimulationEntryType? Type1426 { get; set; }
///
///
///
- public global::Vapi.SimulationRunTargetSquad? Type1427 { get; set; }
+ public global::Vapi.SimulationRunSuiteEntry? Type1427 { get; set; }
///
///
///
- public global::Vapi.SimulationRunTargetSquadType? Type1428 { get; set; }
+ public global::Vapi.SimulationRunSuiteEntryType? Type1428 { get; set; }
///
///
///
- public global::Vapi.SimulationRunTransportConfiguration? Type1429 { get; set; }
+ public global::Vapi.SimulationRunTargetAssistant? Type1429 { get; set; }
///
///
///
- public global::Vapi.SimulationRunTransportConfigurationProvider? Type1430 { get; set; }
+ public global::Vapi.SimulationRunTargetAssistantType? Type1430 { get; set; }
///
///
///
- public global::Vapi.CreateSimulationRunDTO? Type1431 { get; set; }
+ public global::Vapi.SimulationRunTargetSquad? Type1431 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1432 { get; set; }
+ public global::Vapi.SimulationRunTargetSquadType? Type1432 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1433 { get; set; }
+ public global::Vapi.SimulationRunTransportConfiguration? Type1433 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1434 { get; set; }
+ public global::Vapi.SimulationRunTransportConfigurationProvider? Type1434 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItemCounts? Type1435 { get; set; }
+ public global::Vapi.CreateSimulationRunDTO? Type1435 { get; set; }
///
///
///
- public global::Vapi.SimulationRun? Type1436 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1436 { get; set; }
///
///
///
- public global::Vapi.SimulationRunStatus? Type1437 { get; set; }
+ public global::Vapi.OneOf? Type1437 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItemCallMonitor? Type1438 { get; set; }
+ public global::Vapi.OneOf? Type1438 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItemCallMetadata? Type1439 { get; set; }
+ public global::Vapi.SimulationRunItemCounts? Type1439 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItemMetadata? Type1440 { get; set; }
+ public global::Vapi.SimulationRun? Type1440 { get; set; }
///
///
///
- public global::Vapi.StructuredOutputEvaluationResult? Type1441 { get; set; }
+ public global::Vapi.SimulationRunStatus? Type1441 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1442 { get; set; }
+ public global::Vapi.SimulationRunItemCallMonitor? Type1442 { get; set; }
///
///
///
- public global::Vapi.StructuredOutputEvaluationResultComparator? Type1443 { get; set; }
+ public global::Vapi.SimulationRunItemCallMetadata? Type1443 { get; set; }
///
///
///
- public global::Vapi.LatencyMetrics? Type1444 { get; set; }
+ public global::Vapi.SimulationRunItemMetadata? Type1444 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItemResults? Type1445 { get; set; }
+ public global::Vapi.StructuredOutputEvaluationResult? Type1445 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1446 { get; set; }
+ public global::Vapi.OneOf? Type1446 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItemImprovementSuggestion? Type1447 { get; set; }
+ public global::Vapi.StructuredOutputEvaluationResultComparator? Type1447 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItemImprovements? Type1448 { get; set; }
+ public global::Vapi.LatencyMetrics? Type1448 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1449 { get; set; }
+ public global::Vapi.SimulationRunItemResults? Type1449 { get; set; }
///
///
///
- public global::Vapi.SimulationRunConfiguration? Type1450 { get; set; }
+ public global::System.Collections.Generic.IList? Type1450 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItem? Type1451 { get; set; }
+ public global::Vapi.SimulationRunItemImprovementSuggestion? Type1451 { get; set; }
///
///
///
- public global::Vapi.SimulationRunItemStatus? Type1452 { get; set; }
+ public global::Vapi.SimulationRunItemImprovements? Type1452 { get; set; }
///
///
///
- public global::Vapi.CreateSimulationSuiteDTO? Type1453 { get; set; }
+ public global::System.Collections.Generic.IList? Type1453 { get; set; }
///
///
///
- public global::Vapi.SimulationSuite? Type1454 { get; set; }
+ public global::Vapi.SimulationRunConfiguration? Type1454 { get; set; }
///
///
///
- public global::Vapi.UpdateSimulationSuiteDTO? Type1455 { get; set; }
+ public global::Vapi.SimulationRunItem? Type1455 { get; set; }
///
///
///
- public global::Vapi.GenerateScenariosDTO? Type1456 { get; set; }
+ public global::Vapi.SimulationRunItemStatus? Type1456 { get; set; }
///
///
///
- public global::Vapi.GeneratedScenario? Type1457 { get; set; }
+ public global::Vapi.CreateSimulationSuiteDTO? Type1457 { get; set; }
///
///
///
- public global::Vapi.GeneratedScenarioCategory? Type1458 { get; set; }
+ public global::Vapi.SimulationSuite? Type1458 { get; set; }
///
///
///
- public global::Vapi.GenerateScenariosResponse? Type1459 { get; set; }
+ public global::Vapi.UpdateSimulationSuiteDTO? Type1459 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1460 { get; set; }
+ public global::Vapi.GenerateScenariosDTO? Type1460 { get; set; }
///
///
///
- public global::Vapi.CreateSimulationDTO? Type1461 { get; set; }
+ public global::Vapi.GeneratedScenario? Type1461 { get; set; }
///
///
///
- public global::Vapi.Simulation? Type1462 { get; set; }
+ public global::Vapi.GeneratedScenarioCategory? Type1462 { get; set; }
///
///
///
- public global::Vapi.UpdateSimulationDTO? Type1463 { get; set; }
+ public global::Vapi.GenerateScenariosResponse? Type1463 { get; set; }
///
///
///
- public global::Vapi.SimulationConcurrencyResponse? Type1464 { get; set; }
+ public global::System.Collections.Generic.IList? Type1464 { get; set; }
///
///
///
- public global::Vapi.BarInsightMetadata? Type1465 { get; set; }
+ public global::Vapi.CreateSimulationDTO? Type1465 { get; set; }
///
///
///
- public global::Vapi.InsightTimeRangeWithStep? Type1466 { get; set; }
+ public global::Vapi.Simulation? Type1466 { get; set; }
///
///
///
- public global::Vapi.InsightTimeRangeWithStepStep? Type1467 { get; set; }
+ public global::Vapi.UpdateSimulationDTO? Type1467 { get; set; }
///
///
///
- public global::Vapi.BarInsight? Type1468 { get; set; }
+ public global::Vapi.SimulationConcurrencyResponse? Type1468 { get; set; }
///
///
///
- public global::Vapi.BarInsightType? Type1469 { get; set; }
+ public global::Vapi.BarInsightMetadata? Type1469 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1470 { get; set; }
+ public global::Vapi.InsightTimeRangeWithStep? Type1470 { get; set; }
///
///
///
- public global::Vapi.InsightFormula? Type1471 { get; set; }
+ public global::Vapi.InsightTimeRangeWithStepStep? Type1471 { get; set; }
///
///
///
- public global::Vapi.BarInsightGroupBy? Type1472 { get; set; }
+ public global::Vapi.BarInsight? Type1472 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStringTypeColumn? Type1473 { get; set; }
+ public global::Vapi.BarInsightType? Type1473 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumn? Type1474 { get; set; }
+ public global::System.Collections.Generic.IList? Type1474 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumn? Type1475 { get; set; }
+ public global::Vapi.InsightFormula? Type1475 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnEventsTable? Type1476 { get; set; }
+ public global::Vapi.BarInsightGroupBy? Type1476 { get; set; }
///
///
///
- public global::Vapi.InsightTimeRange? Type1477 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStringTypeColumn? Type1477 { get; set; }
///
///
///
- public global::Vapi.PieInsight? Type1478 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumn? Type1478 { get; set; }
///
///
///
- public global::Vapi.PieInsightType? Type1479 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumn? Type1479 { get; set; }
///
///
///
- public global::Vapi.PieInsightGroupBy? Type1480 { get; set; }
+ public global::Vapi.JSONQueryOnEventsTable? Type1480 { get; set; }
///
///
///
- public global::Vapi.LineInsightMetadata? Type1481 { get; set; }
+ public global::Vapi.InsightTimeRange? Type1481 { get; set; }
///
///
///
- public global::Vapi.LineInsight? Type1482 { get; set; }
+ public global::Vapi.PieInsight? Type1482 { get; set; }
///
///
///
- public global::Vapi.LineInsightType? Type1483 { get; set; }
+ public global::Vapi.PieInsightType? Type1483 { get; set; }
///
///
///
- public global::Vapi.LineInsightGroupBy? Type1484 { get; set; }
+ public global::Vapi.PieInsightGroupBy? Type1484 { get; set; }
///
///
///
- public global::Vapi.TextInsight? Type1485 { get; set; }
+ public global::Vapi.LineInsightMetadata? Type1485 { get; set; }
///
///
///
- public global::Vapi.TextInsightType? Type1486 { get; set; }
+ public global::Vapi.LineInsight? Type1486 { get; set; }
///
///
///
- public global::Vapi.UpdateBarInsightFromCallTableDTO? Type1487 { get; set; }
+ public global::Vapi.LineInsightType? Type1487 { get; set; }
///
///
///
- public global::Vapi.UpdateBarInsightFromCallTableDTOType? Type1488 { get; set; }
+ public global::Vapi.LineInsightGroupBy? Type1488 { get; set; }
///
///
///
- public global::Vapi.UpdateBarInsightFromCallTableDTOGroupBy? Type1489 { get; set; }
+ public global::Vapi.TextInsight? Type1489 { get; set; }
///
///
///
- public global::Vapi.UpdatePieInsightFromCallTableDTO? Type1490 { get; set; }
+ public global::Vapi.TextInsightType? Type1490 { get; set; }
///
///
///
- public global::Vapi.UpdatePieInsightFromCallTableDTOType? Type1491 { get; set; }
+ public global::Vapi.UpdateBarInsightFromCallTableDTO? Type1491 { get; set; }
///
///
///
- public global::Vapi.UpdatePieInsightFromCallTableDTOGroupBy? Type1492 { get; set; }
+ public global::Vapi.UpdateBarInsightFromCallTableDTOType? Type1492 { get; set; }
///
///
///
- public global::Vapi.UpdateLineInsightFromCallTableDTO? Type1493 { get; set; }
+ public global::Vapi.UpdateBarInsightFromCallTableDTOGroupBy? Type1493 { get; set; }
///
///
///
- public global::Vapi.UpdateLineInsightFromCallTableDTOType? Type1494 { get; set; }
+ public global::Vapi.UpdatePieInsightFromCallTableDTO? Type1494 { get; set; }
///
///
///
- public global::Vapi.UpdateLineInsightFromCallTableDTOGroupBy? Type1495 { get; set; }
+ public global::Vapi.UpdatePieInsightFromCallTableDTOType? Type1495 { get; set; }
///
///
///
- public global::Vapi.UpdateTextInsightFromCallTableDTO? Type1496 { get; set; }
+ public global::Vapi.UpdatePieInsightFromCallTableDTOGroupBy? Type1496 { get; set; }
///
///
///
- public global::Vapi.UpdateTextInsightFromCallTableDTOType? Type1497 { get; set; }
+ public global::Vapi.UpdateLineInsightFromCallTableDTO? Type1497 { get; set; }
///
///
///
- public global::Vapi.CreateBarInsightFromCallTableDTO? Type1498 { get; set; }
+ public global::Vapi.UpdateLineInsightFromCallTableDTOType? Type1498 { get; set; }
///
///
///
- public global::Vapi.CreateBarInsightFromCallTableDTOType? Type1499 { get; set; }
+ public global::Vapi.UpdateLineInsightFromCallTableDTOGroupBy? Type1499 { get; set; }
///
///
///
- public global::Vapi.CreateBarInsightFromCallTableDTOGroupBy? Type1500 { get; set; }
+ public global::Vapi.UpdateTextInsightFromCallTableDTO? Type1500 { get; set; }
///
///
///
- public global::Vapi.CreatePieInsightFromCallTableDTO? Type1501 { get; set; }
+ public global::Vapi.UpdateTextInsightFromCallTableDTOType? Type1501 { get; set; }
///
///
///
- public global::Vapi.CreatePieInsightFromCallTableDTOType? Type1502 { get; set; }
+ public global::Vapi.CreateBarInsightFromCallTableDTO? Type1502 { get; set; }
///
///
///
- public global::Vapi.CreatePieInsightFromCallTableDTOGroupBy? Type1503 { get; set; }
+ public global::Vapi.CreateBarInsightFromCallTableDTOType? Type1503 { get; set; }
///
///
///
- public global::Vapi.CreateLineInsightFromCallTableDTO? Type1504 { get; set; }
+ public global::Vapi.CreateBarInsightFromCallTableDTOGroupBy? Type1504 { get; set; }
///
///
///
- public global::Vapi.CreateLineInsightFromCallTableDTOType? Type1505 { get; set; }
+ public global::Vapi.CreatePieInsightFromCallTableDTO? Type1505 { get; set; }
///
///
///
- public global::Vapi.CreateLineInsightFromCallTableDTOGroupBy? Type1506 { get; set; }
+ public global::Vapi.CreatePieInsightFromCallTableDTOType? Type1506 { get; set; }
///
///
///
- public global::Vapi.CreateTextInsightFromCallTableDTO? Type1507 { get; set; }
+ public global::Vapi.CreatePieInsightFromCallTableDTOGroupBy? Type1507 { get; set; }
///
///
///
- public global::Vapi.CreateTextInsightFromCallTableDTOType? Type1508 { get; set; }
+ public global::Vapi.CreateLineInsightFromCallTableDTO? Type1508 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnType? Type1509 { get; set; }
+ public global::Vapi.CreateLineInsightFromCallTableDTOType? Type1509 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnTable? Type1510 { get; set; }
+ public global::Vapi.CreateLineInsightFromCallTableDTOGroupBy? Type1510 { get; set; }
///
///
///
- public global::Vapi.FilterStringTypeColumnOnCallTable? Type1511 { get; set; }
+ public global::Vapi.CreateTextInsightFromCallTableDTO? Type1511 { get; set; }
///
///
///
- public global::Vapi.FilterStringArrayTypeColumnOnCallTable? Type1512 { get; set; }
+ public global::Vapi.CreateTextInsightFromCallTableDTOType? Type1512 { get; set; }
///
///
///
- public global::Vapi.FilterNumberTypeColumnOnCallTable? Type1513 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnType? Type1513 { get; set; }
///
///
///
- public global::Vapi.FilterNumberArrayTypeColumnOnCallTable? Type1514 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnTable? Type1514 { get; set; }
///
///
///
- public global::Vapi.FilterDateTypeColumnOnCallTable? Type1515 { get; set; }
+ public global::Vapi.FilterStringTypeColumnOnCallTable? Type1515 { get; set; }
///
///
///
- public global::Vapi.FilterStructuredOutputColumnOnCallTable? Type1516 { get; set; }
+ public global::Vapi.FilterStringArrayTypeColumnOnCallTable? Type1516 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnColumn? Type1517 { get; set; }
+ public global::Vapi.FilterNumberTypeColumnOnCallTable? Type1517 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnOperation? Type1518 { get; set; }
+ public global::Vapi.FilterNumberArrayTypeColumnOnCallTable? Type1518 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnType? Type1519 { get; set; }
+ public global::Vapi.FilterDateTypeColumnOnCallTable? Type1519 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnTable? Type1520 { get; set; }
+ public global::Vapi.FilterStructuredOutputColumnOnCallTable? Type1520 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnColumn? Type1521 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnColumn? Type1521 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnOperation? Type1522 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnOperation? Type1522 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnType? Type1523 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnType? Type1523 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnTable? Type1524 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnTable? Type1524 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnColumn? Type1525 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnColumn? Type1525 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnOperation? Type1526 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnOperation? Type1526 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnEventsTableType? Type1527 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnType? Type1527 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnEventsTableTable? Type1528 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnTable? Type1528 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnEventsTableOn? Type1529 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnColumn? Type1529 { get; set; }
///
///
///
- public global::Vapi.JSONQueryOnEventsTableOperation? Type1530 { get; set; }
+ public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnOperation? Type1530 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type1531 { get; set; }
+ public global::Vapi.JSONQueryOnEventsTableType? Type1531 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1532 { get; set; }
+ public global::Vapi.JSONQueryOnEventsTableTable? Type1532 { get; set; }
///
///
///
- public global::Vapi.EventsTableStringCondition? Type1533 { get; set; }
+ public global::Vapi.JSONQueryOnEventsTableOn? Type1533 { get; set; }
///
///
///
- public global::Vapi.EventsTableNumberCondition? Type1534 { get; set; }
+ public global::Vapi.JSONQueryOnEventsTableOperation? Type1534 { get; set; }
///
///
///
- public global::Vapi.EventsTableBooleanCondition? Type1535 { get; set; }
+ public global::System.Collections.Generic.IList>? Type1535 { get; set; }
///
///
///
- public global::Vapi.FilterStringTypeColumnOnCallTableColumn? Type1536 { get; set; }
+ public global::Vapi.OneOf? Type1536 { get; set; }
///
///
///
- public global::Vapi.FilterStringTypeColumnOnCallTableOperator? Type1537 { get; set; }
+ public global::Vapi.EventsTableStringCondition? Type1537 { get; set; }
///
///
///
- public global::Vapi.FilterNumberTypeColumnOnCallTableColumn? Type1538 { get; set; }
+ public global::Vapi.EventsTableNumberCondition? Type1538 { get; set; }
///
///
///
- public global::Vapi.FilterNumberTypeColumnOnCallTableOperator? Type1539 { get; set; }
+ public global::Vapi.EventsTableBooleanCondition? Type1539 { get; set; }
///
///
///
- public global::Vapi.FilterDateTypeColumnOnCallTableColumn? Type1540 { get; set; }
+ public global::Vapi.FilterStringTypeColumnOnCallTableColumn? Type1540 { get; set; }
///
///
///
- public global::Vapi.FilterDateTypeColumnOnCallTableOperator? Type1541 { get; set; }
+ public global::Vapi.FilterStringTypeColumnOnCallTableOperator? Type1541 { get; set; }
///
///
///
- public global::Vapi.FilterStructuredOutputColumnOnCallTableColumn? Type1542 { get; set; }
+ public global::Vapi.FilterNumberTypeColumnOnCallTableColumn? Type1542 { get; set; }
///
///
///
- public global::Vapi.FilterStructuredOutputColumnOnCallTableOperator? Type1543 { get; set; }
+ public global::Vapi.FilterNumberTypeColumnOnCallTableOperator? Type1543 { get; set; }
///
///
///
- public global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn? Type1544 { get; set; }
+ public global::Vapi.FilterDateTypeColumnOnCallTableColumn? Type1544 { get; set; }
///
///
///
- public global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator? Type1545 { get; set; }
+ public global::Vapi.FilterDateTypeColumnOnCallTableOperator? Type1545 { get; set; }
///
///
///
- public global::Vapi.FilterNumberArrayTypeColumnOnCallTableColumn? Type1546 { get; set; }
+ public global::Vapi.FilterStructuredOutputColumnOnCallTableColumn? Type1546 { get; set; }
///
///
///
- public global::Vapi.FilterNumberArrayTypeColumnOnCallTableOperator? Type1547 { get; set; }
+ public global::Vapi.FilterStructuredOutputColumnOnCallTableOperator? Type1547 { get; set; }
///
///
///
- public global::Vapi.EventsTableStringConditionOperator? Type1548 { get; set; }
+ public global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn? Type1548 { get; set; }
///
///
///
- public global::Vapi.EventsTableNumberConditionOperator? Type1549 { get; set; }
+ public global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator? Type1549 { get; set; }
///
///
///
- public global::Vapi.EventsTableBooleanConditionOperator? Type1550 { get; set; }
+ public global::Vapi.FilterNumberArrayTypeColumnOnCallTableColumn? Type1550 { get; set; }
///
///
///
- public global::Vapi.BarInsightFromCallTable? Type1551 { get; set; }
+ public global::Vapi.FilterNumberArrayTypeColumnOnCallTableOperator? Type1551 { get; set; }
///
///
///
- public global::Vapi.BarInsightFromCallTableType? Type1552 { get; set; }
+ public global::Vapi.EventsTableStringConditionOperator? Type1552 { get; set; }
///
///
///
- public global::Vapi.BarInsightFromCallTableGroupBy? Type1553 { get; set; }
+ public global::Vapi.EventsTableNumberConditionOperator? Type1553 { get; set; }
///
///
///
- public global::Vapi.PieInsightFromCallTable? Type1554 { get; set; }
+ public global::Vapi.EventsTableBooleanConditionOperator? Type1554 { get; set; }
///
///
///
- public global::Vapi.PieInsightFromCallTableType? Type1555 { get; set; }
+ public global::Vapi.BarInsightFromCallTable? Type1555 { get; set; }
///
///
///
- public global::Vapi.PieInsightFromCallTableGroupBy? Type1556 { get; set; }
+ public global::Vapi.BarInsightFromCallTableType? Type1556 { get; set; }
///
///
///
- public global::Vapi.LineInsightFromCallTable? Type1557 { get; set; }
+ public global::Vapi.BarInsightFromCallTableGroupBy? Type1557 { get; set; }
///
///
///
- public global::Vapi.LineInsightFromCallTableType? Type1558 { get; set; }
+ public global::Vapi.PieInsightFromCallTable? Type1558 { get; set; }
///
///
///
- public global::Vapi.LineInsightFromCallTableGroupBy? Type1559 { get; set; }
+ public global::Vapi.PieInsightFromCallTableType? Type1559 { get; set; }
///
///
///
- public global::Vapi.TextInsightFromCallTable? Type1560 { get; set; }
+ public global::Vapi.PieInsightFromCallTableGroupBy? Type1560 { get; set; }
///
///
///
- public global::Vapi.TextInsightFromCallTableType? Type1561 { get; set; }
+ public global::Vapi.LineInsightFromCallTable? Type1561 { get; set; }
///
///
///
- public global::Vapi.InsightRunFormatPlan? Type1562 { get; set; }
+ public global::Vapi.LineInsightFromCallTableType? Type1562 { get; set; }
///
///
///
- public global::Vapi.InsightRunFormatPlanFormat? Type1563 { get; set; }
+ public global::Vapi.LineInsightFromCallTableGroupBy? Type1563 { get; set; }
///
///
///
- public global::Vapi.InsightRunDTO? Type1564 { get; set; }
+ public global::Vapi.TextInsightFromCallTable? Type1564 { get; set; }
///
///
///
- public global::Vapi.InsightRunResponse? Type1565 { get; set; }
+ public global::Vapi.TextInsightFromCallTableType? Type1565 { get; set; }
///
///
///
- public global::Vapi.Insight? Type1566 { get; set; }
+ public global::Vapi.InsightRunFormatPlan? Type1566 { get; set; }
///
///
///
- public global::Vapi.InsightType? Type1567 { get; set; }
+ public global::Vapi.InsightRunFormatPlanFormat? Type1567 { get; set; }
///
///
///
- public global::Vapi.InsightPaginatedResponse? Type1568 { get; set; }
+ public global::Vapi.InsightRunDTO? Type1568 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1569 { get; set; }
+ public global::Vapi.InsightRunResponse? Type1569 { get; set; }
///
///
///
- public global::Vapi.CreateEvalDTO? Type1570 { get; set; }
+ public global::Vapi.Insight? Type1570 { get; set; }
///
///
///
- public global::Vapi.ChatEvalAssistantMessageMock? Type1571 { get; set; }
+ public global::Vapi.InsightType? Type1571 { get; set; }
///
///
///
- public global::Vapi.ChatEvalSystemMessageMock? Type1572 { get; set; }
+ public global::Vapi.InsightPaginatedResponse? Type1572 { get; set; }
///
///
///
- public global::Vapi.ChatEvalToolResponseMessageMock? Type1573 { get; set; }
+ public global::System.Collections.Generic.IList? Type1573 { get; set; }
///
///
///
- public global::Vapi.ChatEvalToolResponseMessageEvaluation? Type1574 { get; set; }
+ public global::Vapi.CreateEvalDTO? Type1574 { get; set; }
///
///
///
- public global::Vapi.ChatEvalUserMessageMock? Type1575 { get; set; }
+ public global::Vapi.ChatEvalAssistantMessageMock? Type1575 { get; set; }
///
///
///
- public global::Vapi.ChatEvalAssistantMessageEvaluation? Type1576 { get; set; }
+ public global::Vapi.ChatEvalSystemMessageMock? Type1576 { get; set; }
///
///
///
- public global::Vapi.CreateEvalDTOType? Type1577 { get; set; }
+ public global::Vapi.ChatEvalToolResponseMessageMock? Type1577 { get; set; }
///
///
///
- public global::Vapi.Eval? Type1578 { get; set; }
+ public global::Vapi.ChatEvalToolResponseMessageEvaluation? Type1578 { get; set; }
///
///
///
- public global::Vapi.EvalType? Type1579 { get; set; }
+ public global::Vapi.ChatEvalUserMessageMock? Type1579 { get; set; }
///
///
///
- public global::Vapi.EvalModelListOptions? Type1580 { get; set; }
+ public global::Vapi.ChatEvalAssistantMessageEvaluation? Type1580 { get; set; }
///
///
///
- public global::Vapi.EvalModelListOptionsProvider? Type1581 { get; set; }
+ public global::Vapi.CreateEvalDTOType? Type1581 { get; set; }
///
///
///
- public global::Vapi.EvalUserEditable? Type1582 { get; set; }
+ public global::Vapi.Eval? Type1582 { get; set; }
///
///
///
- public global::Vapi.EvalUserEditableType? Type1583 { get; set; }
+ public global::Vapi.EvalType? Type1583 { get; set; }
///
///
///
- public global::Vapi.ChatEvalAssistantMessageMockToolCall? Type1584 { get; set; }
+ public global::Vapi.EvalModelListOptions? Type1584 { get; set; }
///
///
///
- public global::Vapi.ChatEvalAssistantMessageMockRole? Type1585 { get; set; }
+ public global::Vapi.EvalModelListOptionsProvider? Type1585 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1586 { get; set; }
+ public global::Vapi.EvalUserEditable? Type1586 { get; set; }
///
///
///
- public global::Vapi.ChatEvalSystemMessageMockRole? Type1587 { get; set; }
+ public global::Vapi.EvalUserEditableType? Type1587 { get; set; }
///
///
///
- public global::Vapi.ChatEvalToolResponseMessageMockRole? Type1588 { get; set; }
+ public global::Vapi.ChatEvalAssistantMessageMockToolCall? Type1588 { get; set; }
///
///
///
- public global::Vapi.ChatEvalUserMessageMockRole? Type1589 { get; set; }
+ public global::Vapi.ChatEvalAssistantMessageMockRole? Type1589 { get; set; }
///
///
///
- public global::Vapi.AssistantMessageEvaluationContinuePlan? Type1590 { get; set; }
+ public global::System.Collections.Generic.IList? Type1590 { get; set; }
///
///
///
- public global::Vapi.ChatEvalAssistantMessageEvaluationRole? Type1591 { get; set; }
+ public global::Vapi.ChatEvalSystemMessageMockRole? Type1591 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1592 { get; set; }
+ public global::Vapi.ChatEvalToolResponseMessageMockRole? Type1592 { get; set; }
///
///
///
- public global::Vapi.AssistantMessageJudgePlanExact? Type1593 { get; set; }
+ public global::Vapi.ChatEvalUserMessageMockRole? Type1593 { get; set; }
///
///
///
- public global::Vapi.AssistantMessageJudgePlanRegex? Type1594 { get; set; }
+ public global::Vapi.AssistantMessageEvaluationContinuePlan? Type1594 { get; set; }
///
///
///
- public global::Vapi.AssistantMessageJudgePlanAI? Type1595 { get; set; }
+ public global::Vapi.ChatEvalAssistantMessageEvaluationRole? Type1595 { get; set; }
///
///
///
- public global::Vapi.EvalOpenAIModel? Type1596 { get; set; }
+ public global::Vapi.OneOf? Type1596 { get; set; }
///
///
///
- public global::Vapi.EvalOpenAIModelProvider? Type1597 { get; set; }
+ public global::Vapi.AssistantMessageJudgePlanExact? Type1597 { get; set; }
///
///
///
- public global::Vapi.EvalOpenAIModelModel? Type1598 { get; set; }
+ public global::Vapi.AssistantMessageJudgePlanRegex? Type1598 { get; set; }
///
///
///
- public global::Vapi.EvalAnthropicModel? Type1599 { get; set; }
+ public global::Vapi.AssistantMessageJudgePlanAI? Type1599 { get; set; }
///
///
///
- public global::Vapi.EvalAnthropicModelProvider? Type1600 { get; set; }
+ public global::Vapi.EvalOpenAIModel? Type1600 { get; set; }
///
///
///
- public global::Vapi.EvalAnthropicModelModel? Type1601 { get; set; }
+ public global::Vapi.EvalOpenAIModelProvider? Type1601 { get; set; }
///
///
///
- public global::Vapi.EvalGoogleModel? Type1602 { get; set; }
+ public global::Vapi.EvalOpenAIModelModel? Type1602 { get; set; }
///
///
///
- public global::Vapi.EvalGoogleModelProvider? Type1603 { get; set; }
+ public global::Vapi.EvalAnthropicModel? Type1603 { get; set; }
///
///
///
- public global::Vapi.EvalGoogleModelModel? Type1604 { get; set; }
+ public global::Vapi.EvalAnthropicModelProvider? Type1604 { get; set; }
///
///
///
- public global::Vapi.EvalGroqModel? Type1605 { get; set; }
+ public global::Vapi.EvalAnthropicModelModel? Type1605 { get; set; }
///
///
///
- public global::Vapi.EvalGroqModelProvider? Type1606 { get; set; }
+ public global::Vapi.EvalGoogleModel? Type1606 { get; set; }
///
///
///
- public global::Vapi.EvalGroqModelModel? Type1607 { get; set; }
+ public global::Vapi.EvalGoogleModelProvider? Type1607 { get; set; }
///
///
///
- public global::Vapi.EvalCustomModel? Type1608 { get; set; }
+ public global::Vapi.EvalGoogleModelModel? Type1608 { get; set; }
///
///
///
- public global::Vapi.EvalCustomModelProvider? Type1609 { get; set; }
+ public global::Vapi.EvalGroqModel? Type1609 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1610 { get; set; }
+ public global::Vapi.EvalGroqModelProvider? Type1610 { get; set; }
///
///
///
- public global::Vapi.AssistantMessageJudgePlanAIType? Type1611 { get; set; }
+ public global::Vapi.EvalGroqModelModel? Type1611 { get; set; }
///
///
///
- public global::Vapi.ChatEvalToolResponseMessageEvaluationRole? Type1612 { get; set; }
+ public global::Vapi.EvalCustomModel? Type1612 { get; set; }
///
///
///
- public global::Vapi.AssistantMessageJudgePlanExactType? Type1613 { get; set; }
+ public global::Vapi.EvalCustomModelProvider? Type1613 { get; set; }
///
///
///
- public global::Vapi.AssistantMessageJudgePlanRegexType? Type1614 { get; set; }
+ public global::Vapi.OneOf? Type1614 { get; set; }
///
///
///
- public global::Vapi.GetEvalPaginatedDTO? Type1615 { get; set; }
+ public global::Vapi.AssistantMessageJudgePlanAIType? Type1615 { get; set; }
///
///
///
- public global::Vapi.GetEvalPaginatedDTOSortOrder? Type1616 { get; set; }
+ public global::Vapi.ChatEvalToolResponseMessageEvaluationRole? Type1616 { get; set; }
///
///
///
- public global::Vapi.GetEvalPaginatedDTOSortBy? Type1617 { get; set; }
+ public global::Vapi.AssistantMessageJudgePlanExactType? Type1617 { get; set; }
///
///
///
- public global::Vapi.EvalPaginatedResponse? Type1618 { get; set; }
+ public global::Vapi.AssistantMessageJudgePlanRegexType? Type1618 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1619 { get; set; }
+ public global::Vapi.GetEvalPaginatedDTO? Type1619 { get; set; }
///
///
///
- public global::Vapi.UpdateEvalDTO? Type1620 { get; set; }
+ public global::Vapi.GetEvalPaginatedDTOSortOrder? Type1620 { get; set; }
///
///
///
- public global::Vapi.UpdateEvalDTOType? Type1621 { get; set; }
+ public global::Vapi.GetEvalPaginatedDTOSortBy? Type1621 { get; set; }
///
///
///
- public global::Vapi.CreateEvalRunDTO? Type1622 { get; set; }
+ public global::Vapi.EvalPaginatedResponse? Type1622 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1623 { get; set; }
+ public global::System.Collections.Generic.IList? Type1623 { get; set; }
///
///
///
- public global::Vapi.EvalRunTargetAssistant? Type1624 { get; set; }
+ public global::Vapi.UpdateEvalDTO? Type1624 { get; set; }
///
///
///
- public global::Vapi.EvalRunTargetSquad? Type1625 { get; set; }
+ public global::Vapi.UpdateEvalDTOType? Type1625 { get; set; }
///
///
///
- public global::Vapi.CreateEvalRunDTOType? Type1626 { get; set; }
+ public global::Vapi.CreateEvalRunDTO? Type1626 { get; set; }
///
///
///
- public global::Vapi.EvalRunResult? Type1627 { get; set; }
+ public global::Vapi.OneOf? Type1627 { get; set; }
///
///
///
- public global::Vapi.EvalRunResultStatus? Type1628 { get; set; }
+ public global::Vapi.EvalRunTargetAssistant? Type1628 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1629 { get; set; }
+ public global::Vapi.EvalRunTargetSquad? Type1629 { get; set; }
///
///
///
- public global::Vapi.EvalRun? Type1630 { get; set; }
+ public global::Vapi.CreateEvalRunDTOType? Type1630 { get; set; }
///
///
///
- public global::Vapi.EvalRunStatus? Type1631 { get; set; }
+ public global::Vapi.EvalRunResult? Type1631 { get; set; }
///
///
///
- public global::Vapi.EvalRunEndedReason? Type1632 { get; set; }
+ public global::Vapi.EvalRunResultStatus? Type1632 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1633 { get; set; }
+ public global::Vapi.OneOf? Type1633 { get; set; }
///
///
///
- public global::Vapi.EvalRunType? Type1634 { get; set; }
+ public global::Vapi.EvalRun? Type1634 { get; set; }
///
///
///
- public global::Vapi.EvalRunPaginatedResponse? Type1635 { get; set; }
+ public global::Vapi.EvalRunStatus? Type1635 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1636 { get; set; }
+ public global::Vapi.EvalRunEndedReason? Type1636 { get; set; }
///
///
///
- public global::Vapi.GetEvalRunPaginatedDTO? Type1637 { get; set; }
+ public global::System.Collections.Generic.IList? Type1637 { get; set; }
///
///
///
- public global::Vapi.GetEvalRunPaginatedDTOSortOrder? Type1638 { get; set; }
+ public global::Vapi.EvalRunType? Type1638 { get; set; }
///
///
///
- public global::Vapi.GetEvalRunPaginatedDTOSortBy? Type1639 { get; set; }
+ public global::Vapi.EvalRunPaginatedResponse? Type1639 { get; set; }
///
///
///
- public global::Vapi.EvalRunTargetAssistantType? Type1640 { get; set; }
+ public global::System.Collections.Generic.IList? Type1640 { get; set; }
///
///
///
- public global::Vapi.EvalRunTargetSquadType? Type1641 { get; set; }
+ public global::Vapi.GetEvalRunPaginatedDTO? Type1641 { get; set; }
///
///
///
- public global::Vapi.Scorecard? Type1642 { get; set; }
+ public global::Vapi.GetEvalRunPaginatedDTOSortOrder? Type1642 { get; set; }
///
///
///
- public global::Vapi.ScorecardPaginatedResponse? Type1643 { get; set; }
+ public global::Vapi.GetEvalRunPaginatedDTOSortBy? Type1643 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1644 { get; set; }
+ public global::Vapi.EvalRunTargetAssistantType? Type1644 { get; set; }
///
///
///
- public global::Vapi.UpdateScorecardDTO? Type1645 { get; set; }
+ public global::Vapi.EvalRunTargetSquadType? Type1645 { get; set; }
///
///
///
- public global::Vapi.CreateOrgDTO? Type1646 { get; set; }
+ public global::Vapi.Scorecard? Type1646 { get; set; }
///
///
///
- public global::Vapi.CreateOrgDTOChannel? Type1647 { get; set; }
+ public global::Vapi.ScorecardPaginatedResponse? Type1647 { get; set; }
///
///
///
- public global::Vapi.AutoReloadPlan? Type1648 { get; set; }
+ public global::System.Collections.Generic.IList? Type1648 { get; set; }
///
///
///
- public global::Vapi.InvoicePlan? Type1649 { get; set; }
+ public global::Vapi.UpdateScorecardDTO? Type1649 { get; set; }
///
///
///
- public global::Vapi.Subscription? Type1650 { get; set; }
+ public global::Vapi.CreateOrgDTO? Type1650 { get; set; }
///
///
///
- public global::Vapi.SubscriptionType? Type1651 { get; set; }
+ public global::Vapi.CreateOrgDTOChannel? Type1651 { get; set; }
///
///
///
- public global::Vapi.SubscriptionStatus? Type1652 { get; set; }
+ public global::Vapi.AutoReloadPlan? Type1652 { get; set; }
///
///
///
- public global::Vapi.SubscriptionMinutesIncludedResetFrequency? Type1653 { get; set; }
+ public global::Vapi.InvoicePlan? Type1653 { get; set; }
///
///
///
- public global::Vapi.Org? Type1654 { get; set; }
+ public global::Vapi.Subscription? Type1654 { get; set; }
///
///
///
- public global::Vapi.OrgChannel? Type1655 { get; set; }
+ public global::Vapi.SubscriptionType? Type1655 { get; set; }
///
///
///
- public global::Vapi.UpdateOrgDTO? Type1656 { get; set; }
+ public global::Vapi.SubscriptionStatus? Type1656 { get; set; }
///
///
///
- public global::Vapi.UpdateOrgDTOChannel? Type1657 { get; set; }
+ public global::Vapi.SubscriptionMinutesIncludedResetFrequency? Type1657 { get; set; }
///
///
///
- public global::Vapi.User? Type1658 { get; set; }
+ public global::Vapi.Org? Type1658 { get; set; }
///
///
///
- public global::Vapi.InviteUserDTO? Type1659 { get; set; }
+ public global::Vapi.OrgChannel? Type1659 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1660 { get; set; }
+ public global::Vapi.UpdateOrgDTO? Type1660 { get; set; }
///
///
///
- public global::Vapi.InviteUserDTORole? Type1661 { get; set; }
+ public global::Vapi.UpdateOrgDTOChannel? Type1661 { get; set; }
///
///
///
- public global::Vapi.UpdateUserRoleDTO? Type1662 { get; set; }
+ public global::Vapi.User? Type1662 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type1663 { get; set; }
+ public global::Vapi.InviteUserDTO? Type1663 { get; set; }
///
///
///
- public global::Vapi.UpdateUserRoleDTORole? Type1664 { get; set; }
+ public global::Vapi.OneOf? Type1664 { get; set; }
///
///
///
- public global::Vapi.JwtResponse? Type1665 { get; set; }
+ public global::Vapi.InviteUserDTORole? Type1665 { get; set; }
///
///
///
- public global::Vapi.TokenRestrictions? Type1666 { get; set; }
+ public global::Vapi.UpdateUserRoleDTO? Type1666 { get; set; }
///
///
///
- public global::Vapi.CreateTokenDTO? Type1667 { get; set; }
+ public global::Vapi.OneOf? Type1667 { get; set; }
///
///
///
- public global::Vapi.CreateTokenDTOTag? Type1668 { get; set; }
+ public global::Vapi.UpdateUserRoleDTORole? Type1668 { get; set; }
///
///
///
- public global::Vapi.Token? Type1669 { get; set; }
+ public global::Vapi.JwtResponse? Type1669 { get; set; }
///
///
///
- public global::Vapi.TokenTag? Type1670 { get; set; }
+ public global::Vapi.TokenRestrictions? Type1670 { get; set; }
///
///
///
- public global::Vapi.UpdateTokenDTO? Type1671 { get; set; }
+ public global::Vapi.CreateTokenDTO? Type1671 { get; set; }
///
///
///
- public global::Vapi.UpdateTokenDTOTag? Type1672 { get; set; }
+ public global::Vapi.CreateTokenDTOTag? Type1672 { get; set; }
///
///
///
- public global::Vapi.AnthropicCredential? Type1673 { get; set; }
+ public global::Vapi.Token? Type1673 { get; set; }
///
///
///
- public global::Vapi.AnthropicCredentialProvider? Type1674 { get; set; }
+ public global::Vapi.TokenTag? Type1674 { get; set; }
///
///
///
- public global::Vapi.AWSStsAuthenticationArtifact? Type1675 { get; set; }
+ public global::Vapi.UpdateTokenDTO? Type1675 { get; set; }
///
///
///
- public global::Vapi.AWSStsAssumeRoleUser? Type1676 { get; set; }
+ public global::Vapi.UpdateTokenDTOTag? Type1676 { get; set; }
///
///
///
- public global::Vapi.AWSStsCredentials? Type1677 { get; set; }
+ public global::Vapi.AnthropicCredential? Type1677 { get; set; }
///
///
///
- public global::Vapi.AWSStsAuthenticationSession? Type1678 { get; set; }
+ public global::Vapi.AnthropicCredentialProvider? Type1678 { get; set; }
///
///
///
- public global::Vapi.AnthropicBedrockCredential? Type1679 { get; set; }
+ public global::Vapi.AWSStsAuthenticationArtifact? Type1679 { get; set; }
///
///
///
- public global::Vapi.AnthropicBedrockCredentialProvider? Type1680 { get; set; }
+ public global::Vapi.AWSStsAssumeRoleUser? Type1680 { get; set; }
///
///
///
- public global::Vapi.AnthropicBedrockCredentialRegion? Type1681 { get; set; }
+ public global::Vapi.AWSStsCredentials? Type1681 { get; set; }
///
///
///
- public global::Vapi.AnyscaleCredential? Type1682 { get; set; }
+ public global::Vapi.AWSStsAuthenticationSession? Type1682 { get; set; }
///
///
///
- public global::Vapi.AnyscaleCredentialProvider? Type1683 { get; set; }
+ public global::Vapi.AnthropicBedrockCredential? Type1683 { get; set; }
///
///
///
- public global::Vapi.AssemblyAICredential? Type1684 { get; set; }
+ public global::Vapi.AnthropicBedrockCredentialProvider? Type1684 { get; set; }
///
///
///
- public global::Vapi.AssemblyAICredentialProvider? Type1685 { get; set; }
+ public global::Vapi.AnthropicBedrockCredentialRegion? Type1685 { get; set; }
///
///
///
- public global::Vapi.AzureCredential? Type1686 { get; set; }
+ public global::Vapi.AnyscaleCredential? Type1686 { get; set; }
///
///
///
- public global::Vapi.AzureCredentialProvider? Type1687 { get; set; }
+ public global::Vapi.AnyscaleCredentialProvider? Type1687 { get; set; }
///
///
///
- public global::Vapi.AzureCredentialService? Type1688 { get; set; }
+ public global::Vapi.AssemblyAICredential? Type1688 { get; set; }
///
///
///
- public global::Vapi.AzureCredentialRegion? Type1689 { get; set; }
+ public global::Vapi.AssemblyAICredentialProvider? Type1689 { get; set; }
///
///
///
- public global::Vapi.AzureOpenAICredential? Type1690 { get; set; }
+ public global::Vapi.AzureCredential? Type1690 { get; set; }
///
///
///
- public global::Vapi.AzureOpenAICredentialProvider? Type1691 { get; set; }
+ public global::Vapi.AzureCredentialProvider? Type1691 { get; set; }
///
///
///
- public global::Vapi.AzureOpenAICredentialRegion? Type1692 { get; set; }
+ public global::Vapi.AzureCredentialService? Type1692 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1693 { get; set; }
+ public global::Vapi.AzureCredentialRegion? Type1693 { get; set; }
///
///
///
- public global::Vapi.AzureOpenAICredentialModel? Type1694 { get; set; }
+ public global::Vapi.AzureOpenAICredential? Type1694 { get; set; }
///
///
///
- public global::Vapi.ByoSipTrunkCredential? Type1695 { get; set; }
+ public global::Vapi.AzureOpenAICredentialProvider? Type1695 { get; set; }
///
///
///
- public global::Vapi.ByoSipTrunkCredentialProvider? Type1696 { get; set; }
+ public global::Vapi.AzureOpenAICredentialRegion? Type1696 { get; set; }
///
///
///
- public global::Vapi.CartesiaCredential? Type1697 { get; set; }
+ public global::System.Collections.Generic.IList? Type1697 { get; set; }
///
///
///
- public global::Vapi.CartesiaCredentialProvider? Type1698 { get; set; }
+ public global::Vapi.AzureOpenAICredentialModel? Type1698 { get; set; }
///
///
///
- public global::Vapi.CerebrasCredential? Type1699 { get; set; }
+ public global::Vapi.ByoSipTrunkCredential? Type1699 { get; set; }
///
///
///
- public global::Vapi.CerebrasCredentialProvider? Type1700 { get; set; }
+ public global::Vapi.ByoSipTrunkCredentialProvider? Type1700 { get; set; }
///
///
///
- public global::Vapi.CloudflareCredential? Type1701 { get; set; }
+ public global::Vapi.CartesiaCredential? Type1701 { get; set; }
///
///
///
- public global::Vapi.CloudflareCredentialProvider? Type1702 { get; set; }
+ public global::Vapi.CartesiaCredentialProvider? Type1702 { get; set; }
///
///
///
- public global::Vapi.Oauth2AuthenticationSession? Type1703 { get; set; }
+ public global::Vapi.CerebrasCredential? Type1703 { get; set; }
///
///
///
- public global::Vapi.CustomLLMCredential? Type1704 { get; set; }
+ public global::Vapi.CerebrasCredentialProvider? Type1704 { get; set; }
///
///
///
- public global::Vapi.CustomLLMCredentialProvider? Type1705 { get; set; }
+ public global::Vapi.CloudflareCredential? Type1705 { get; set; }
///
///
///
- public global::Vapi.DeepgramCredential? Type1706 { get; set; }
+ public global::Vapi.CloudflareCredentialProvider? Type1706 { get; set; }
///
///
///
- public global::Vapi.DeepgramCredentialProvider? Type1707 { get; set; }
+ public global::Vapi.Oauth2AuthenticationSession? Type1707 { get; set; }
///
///
///
- public global::Vapi.DeepInfraCredential? Type1708 { get; set; }
+ public global::Vapi.CustomLLMCredential? Type1708 { get; set; }
///
///
///
- public global::Vapi.DeepInfraCredentialProvider? Type1709 { get; set; }
+ public global::Vapi.CustomLLMCredentialProvider? Type1709 { get; set; }
///
///
///
- public global::Vapi.DeepSeekCredential? Type1710 { get; set; }
+ public global::Vapi.DeepgramCredential? Type1710 { get; set; }
///
///
///
- public global::Vapi.DeepSeekCredentialProvider? Type1711 { get; set; }
+ public global::Vapi.DeepgramCredentialProvider? Type1711 { get; set; }
///
///
///
- public global::Vapi.ElevenLabsCredential? Type1712 { get; set; }
+ public global::Vapi.DeepInfraCredential? Type1712 { get; set; }
///
///
///
- public global::Vapi.ElevenLabsCredentialProvider? Type1713 { get; set; }
+ public global::Vapi.DeepInfraCredentialProvider? Type1713 { get; set; }
///
///
///
- public global::Vapi.ElevenLabsCredentialApiUrl? Type1714 { get; set; }
+ public global::Vapi.DeepSeekCredential? Type1714 { get; set; }
///
///
///
- public global::Vapi.GcpCredential? Type1715 { get; set; }
+ public global::Vapi.DeepSeekCredentialProvider? Type1715 { get; set; }
///
///
///
- public global::Vapi.GcpCredentialProvider? Type1716 { get; set; }
+ public global::Vapi.ElevenLabsCredential? Type1716 { get; set; }
///
///
///
- public global::Vapi.GladiaCredential? Type1717 { get; set; }
+ public global::Vapi.ElevenLabsCredentialProvider? Type1717 { get; set; }
///
///
///
- public global::Vapi.GladiaCredentialProvider? Type1718 { get; set; }
+ public global::Vapi.ElevenLabsCredentialApiUrl? Type1718 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCredential? Type1719 { get; set; }
+ public global::Vapi.GcpCredential? Type1719 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCredentialProvider? Type1720 { get; set; }
+ public global::Vapi.GcpCredentialProvider? Type1720 { get; set; }
///
///
///
- public global::Vapi.GoogleCredential? Type1721 { get; set; }
+ public global::Vapi.GladiaCredential? Type1721 { get; set; }
///
///
///
- public global::Vapi.GoogleCredentialProvider? Type1722 { get; set; }
+ public global::Vapi.GladiaCredentialProvider? Type1722 { get; set; }
///
///
///
- public global::Vapi.GroqCredential? Type1723 { get; set; }
+ public global::Vapi.GoHighLevelCredential? Type1723 { get; set; }
///
///
///
- public global::Vapi.GroqCredentialProvider? Type1724 { get; set; }
+ public global::Vapi.GoHighLevelCredentialProvider? Type1724 { get; set; }
///
///
///
- public global::Vapi.HumeCredential? Type1725 { get; set; }
+ public global::Vapi.GoogleCredential? Type1725 { get; set; }
///
///
///
- public global::Vapi.HumeCredentialProvider? Type1726 { get; set; }
+ public global::Vapi.GoogleCredentialProvider? Type1726 { get; set; }
///
///
///
- public global::Vapi.InflectionAICredential? Type1727 { get; set; }
+ public global::Vapi.GroqCredential? Type1727 { get; set; }
///
///
///
- public global::Vapi.InflectionAICredentialProvider? Type1728 { get; set; }
+ public global::Vapi.GroqCredentialProvider? Type1728 { get; set; }
///
///
///
- public global::Vapi.LangfuseCredential? Type1729 { get; set; }
+ public global::Vapi.HumeCredential? Type1729 { get; set; }
///
///
///
- public global::Vapi.LangfuseCredentialProvider? Type1730 { get; set; }
+ public global::Vapi.HumeCredentialProvider? Type1730 { get; set; }
///
///
///
- public global::Vapi.LmntCredential? Type1731 { get; set; }
+ public global::Vapi.InflectionAICredential? Type1731 { get; set; }
///
///
///
- public global::Vapi.LmntCredentialProvider? Type1732 { get; set; }
+ public global::Vapi.InflectionAICredentialProvider? Type1732 { get; set; }
///
///
///
- public global::Vapi.MakeCredential? Type1733 { get; set; }
+ public global::Vapi.LangfuseCredential? Type1733 { get; set; }
///
///
///
- public global::Vapi.MakeCredentialProvider? Type1734 { get; set; }
+ public global::Vapi.LangfuseCredentialProvider? Type1734 { get; set; }
///
///
///
- public global::Vapi.MicrosoftCredential? Type1735 { get; set; }
+ public global::Vapi.LmntCredential? Type1735 { get; set; }
///
///
///
- public global::Vapi.MicrosoftCredentialProvider? Type1736 { get; set; }
+ public global::Vapi.LmntCredentialProvider? Type1736 { get; set; }
///
///
///
- public global::Vapi.MistralCredential? Type1737 { get; set; }
+ public global::Vapi.MakeCredential? Type1737 { get; set; }
///
///
///
- public global::Vapi.MistralCredentialProvider? Type1738 { get; set; }
+ public global::Vapi.MakeCredentialProvider? Type1738 { get; set; }
///
///
///
- public global::Vapi.NeuphonicCredential? Type1739 { get; set; }
+ public global::Vapi.MicrosoftCredential? Type1739 { get; set; }
///
///
///
- public global::Vapi.NeuphonicCredentialProvider? Type1740 { get; set; }
+ public global::Vapi.MicrosoftCredentialProvider? Type1740 { get; set; }
///
///
///
- public global::Vapi.OpenAICredential? Type1741 { get; set; }
+ public global::Vapi.MistralCredential? Type1741 { get; set; }
///
///
///
- public global::Vapi.OpenAICredentialProvider? Type1742 { get; set; }
+ public global::Vapi.MistralCredentialProvider? Type1742 { get; set; }
///
///
///
- public global::Vapi.OpenRouterCredential? Type1743 { get; set; }
+ public global::Vapi.NeuphonicCredential? Type1743 { get; set; }
///
///
///
- public global::Vapi.OpenRouterCredentialProvider? Type1744 { get; set; }
+ public global::Vapi.NeuphonicCredentialProvider? Type1744 { get; set; }
///
///
///
- public global::Vapi.PerplexityAICredential? Type1745 { get; set; }
+ public global::Vapi.OpenAICredential? Type1745 { get; set; }
///
///
///
- public global::Vapi.PerplexityAICredentialProvider? Type1746 { get; set; }
+ public global::Vapi.OpenAICredentialProvider? Type1746 { get; set; }
///
///
///
- public global::Vapi.PlayHTCredential? Type1747 { get; set; }
+ public global::Vapi.OpenRouterCredential? Type1747 { get; set; }
///
///
///
- public global::Vapi.PlayHTCredentialProvider? Type1748 { get; set; }
+ public global::Vapi.OpenRouterCredentialProvider? Type1748 { get; set; }
///
///
///
- public global::Vapi.RimeAICredential? Type1749 { get; set; }
+ public global::Vapi.PerplexityAICredential? Type1749 { get; set; }
///
///
///
- public global::Vapi.RimeAICredentialProvider? Type1750 { get; set; }
+ public global::Vapi.PerplexityAICredentialProvider? Type1750 { get; set; }
///
///
///
- public global::Vapi.RunpodCredential? Type1751 { get; set; }
+ public global::Vapi.PlayHTCredential? Type1751 { get; set; }
///
///
///
- public global::Vapi.RunpodCredentialProvider? Type1752 { get; set; }
+ public global::Vapi.PlayHTCredentialProvider? Type1752 { get; set; }
///
///
///
- public global::Vapi.WellSaidCredential? Type1753 { get; set; }
+ public global::Vapi.RimeAICredential? Type1753 { get; set; }
///
///
///
- public global::Vapi.WellSaidCredentialProvider? Type1754 { get; set; }
+ public global::Vapi.RimeAICredentialProvider? Type1754 { get; set; }
///
///
///
- public global::Vapi.S3Credential? Type1755 { get; set; }
+ public global::Vapi.RunpodCredential? Type1755 { get; set; }
///
///
///
- public global::Vapi.S3CredentialProvider? Type1756 { get; set; }
+ public global::Vapi.RunpodCredentialProvider? Type1756 { get; set; }
///
///
///
- public global::Vapi.SmallestAICredential? Type1757 { get; set; }
+ public global::Vapi.WellSaidCredential? Type1757 { get; set; }
///
///
///
- public global::Vapi.SmallestAICredentialProvider? Type1758 { get; set; }
+ public global::Vapi.WellSaidCredentialProvider? Type1758 { get; set; }
///
///
///
- public global::Vapi.SonioxCredential? Type1759 { get; set; }
+ public global::Vapi.S3Credential? Type1759 { get; set; }
///
///
///
- public global::Vapi.SonioxCredentialProvider? Type1760 { get; set; }
+ public global::Vapi.S3CredentialProvider? Type1760 { get; set; }
///
///
///
- public global::Vapi.SpeechmaticsCredential? Type1761 { get; set; }
+ public global::Vapi.SmallestAICredential? Type1761 { get; set; }
///
///
///
- public global::Vapi.SpeechmaticsCredentialProvider? Type1762 { get; set; }
+ public global::Vapi.SmallestAICredentialProvider? Type1762 { get; set; }
///
///
///
- public global::Vapi.SupabaseCredential? Type1763 { get; set; }
+ public global::Vapi.SonioxCredential? Type1763 { get; set; }
///
///
///
- public global::Vapi.SupabaseCredentialProvider? Type1764 { get; set; }
+ public global::Vapi.SonioxCredentialProvider? Type1764 { get; set; }
///
///
///
- public global::Vapi.TavusCredential? Type1765 { get; set; }
+ public global::Vapi.SpeechmaticsCredential? Type1765 { get; set; }
///
///
///
- public global::Vapi.TavusCredentialProvider? Type1766 { get; set; }
+ public global::Vapi.SpeechmaticsCredentialProvider? Type1766 { get; set; }
///
///
///
- public global::Vapi.TogetherAICredential? Type1767 { get; set; }
+ public global::Vapi.SupabaseCredential? Type1767 { get; set; }
///
///
///
- public global::Vapi.TogetherAICredentialProvider? Type1768 { get; set; }
+ public global::Vapi.SupabaseCredentialProvider? Type1768 { get; set; }
///
///
///
- public global::Vapi.TwilioCredential? Type1769 { get; set; }
+ public global::Vapi.TavusCredential? Type1769 { get; set; }
///
///
///
- public global::Vapi.TwilioCredentialProvider? Type1770 { get; set; }
+ public global::Vapi.TavusCredentialProvider? Type1770 { get; set; }
///
///
///
- public global::Vapi.VonageCredential? Type1771 { get; set; }
+ public global::Vapi.TogetherAICredential? Type1771 { get; set; }
///
///
///
- public global::Vapi.VonageCredentialProvider? Type1772 { get; set; }
+ public global::Vapi.TogetherAICredentialProvider? Type1772 { get; set; }
///
///
///
- public global::Vapi.WebhookCredential? Type1773 { get; set; }
+ public global::Vapi.TwilioCredential? Type1773 { get; set; }
///
///
///
- public global::Vapi.WebhookCredentialProvider? Type1774 { get; set; }
+ public global::Vapi.TwilioCredentialProvider? Type1774 { get; set; }
///
///
///
- public global::Vapi.AuthenticationPlan4? Type1775 { get; set; }
+ public global::Vapi.VonageCredential? Type1775 { get; set; }
///
///
///
- public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminator? Type1776 { get; set; }
+ public global::Vapi.VonageCredentialProvider? Type1776 { get; set; }
///
///
///
- public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminatorType? Type1777 { get; set; }
+ public global::Vapi.WebhookCredential? Type1777 { get; set; }
///
///
///
- public global::Vapi.SpkiPemPublicKeyConfig? Type1778 { get; set; }
+ public global::Vapi.WebhookCredentialProvider? Type1778 { get; set; }
///
///
///
- public global::Vapi.SpkiPemPublicKeyConfigFormat? Type1779 { get; set; }
+ public global::Vapi.AuthenticationPlan4? Type1779 { get; set; }
///
///
///
- public global::Vapi.PublicKeyEncryptionPlan? Type1780 { get; set; }
+ public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminator? Type1780 { get; set; }
///
///
///
- public global::Vapi.PublicKeyEncryptionPlanType? Type1781 { get; set; }
+ public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminatorType? Type1781 { get; set; }
///
///
///
- public global::Vapi.PublicKeyEncryptionPlanAlgorithm? Type1782 { get; set; }
+ public global::Vapi.SpkiPemPublicKeyConfig? Type1782 { get; set; }
///
///
///
- public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator? Type1783 { get; set; }
+ public global::Vapi.SpkiPemPublicKeyConfigFormat? Type1783 { get; set; }
///
///
///
- public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat? Type1784 { get; set; }
+ public global::Vapi.PublicKeyEncryptionPlan? Type1784 { get; set; }
///
///
///
- public global::Vapi.CustomCredential? Type1785 { get; set; }
+ public global::Vapi.PublicKeyEncryptionPlanType? Type1785 { get; set; }
///
///
///
- public global::Vapi.CustomCredentialProvider? Type1786 { get; set; }
+ public global::Vapi.PublicKeyEncryptionPlanAlgorithm? Type1786 { get; set; }
///
///
///
- public global::Vapi.AuthenticationPlan5? Type1787 { get; set; }
+ public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator? Type1787 { get; set; }
///
///
///
- public global::Vapi.CustomCredentialAuthenticationPlanDiscriminator? Type1788 { get; set; }
+ public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat? Type1788 { get; set; }
///
///
///
- public global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType? Type1789 { get; set; }
+ public global::Vapi.CustomCredential? Type1789 { get; set; }
///
///
///
- public global::Vapi.CustomCredentialEncryptionPlanDiscriminator? Type1790 { get; set; }
+ public global::Vapi.CustomCredentialProvider? Type1790 { get; set; }
///
///
///
- public global::Vapi.CustomCredentialEncryptionPlanDiscriminatorType? Type1791 { get; set; }
+ public global::Vapi.AuthenticationPlan5? Type1791 { get; set; }
///
///
///
- public global::Vapi.XAiCredential? Type1792 { get; set; }
+ public global::Vapi.CustomCredentialAuthenticationPlanDiscriminator? Type1792 { get; set; }
///
///
///
- public global::Vapi.XAiCredentialProvider? Type1793 { get; set; }
+ public global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType? Type1793 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarOAuth2ClientCredential? Type1794 { get; set; }
+ public global::Vapi.CustomCredentialEncryptionPlanDiscriminator? Type1794 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarOAuth2ClientCredentialProvider? Type1795 { get; set; }
+ public global::Vapi.CustomCredentialEncryptionPlanDiscriminatorType? Type1795 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarOAuth2AuthorizationCredential? Type1796 { get; set; }
+ public global::Vapi.XAiCredential? Type1796 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarOAuth2AuthorizationCredentialProvider? Type1797 { get; set; }
+ public global::Vapi.XAiCredentialProvider? Type1797 { get; set; }
///
///
///
- public global::Vapi.GoogleSheetsOAuth2AuthorizationCredential? Type1798 { get; set; }
+ public global::Vapi.GoogleCalendarOAuth2ClientCredential? Type1798 { get; set; }
///
///
///
- public global::Vapi.GoogleSheetsOAuth2AuthorizationCredentialProvider? Type1799 { get; set; }
+ public global::Vapi.GoogleCalendarOAuth2ClientCredentialProvider? Type1799 { get; set; }
///
///
///
- public global::Vapi.SlackOAuth2AuthorizationCredential? Type1800 { get; set; }
+ public global::Vapi.GoogleCalendarOAuth2AuthorizationCredential? Type1800 { get; set; }
///
///
///
- public global::Vapi.SlackOAuth2AuthorizationCredentialProvider? Type1801 { get; set; }
+ public global::Vapi.GoogleCalendarOAuth2AuthorizationCredentialProvider? Type1801 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelMCPCredential? Type1802 { get; set; }
+ public global::Vapi.GoogleSheetsOAuth2AuthorizationCredential? Type1802 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelMCPCredentialProvider? Type1803 { get; set; }
+ public global::Vapi.GoogleSheetsOAuth2AuthorizationCredentialProvider? Type1803 { get; set; }
///
///
///
- public global::Vapi.InworldCredential? Type1804 { get; set; }
+ public global::Vapi.SlackOAuth2AuthorizationCredential? Type1804 { get; set; }
///
///
///
- public global::Vapi.InworldCredentialProvider? Type1805 { get; set; }
+ public global::Vapi.SlackOAuth2AuthorizationCredentialProvider? Type1805 { get; set; }
///
///
///
- public global::Vapi.EmailCredential? Type1806 { get; set; }
+ public global::Vapi.GoHighLevelMCPCredential? Type1806 { get; set; }
///
///
///
- public global::Vapi.EmailCredentialProvider? Type1807 { get; set; }
+ public global::Vapi.GoHighLevelMCPCredentialProvider? Type1807 { get; set; }
///
///
///
- public global::Vapi.SlackWebhookCredential? Type1808 { get; set; }
+ public global::Vapi.InworldCredential? Type1808 { get; set; }
///
///
///
- public global::Vapi.SlackWebhookCredentialProvider? Type1809 { get; set; }
+ public global::Vapi.InworldCredentialProvider? Type1809 { get; set; }
///
///
///
- public global::Vapi.CreateCerebrasCredentialDTOProvider? Type1810 { get; set; }
+ public global::Vapi.EmailCredential? Type1810 { get; set; }
///
///
///
- public global::Vapi.CreateGoogleCredentialDTOProvider? Type1811 { get; set; }
+ public global::Vapi.EmailCredentialProvider? Type1811 { get; set; }
///
///
///
- public global::Vapi.CreateHumeCredentialDTOProvider? Type1812 { get; set; }
+ public global::Vapi.SlackWebhookCredential? Type1812 { get; set; }
///
///
///
- public global::Vapi.CreateInflectionAICredentialDTOProvider? Type1813 { get; set; }
+ public global::Vapi.SlackWebhookCredentialProvider? Type1813 { get; set; }
///
///
///
- public global::Vapi.CreateMicrosoftCredentialDTOProvider? Type1814 { get; set; }
+ public global::Vapi.CreateCerebrasCredentialDTOProvider? Type1814 { get; set; }
///
///
///
- public global::Vapi.CreateMistralCredentialDTOProvider? Type1815 { get; set; }
+ public global::Vapi.CreateGoogleCredentialDTOProvider? Type1815 { get; set; }
///
///
///
- public global::Vapi.CreateNeuphonicCredentialDTOProvider? Type1816 { get; set; }
+ public global::Vapi.CreateHumeCredentialDTOProvider? Type1816 { get; set; }
///
///
///
- public global::Vapi.CreateWellSaidCredentialDTOProvider? Type1817 { get; set; }
+ public global::Vapi.CreateInflectionAICredentialDTOProvider? Type1817 { get; set; }
///
///
///
- public global::Vapi.CreateSonioxCredentialDTOProvider? Type1818 { get; set; }
+ public global::Vapi.CreateMicrosoftCredentialDTOProvider? Type1818 { get; set; }
///
///
///
- public global::Vapi.CreateSpeechmaticsCredentialDTOProvider? Type1819 { get; set; }
+ public global::Vapi.CreateMistralCredentialDTOProvider? Type1819 { get; set; }
///
///
///
- public global::Vapi.CreateCustomCredentialDTOProvider? Type1820 { get; set; }
+ public global::Vapi.CreateNeuphonicCredentialDTOProvider? Type1820 { get; set; }
///
///
///
- public global::Vapi.AuthenticationPlan6? Type1821 { get; set; }
+ public global::Vapi.CreateWellSaidCredentialDTOProvider? Type1821 { get; set; }
///
///
///
- public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1822 { get; set; }
+ public global::Vapi.CreateSonioxCredentialDTOProvider? Type1822 { get; set; }
///
///
///
- public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1823 { get; set; }
+ public global::Vapi.CreateSpeechmaticsCredentialDTOProvider? Type1823 { get; set; }
///
///
///
- public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminator? Type1824 { get; set; }
+ public global::Vapi.CreateCustomCredentialDTOProvider? Type1824 { get; set; }
///
///
///
- public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1825 { get; set; }
+ public global::Vapi.AuthenticationPlan6? Type1825 { get; set; }
///
///
///
- public global::Vapi.CreateGoHighLevelMCPCredentialDTOProvider? Type1826 { get; set; }
+ public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1826 { get; set; }
///
///
///
- public global::Vapi.CreateInworldCredentialDTOProvider? Type1827 { get; set; }
+ public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1827 { get; set; }
///
///
///
- public global::Vapi.CreateEmailCredentialDTOProvider? Type1828 { get; set; }
+ public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminator? Type1828 { get; set; }
///
///
///
- public global::Vapi.CreateSlackWebhookCredentialDTOProvider? Type1829 { get; set; }
+ public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1829 { get; set; }
///
///
///
- public global::Vapi.UpdateAnthropicCredentialDTO? Type1830 { get; set; }
+ public global::Vapi.CreateGoHighLevelMCPCredentialDTOProvider? Type1830 { get; set; }
///
///
///
- public global::Vapi.UpdateAnthropicCredentialDTOProvider? Type1831 { get; set; }
+ public global::Vapi.CreateInworldCredentialDTOProvider? Type1831 { get; set; }
///
///
///
- public global::Vapi.UpdateAnthropicBedrockCredentialDTO? Type1832 { get; set; }
+ public global::Vapi.CreateEmailCredentialDTOProvider? Type1832 { get; set; }
///
///
///
- public global::Vapi.UpdateAnthropicBedrockCredentialDTOProvider? Type1833 { get; set; }
+ public global::Vapi.CreateSlackWebhookCredentialDTOProvider? Type1833 { get; set; }
///
///
///
- public global::Vapi.UpdateAnthropicBedrockCredentialDTORegion? Type1834 { get; set; }
+ public global::Vapi.UpdateAnthropicCredentialDTO? Type1834 { get; set; }
///
///
///
- public global::Vapi.UpdateAnyscaleCredentialDTO? Type1835 { get; set; }
+ public global::Vapi.UpdateAnthropicCredentialDTOProvider? Type1835 { get; set; }
///
///
///
- public global::Vapi.UpdateAnyscaleCredentialDTOProvider? Type1836 { get; set; }
+ public global::Vapi.UpdateAnthropicBedrockCredentialDTO? Type1836 { get; set; }
///
///
///
- public global::Vapi.UpdateAssemblyAICredentialDTO? Type1837 { get; set; }
+ public global::Vapi.UpdateAnthropicBedrockCredentialDTOProvider? Type1837 { get; set; }
///
///
///
- public global::Vapi.UpdateAssemblyAICredentialDTOProvider? Type1838 { get; set; }
+ public global::Vapi.UpdateAnthropicBedrockCredentialDTORegion? Type1838 { get; set; }
///
///
///
- public global::Vapi.UpdateAzureCredentialDTO? Type1839 { get; set; }
+ public global::Vapi.UpdateAnyscaleCredentialDTO? Type1839 { get; set; }
///
///
///
- public global::Vapi.UpdateAzureCredentialDTOProvider? Type1840 { get; set; }
+ public global::Vapi.UpdateAnyscaleCredentialDTOProvider? Type1840 { get; set; }
///
///
///
- public global::Vapi.UpdateAzureCredentialDTOService? Type1841 { get; set; }
+ public global::Vapi.UpdateAssemblyAICredentialDTO? Type1841 { get; set; }
///
///
///
- public global::Vapi.UpdateAzureCredentialDTORegion? Type1842 { get; set; }
+ public global::Vapi.UpdateAssemblyAICredentialDTOProvider? Type1842 { get; set; }
///
///
///
- public global::Vapi.UpdateAzureOpenAICredentialDTO? Type1843 { get; set; }
+ public global::Vapi.UpdateAzureCredentialDTO? Type1843 { get; set; }
///
///
///
- public global::Vapi.UpdateAzureOpenAICredentialDTOProvider? Type1844 { get; set; }
+ public global::Vapi.UpdateAzureCredentialDTOProvider? Type1844 { get; set; }
///
///
///
- public global::Vapi.UpdateAzureOpenAICredentialDTORegion? Type1845 { get; set; }
+ public global::Vapi.UpdateAzureCredentialDTOService? Type1845 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1846 { get; set; }
+ public global::Vapi.UpdateAzureCredentialDTORegion? Type1846 { get; set; }
///
///
///
- public global::Vapi.UpdateAzureOpenAICredentialDTOModel? Type1847 { get; set; }
+ public global::Vapi.UpdateAzureOpenAICredentialDTO? Type1847 { get; set; }
///
///
///
- public global::Vapi.UpdateByoSipTrunkCredentialDTO? Type1848 { get; set; }
+ public global::Vapi.UpdateAzureOpenAICredentialDTOProvider? Type1848 { get; set; }
///
///
///
- public global::Vapi.UpdateByoSipTrunkCredentialDTOProvider? Type1849 { get; set; }
+ public global::Vapi.UpdateAzureOpenAICredentialDTORegion? Type1849 { get; set; }
///
///
///
- public global::Vapi.UpdateCartesiaCredentialDTO? Type1850 { get; set; }
+ public global::System.Collections.Generic.IList? Type1850 { get; set; }
///
///
///
- public global::Vapi.UpdateCartesiaCredentialDTOProvider? Type1851 { get; set; }
+ public global::Vapi.UpdateAzureOpenAICredentialDTOModel? Type1851 { get; set; }
///
///
///
- public global::Vapi.UpdateCerebrasCredentialDTO? Type1852 { get; set; }
+ public global::Vapi.UpdateByoSipTrunkCredentialDTO? Type1852 { get; set; }
///
///
///
- public global::Vapi.UpdateCerebrasCredentialDTOProvider? Type1853 { get; set; }
+ public global::Vapi.UpdateByoSipTrunkCredentialDTOProvider? Type1853 { get; set; }
///
///
///
- public global::Vapi.UpdateCloudflareCredentialDTO? Type1854 { get; set; }
+ public global::Vapi.UpdateCartesiaCredentialDTO? Type1854 { get; set; }
///
///
///
- public global::Vapi.UpdateCloudflareCredentialDTOProvider? Type1855 { get; set; }
+ public global::Vapi.UpdateCartesiaCredentialDTOProvider? Type1855 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomLLMCredentialDTO? Type1856 { get; set; }
+ public global::Vapi.UpdateCerebrasCredentialDTO? Type1856 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomLLMCredentialDTOProvider? Type1857 { get; set; }
+ public global::Vapi.UpdateCerebrasCredentialDTOProvider? Type1857 { get; set; }
///
///
///
- public global::Vapi.UpdateDeepgramCredentialDTO? Type1858 { get; set; }
+ public global::Vapi.UpdateCloudflareCredentialDTO? Type1858 { get; set; }
///
///
///
- public global::Vapi.UpdateDeepgramCredentialDTOProvider? Type1859 { get; set; }
+ public global::Vapi.UpdateCloudflareCredentialDTOProvider? Type1859 { get; set; }
///
///
///
- public global::Vapi.UpdateDeepInfraCredentialDTO? Type1860 { get; set; }
+ public global::Vapi.UpdateCustomLLMCredentialDTO? Type1860 { get; set; }
///
///
///
- public global::Vapi.UpdateDeepInfraCredentialDTOProvider? Type1861 { get; set; }
+ public global::Vapi.UpdateCustomLLMCredentialDTOProvider? Type1861 { get; set; }
///
///
///
- public global::Vapi.UpdateDeepSeekCredentialDTO? Type1862 { get; set; }
+ public global::Vapi.UpdateDeepgramCredentialDTO? Type1862 { get; set; }
///
///
///
- public global::Vapi.UpdateDeepSeekCredentialDTOProvider? Type1863 { get; set; }
+ public global::Vapi.UpdateDeepgramCredentialDTOProvider? Type1863 { get; set; }
///
///
///
- public global::Vapi.UpdateElevenLabsCredentialDTO? Type1864 { get; set; }
+ public global::Vapi.UpdateDeepInfraCredentialDTO? Type1864 { get; set; }
///
///
///
- public global::Vapi.UpdateElevenLabsCredentialDTOProvider? Type1865 { get; set; }
+ public global::Vapi.UpdateDeepInfraCredentialDTOProvider? Type1865 { get; set; }
///
///
///
- public global::Vapi.UpdateElevenLabsCredentialDTOApiUrl? Type1866 { get; set; }
+ public global::Vapi.UpdateDeepSeekCredentialDTO? Type1866 { get; set; }
///
///
///
- public global::Vapi.UpdateGcpCredentialDTO? Type1867 { get; set; }
+ public global::Vapi.UpdateDeepSeekCredentialDTOProvider? Type1867 { get; set; }
///
///
///
- public global::Vapi.UpdateGcpCredentialDTOProvider? Type1868 { get; set; }
+ public global::Vapi.UpdateElevenLabsCredentialDTO? Type1868 { get; set; }
///
///
///
- public global::Vapi.UpdateGladiaCredentialDTO? Type1869 { get; set; }
+ public global::Vapi.UpdateElevenLabsCredentialDTOProvider? Type1869 { get; set; }
///
///
///
- public global::Vapi.UpdateGladiaCredentialDTOProvider? Type1870 { get; set; }
+ public global::Vapi.UpdateElevenLabsCredentialDTOApiUrl? Type1870 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelCredentialDTO? Type1871 { get; set; }
+ public global::Vapi.UpdateGcpCredentialDTO? Type1871 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelCredentialDTOProvider? Type1872 { get; set; }
+ public global::Vapi.UpdateGcpCredentialDTOProvider? Type1872 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCredentialDTO? Type1873 { get; set; }
+ public global::Vapi.UpdateGladiaCredentialDTO? Type1873 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCredentialDTOProvider? Type1874 { get; set; }
+ public global::Vapi.UpdateGladiaCredentialDTOProvider? Type1874 { get; set; }
///
///
///
- public global::Vapi.UpdateGroqCredentialDTO? Type1875 { get; set; }
+ public global::Vapi.UpdateGoHighLevelCredentialDTO? Type1875 { get; set; }
///
///
///
- public global::Vapi.UpdateGroqCredentialDTOProvider? Type1876 { get; set; }
+ public global::Vapi.UpdateGoHighLevelCredentialDTOProvider? Type1876 { get; set; }
///
///
///
- public global::Vapi.UpdateHumeCredentialDTO? Type1877 { get; set; }
+ public global::Vapi.UpdateGoogleCredentialDTO? Type1877 { get; set; }
///
///
///
- public global::Vapi.UpdateHumeCredentialDTOProvider? Type1878 { get; set; }
+ public global::Vapi.UpdateGoogleCredentialDTOProvider? Type1878 { get; set; }
///
///
///
- public global::Vapi.UpdateInflectionAICredentialDTO? Type1879 { get; set; }
+ public global::Vapi.UpdateGroqCredentialDTO? Type1879 { get; set; }
///
///
///
- public global::Vapi.UpdateInflectionAICredentialDTOProvider? Type1880 { get; set; }
+ public global::Vapi.UpdateGroqCredentialDTOProvider? Type1880 { get; set; }
///
///
///
- public global::Vapi.UpdateLangfuseCredentialDTO? Type1881 { get; set; }
+ public global::Vapi.UpdateHumeCredentialDTO? Type1881 { get; set; }
///
///
///
- public global::Vapi.UpdateLangfuseCredentialDTOProvider? Type1882 { get; set; }
+ public global::Vapi.UpdateHumeCredentialDTOProvider? Type1882 { get; set; }
///
///
///
- public global::Vapi.UpdateLmntCredentialDTO? Type1883 { get; set; }
+ public global::Vapi.UpdateInflectionAICredentialDTO? Type1883 { get; set; }
///
///
///
- public global::Vapi.UpdateLmntCredentialDTOProvider? Type1884 { get; set; }
+ public global::Vapi.UpdateInflectionAICredentialDTOProvider? Type1884 { get; set; }
///
///
///
- public global::Vapi.UpdateMakeCredentialDTO? Type1885 { get; set; }
+ public global::Vapi.UpdateLangfuseCredentialDTO? Type1885 { get; set; }
///
///
///
- public global::Vapi.UpdateMakeCredentialDTOProvider? Type1886 { get; set; }
+ public global::Vapi.UpdateLangfuseCredentialDTOProvider? Type1886 { get; set; }
///
///
///
- public global::Vapi.UpdateMicrosoftCredentialDTO? Type1887 { get; set; }
+ public global::Vapi.UpdateLmntCredentialDTO? Type1887 { get; set; }
///
///
///
- public global::Vapi.UpdateMicrosoftCredentialDTOProvider? Type1888 { get; set; }
+ public global::Vapi.UpdateLmntCredentialDTOProvider? Type1888 { get; set; }
///
///
///
- public global::Vapi.UpdateMistralCredentialDTO? Type1889 { get; set; }
+ public global::Vapi.UpdateMakeCredentialDTO? Type1889 { get; set; }
///
///
///
- public global::Vapi.UpdateMistralCredentialDTOProvider? Type1890 { get; set; }
+ public global::Vapi.UpdateMakeCredentialDTOProvider? Type1890 { get; set; }
///
///
///
- public global::Vapi.UpdateNeuphonicCredentialDTO? Type1891 { get; set; }
+ public global::Vapi.UpdateMicrosoftCredentialDTO? Type1891 { get; set; }
///
///
///
- public global::Vapi.UpdateNeuphonicCredentialDTOProvider? Type1892 { get; set; }
+ public global::Vapi.UpdateMicrosoftCredentialDTOProvider? Type1892 { get; set; }
///
///
///
- public global::Vapi.UpdateOpenAICredentialDTO? Type1893 { get; set; }
+ public global::Vapi.UpdateMistralCredentialDTO? Type1893 { get; set; }
///
///
///
- public global::Vapi.UpdateOpenAICredentialDTOProvider? Type1894 { get; set; }
+ public global::Vapi.UpdateMistralCredentialDTOProvider? Type1894 { get; set; }
///
///
///
- public global::Vapi.UpdateOpenRouterCredentialDTO? Type1895 { get; set; }
+ public global::Vapi.UpdateNeuphonicCredentialDTO? Type1895 { get; set; }
///
///
///
- public global::Vapi.UpdateOpenRouterCredentialDTOProvider? Type1896 { get; set; }
+ public global::Vapi.UpdateNeuphonicCredentialDTOProvider? Type1896 { get; set; }
///
///
///
- public global::Vapi.UpdatePerplexityAICredentialDTO? Type1897 { get; set; }
+ public global::Vapi.UpdateOpenAICredentialDTO? Type1897 { get; set; }
///
///
///
- public global::Vapi.UpdatePerplexityAICredentialDTOProvider? Type1898 { get; set; }
+ public global::Vapi.UpdateOpenAICredentialDTOProvider? Type1898 { get; set; }
///
///
///
- public global::Vapi.UpdatePlayHTCredentialDTO? Type1899 { get; set; }
+ public global::Vapi.UpdateOpenRouterCredentialDTO? Type1899 { get; set; }
///
///
///
- public global::Vapi.UpdatePlayHTCredentialDTOProvider? Type1900 { get; set; }
+ public global::Vapi.UpdateOpenRouterCredentialDTOProvider? Type1900 { get; set; }
///
///
///
- public global::Vapi.UpdateRimeAICredentialDTO? Type1901 { get; set; }
+ public global::Vapi.UpdatePerplexityAICredentialDTO? Type1901 { get; set; }
///
///
///
- public global::Vapi.UpdateRimeAICredentialDTOProvider? Type1902 { get; set; }
+ public global::Vapi.UpdatePerplexityAICredentialDTOProvider? Type1902 { get; set; }
///
///
///
- public global::Vapi.UpdateRunpodCredentialDTO? Type1903 { get; set; }
+ public global::Vapi.UpdatePlayHTCredentialDTO? Type1903 { get; set; }
///
///
///
- public global::Vapi.UpdateRunpodCredentialDTOProvider? Type1904 { get; set; }
+ public global::Vapi.UpdatePlayHTCredentialDTOProvider? Type1904 { get; set; }
///
///
///
- public global::Vapi.UpdateWellSaidCredentialDTO? Type1905 { get; set; }
+ public global::Vapi.UpdateRimeAICredentialDTO? Type1905 { get; set; }
///
///
///
- public global::Vapi.UpdateWellSaidCredentialDTOProvider? Type1906 { get; set; }
+ public global::Vapi.UpdateRimeAICredentialDTOProvider? Type1906 { get; set; }
///
///
///
- public global::Vapi.UpdateS3CredentialDTO? Type1907 { get; set; }
+ public global::Vapi.UpdateRunpodCredentialDTO? Type1907 { get; set; }
///
///
///
- public global::Vapi.UpdateS3CredentialDTOProvider? Type1908 { get; set; }
+ public global::Vapi.UpdateRunpodCredentialDTOProvider? Type1908 { get; set; }
///
///
///
- public global::Vapi.UpdateTogetherAICredentialDTO? Type1909 { get; set; }
+ public global::Vapi.UpdateWellSaidCredentialDTO? Type1909 { get; set; }
///
///
///
- public global::Vapi.UpdateTogetherAICredentialDTOProvider? Type1910 { get; set; }
+ public global::Vapi.UpdateWellSaidCredentialDTOProvider? Type1910 { get; set; }
///
///
///
- public global::Vapi.UpdateTwilioCredentialDTO? Type1911 { get; set; }
+ public global::Vapi.UpdateS3CredentialDTO? Type1911 { get; set; }
///
///
///
- public global::Vapi.UpdateTwilioCredentialDTOProvider? Type1912 { get; set; }
+ public global::Vapi.UpdateS3CredentialDTOProvider? Type1912 { get; set; }
///
///
///
- public global::Vapi.UpdateVonageCredentialDTO? Type1913 { get; set; }
+ public global::Vapi.UpdateTogetherAICredentialDTO? Type1913 { get; set; }
///
///
///
- public global::Vapi.UpdateVonageCredentialDTOProvider? Type1914 { get; set; }
+ public global::Vapi.UpdateTogetherAICredentialDTOProvider? Type1914 { get; set; }
///
///
///
- public global::Vapi.UpdateWebhookCredentialDTO? Type1915 { get; set; }
+ public global::Vapi.UpdateTwilioCredentialDTO? Type1915 { get; set; }
///
///
///
- public global::Vapi.UpdateWebhookCredentialDTOProvider? Type1916 { get; set; }
+ public global::Vapi.UpdateTwilioCredentialDTOProvider? Type1916 { get; set; }
///
///
///
- public global::Vapi.AuthenticationPlan8? Type1917 { get; set; }
+ public global::Vapi.UpdateVonageCredentialDTO? Type1917 { get; set; }
///
///
///
- public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type1918 { get; set; }
+ public global::Vapi.UpdateVonageCredentialDTOProvider? Type1918 { get; set; }
///
///
///
- public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type1919 { get; set; }
+ public global::Vapi.UpdateWebhookCredentialDTO? Type1919 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomCredentialDTO? Type1920 { get; set; }
+ public global::Vapi.UpdateWebhookCredentialDTOProvider? Type1920 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomCredentialDTOProvider? Type1921 { get; set; }
+ public global::Vapi.AuthenticationPlan8? Type1921 { get; set; }
///
///
///
- public global::Vapi.AuthenticationPlan9? Type1922 { get; set; }
+ public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type1922 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1923 { get; set; }
+ public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type1923 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1924 { get; set; }
+ public global::Vapi.UpdateCustomCredentialDTO? Type1924 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminator? Type1925 { get; set; }
+ public global::Vapi.UpdateCustomCredentialDTOProvider? Type1925 { get; set; }
///
///
///
- public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1926 { get; set; }
+ public global::Vapi.AuthenticationPlan9? Type1926 { get; set; }
///
///
///
- public global::Vapi.UpdateXAiCredentialDTO? Type1927 { get; set; }
+ public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1927 { get; set; }
///
///
///
- public global::Vapi.UpdateXAiCredentialDTOProvider? Type1928 { get; set; }
+ public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1928 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTO? Type1929 { get; set; }
+ public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminator? Type1929 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTOProvider? Type1930 { get; set; }
+ public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1930 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTO? Type1931 { get; set; }
+ public global::Vapi.UpdateXAiCredentialDTO? Type1931 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTOProvider? Type1932 { get; set; }
+ public global::Vapi.UpdateXAiCredentialDTOProvider? Type1932 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTO? Type1933 { get; set; }
+ public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTO? Type1933 { get; set; }
///
///
///
- public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTOProvider? Type1934 { get; set; }
+ public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTOProvider? Type1934 { get; set; }
///
///
///
- public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO? Type1935 { get; set; }
+ public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTO? Type1935 { get; set; }
///
///
///
- public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTOProvider? Type1936 { get; set; }
+ public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTOProvider? Type1936 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelMCPCredentialDTO? Type1937 { get; set; }
+ public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTO? Type1937 { get; set; }
///
///
///
- public global::Vapi.UpdateGoHighLevelMCPCredentialDTOProvider? Type1938 { get; set; }
+ public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTOProvider? Type1938 { get; set; }
///
///
///
- public global::Vapi.UpdateInworldCredentialDTO? Type1939 { get; set; }
+ public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO? Type1939 { get; set; }
///
///
///
- public global::Vapi.UpdateInworldCredentialDTOProvider? Type1940 { get; set; }
+ public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTOProvider? Type1940 { get; set; }
///
///
///
- public global::Vapi.UpdateEmailCredentialDTO? Type1941 { get; set; }
+ public global::Vapi.UpdateGoHighLevelMCPCredentialDTO? Type1941 { get; set; }
///
///
///
- public global::Vapi.UpdateEmailCredentialDTOProvider? Type1942 { get; set; }
+ public global::Vapi.UpdateGoHighLevelMCPCredentialDTOProvider? Type1942 { get; set; }
///
///
///
- public global::Vapi.UpdateSlackWebhookCredentialDTO? Type1943 { get; set; }
+ public global::Vapi.UpdateInworldCredentialDTO? Type1943 { get; set; }
///
///
///
- public global::Vapi.UpdateSlackWebhookCredentialDTOProvider? Type1944 { get; set; }
+ public global::Vapi.UpdateInworldCredentialDTOProvider? Type1944 { get; set; }
///
///
///
- public global::Vapi.UpdateSonioxCredentialDTO? Type1945 { get; set; }
+ public global::Vapi.UpdateEmailCredentialDTO? Type1945 { get; set; }
///
///
///
- public global::Vapi.UpdateSonioxCredentialDTOProvider? Type1946 { get; set; }
+ public global::Vapi.UpdateEmailCredentialDTOProvider? Type1946 { get; set; }
///
///
///
- public global::Vapi.CredentialSessionResponse? Type1947 { get; set; }
+ public global::Vapi.UpdateSlackWebhookCredentialDTO? Type1947 { get; set; }
///
///
///
- public global::Vapi.CredentialEndUser? Type1948 { get; set; }
+ public global::Vapi.UpdateSlackWebhookCredentialDTOProvider? Type1948 { get; set; }
///
///
///
- public global::Vapi.CredentialSessionError? Type1949 { get; set; }
+ public global::Vapi.UpdateSonioxCredentialDTO? Type1949 { get; set; }
///
///
///
- public global::Vapi.CredentialWebhookDTO? Type1950 { get; set; }
+ public global::Vapi.UpdateSonioxCredentialDTOProvider? Type1950 { get; set; }
///
///
///
- public global::Vapi.CredentialWebhookDTOType? Type1951 { get; set; }
+ public global::Vapi.CredentialSessionResponse? Type1951 { get; set; }
///
///
///
- public global::Vapi.CredentialWebhookDTOOperation? Type1952 { get; set; }
+ public global::Vapi.CredentialEndUser? Type1952 { get; set; }
///
///
///
- public global::Vapi.CredentialWebhookDTOAuthMode? Type1953 { get; set; }
+ public global::Vapi.CredentialSessionError? Type1953 { get; set; }
///
///
///
- public global::Vapi.CredentialActionRequest? Type1954 { get; set; }
+ public global::Vapi.CredentialWebhookDTO? Type1954 { get; set; }
///
///
///
- public global::Vapi.HMACAuthenticationPlanType? Type1955 { get; set; }
+ public global::Vapi.CredentialWebhookDTOType? Type1955 { get; set; }
///
///
///
- public global::Vapi.HMACAuthenticationPlanAlgorithm? Type1956 { get; set; }
+ public global::Vapi.CredentialWebhookDTOOperation? Type1956 { get; set; }
///
///
///
- public global::Vapi.HMACAuthenticationPlanSignatureEncoding? Type1957 { get; set; }
+ public global::Vapi.CredentialWebhookDTOAuthMode? Type1957 { get; set; }
///
///
///
- public global::Vapi.BearerAuthenticationPlanType? Type1958 { get; set; }
+ public global::Vapi.CredentialActionRequest? Type1958 { get; set; }
///
///
///
- public global::Vapi.AWSIAMCredentialsAuthenticationPlanType? Type1959 { get; set; }
+ public global::Vapi.HMACAuthenticationPlanType? Type1959 { get; set; }
///
///
///
- public global::Vapi.AWSStsAuthenticationPlanType? Type1960 { get; set; }
+ public global::Vapi.HMACAuthenticationPlanAlgorithm? Type1960 { get; set; }
///
///
///
- public global::Vapi.ToolTemplateSetup? Type1961 { get; set; }
+ public global::Vapi.HMACAuthenticationPlanSignatureEncoding? Type1961 { get; set; }
///
///
///
- public global::Vapi.MakeToolProviderDetails? Type1962 { get; set; }
+ public global::Vapi.BearerAuthenticationPlanType? Type1962 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1963 { get; set; }
+ public global::Vapi.AWSIAMCredentialsAuthenticationPlanType? Type1963 { get; set; }
///
///
///
- public global::Vapi.MakeToolProviderDetailsType? Type1964 { get; set; }
+ public global::Vapi.AWSStsAuthenticationPlanType? Type1964 { get; set; }
///
///
///
- public global::Vapi.GhlToolProviderDetails? Type1965 { get; set; }
+ public global::Vapi.ToolTemplateSetup? Type1965 { get; set; }
///
///
///
- public global::Vapi.GhlToolProviderDetailsType? Type1966 { get; set; }
+ public global::Vapi.MakeToolProviderDetails? Type1966 { get; set; }
///
///
///
- public global::Vapi.FunctionToolProviderDetails? Type1967 { get; set; }
+ public global::System.Collections.Generic.IList? Type1967 { get; set; }
///
///
///
- public global::Vapi.FunctionToolProviderDetailsType? Type1968 { get; set; }
+ public global::Vapi.MakeToolProviderDetailsType? Type1968 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarCreateEventToolProviderDetails? Type1969 { get; set; }
+ public global::Vapi.GhlToolProviderDetails? Type1969 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarCreateEventToolProviderDetailsType? Type1970 { get; set; }
+ public global::Vapi.GhlToolProviderDetailsType? Type1970 { get; set; }
///
///
///
- public global::Vapi.GoogleSheetsRowAppendToolProviderDetails? Type1971 { get; set; }
+ public global::Vapi.FunctionToolProviderDetails? Type1971 { get; set; }
///
///
///
- public global::Vapi.GoogleSheetsRowAppendToolProviderDetailsType? Type1972 { get; set; }
+ public global::Vapi.FunctionToolProviderDetailsType? Type1972 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetails? Type1973 { get; set; }
+ public global::Vapi.GoogleCalendarCreateEventToolProviderDetails? Type1973 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetailsType? Type1974 { get; set; }
+ public global::Vapi.GoogleCalendarCreateEventToolProviderDetailsType? Type1974 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetails? Type1975 { get; set; }
+ public global::Vapi.GoogleSheetsRowAppendToolProviderDetails? Type1975 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetailsType? Type1976 { get; set; }
+ public global::Vapi.GoogleSheetsRowAppendToolProviderDetailsType? Type1976 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactCreateToolProviderDetails? Type1977 { get; set; }
+ public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetails? Type1977 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactCreateToolProviderDetailsType? Type1978 { get; set; }
+ public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetailsType? Type1978 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactGetToolProviderDetails? Type1979 { get; set; }
+ public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetails? Type1979 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactGetToolProviderDetailsType? Type1980 { get; set; }
+ public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetailsType? Type1980 { get; set; }
///
///
///
- public global::Vapi.ToolTemplateMetadata? Type1981 { get; set; }
+ public global::Vapi.GoHighLevelContactCreateToolProviderDetails? Type1981 { get; set; }
///
///
///
- public global::Vapi.CreateToolTemplateDTO? Type1982 { get; set; }
+ public global::Vapi.GoHighLevelContactCreateToolProviderDetailsType? Type1982 { get; set; }
///
///
///
- public global::Vapi.CreateToolTemplateDTOVisibility? Type1983 { get; set; }
+ public global::Vapi.GoHighLevelContactGetToolProviderDetails? Type1983 { get; set; }
///
///
///
- public global::Vapi.CreateToolTemplateDTOType? Type1984 { get; set; }
+ public global::Vapi.GoHighLevelContactGetToolProviderDetailsType? Type1984 { get; set; }
///
///
///
- public global::Vapi.CreateToolTemplateDTOProvider? Type1985 { get; set; }
+ public global::Vapi.ToolTemplateMetadata? Type1985 { get; set; }
///
///
///
- public global::Vapi.Template? Type1986 { get; set; }
+ public global::Vapi.CreateToolTemplateDTO? Type1986 { get; set; }
///
///
///
- public global::Vapi.TemplateVisibility? Type1987 { get; set; }
+ public global::Vapi.CreateToolTemplateDTOVisibility? Type1987 { get; set; }
///
///
///
- public global::Vapi.TemplateType? Type1988 { get; set; }
+ public global::Vapi.CreateToolTemplateDTOType? Type1988 { get; set; }
///
///
///
- public global::Vapi.TemplateProvider? Type1989 { get; set; }
+ public global::Vapi.CreateToolTemplateDTOProvider? Type1989 { get; set; }
///
///
///
- public global::Vapi.UpdateToolTemplateDTO? Type1990 { get; set; }
+ public global::Vapi.Template? Type1990 { get; set; }
///
///
///
- public global::Vapi.UpdateToolTemplateDTOVisibility? Type1991 { get; set; }
+ public global::Vapi.TemplateVisibility? Type1991 { get; set; }
///
///
///
- public global::Vapi.UpdateToolTemplateDTOType? Type1992 { get; set; }
+ public global::Vapi.TemplateType? Type1992 { get; set; }
///
///
///
- public global::Vapi.UpdateToolTemplateDTOProvider? Type1993 { get; set; }
+ public global::Vapi.TemplateProvider? Type1993 { get; set; }
///
///
///
- public global::Vapi.VoiceLibrary? Type1994 { get; set; }
+ public global::Vapi.UpdateToolTemplateDTO? Type1994 { get; set; }
///
///
///
- public global::Vapi.VoiceLibraryGender? Type1995 { get; set; }
+ public global::Vapi.UpdateToolTemplateDTOVisibility? Type1995 { get; set; }
///
///
///
- public global::Vapi.SyncVoiceLibraryDTO? Type1996 { get; set; }
+ public global::Vapi.UpdateToolTemplateDTOType? Type1996 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type1997 { get; set; }
+ public global::Vapi.UpdateToolTemplateDTOProvider? Type1997 { get; set; }
///
///
///
- public global::Vapi.SyncVoiceLibraryDTOProvider? Type1998 { get; set; }
+ public global::Vapi.VoiceLibrary? Type1998 { get; set; }
///
///
///
- public global::Vapi.CreateSesameVoiceDTO? Type1999 { get; set; }
+ public global::Vapi.VoiceLibraryGender? Type1999 { get; set; }
///
///
///
- public global::Vapi.CartesiaPronunciationDictItem? Type2000 { get; set; }
+ public global::Vapi.SyncVoiceLibraryDTO? Type2000 { get; set; }
///
///
///
- public global::Vapi.CartesiaPronunciationDictionary? Type2001 { get; set; }
+ public global::System.Collections.Generic.IList? Type2001 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2002 { get; set; }
+ public global::Vapi.SyncVoiceLibraryDTOProvider? Type2002 { get; set; }
///
///
///
- public global::Vapi.ElevenLabsPronunciationDictionary? Type2003 { get; set; }
+ public global::Vapi.CreateSesameVoiceDTO? Type2003 { get; set; }
///
///
///
- public global::Vapi.ElevenLabsPronunciationDictionaryPermissionOnResource? Type2004 { get; set; }
+ public global::Vapi.CartesiaPronunciationDictItem? Type2004 { get; set; }
///
///
///
- public global::Vapi.ProviderResource? Type2005 { get; set; }
+ public global::Vapi.CartesiaPronunciationDictionary? Type2005 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceProvider? Type2006 { get; set; }
+ public global::System.Collections.Generic.IList? Type2006 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceResourceName? Type2007 { get; set; }
+ public global::Vapi.ElevenLabsPronunciationDictionary? Type2007 { get; set; }
///
///
///
- public global::Vapi.ProviderResourcePaginatedResponse? Type2008 { get; set; }
+ public global::Vapi.ElevenLabsPronunciationDictionaryPermissionOnResource? Type2008 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2009 { get; set; }
+ public global::Vapi.ProviderResource? Type2009 { get; set; }
///
///
///
- public global::Vapi.VoiceLibraryVoiceResponse? Type2010 { get; set; }
+ public global::Vapi.ProviderResourceProvider? Type2010 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type2011 { get; set; }
+ public global::Vapi.ProviderResourceResourceName? Type2011 { get; set; }
///
///
///
- public global::Vapi.AddVoiceToProviderDTO? Type2012 { get; set; }
+ public global::Vapi.ProviderResourcePaginatedResponse? Type2012 { get; set; }
///
///
///
- public global::Vapi.CloneVoiceDTO? Type2013 { get; set; }
+ public global::System.Collections.Generic.IList? Type2013 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2014 { get; set; }
+ public global::Vapi.VoiceLibraryVoiceResponse? Type2014 { get; set; }
///
///
///
- public global::Vapi.VariableValueGroupBy? Type2015 { get; set; }
+ public global::Vapi.OneOf? Type2015 { get; set; }
///
///
///
- public global::Vapi.TimeRange? Type2016 { get; set; }
+ public global::Vapi.AddVoiceToProviderDTO? Type2016 { get; set; }
///
///
///
- public global::Vapi.TimeRangeStep? Type2017 { get; set; }
+ public global::Vapi.CloneVoiceDTO? Type2017 { get; set; }
///
///
///
- public global::Vapi.AnalyticsOperation? Type2018 { get; set; }
+ public global::System.Collections.Generic.IList? Type2018 { get; set; }
///
///
///
- public global::Vapi.AnalyticsOperationOperation? Type2019 { get; set; }
+ public global::Vapi.VariableValueGroupBy? Type2019 { get; set; }
///
///
///
- public global::Vapi.AnalyticsOperationColumn? Type2020 { get; set; }
+ public global::Vapi.TimeRange? Type2020 { get; set; }
///
///
///
- public global::Vapi.AnalyticsQuery? Type2021 { get; set; }
+ public global::Vapi.TimeRangeStep? Type2021 { get; set; }
///
///
///
- public global::Vapi.AnalyticsQueryTable? Type2022 { get; set; }
+ public global::Vapi.AnalyticsOperation? Type2022 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2023 { get; set; }
+ public global::Vapi.AnalyticsOperationOperation? Type2023 { get; set; }
///
///
///
- public global::Vapi.AnalyticsQueryGroupByItem? Type2024 { get; set; }
+ public global::Vapi.AnalyticsOperationColumn? Type2024 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2025 { get; set; }
+ public global::Vapi.AnalyticsQuery? Type2025 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2026 { get; set; }
+ public global::Vapi.AnalyticsQueryTable? Type2026 { get; set; }
///
///
///
- public global::Vapi.AnalyticsQueryDTO? Type2027 { get; set; }
+ public global::System.Collections.Generic.IList? Type2027 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2028 { get; set; }
+ public global::Vapi.AnalyticsQueryGroupByItem? Type2028 { get; set; }
///
///
///
- public global::Vapi.AnalyticsQueryResult? Type2029 { get; set; }
+ public global::System.Collections.Generic.IList? Type2029 { get; set; }
///
///
///
- public global::Vapi.ClientMessageWorkflowNodeStarted? Type2030 { get; set; }
+ public global::System.Collections.Generic.IList? Type2030 { get; set; }
///
///
///
- public global::Vapi.ClientMessageWorkflowNodeStartedType? Type2031 { get; set; }
+ public global::Vapi.AnalyticsQueryDTO? Type2031 { get; set; }
///
///
///
- public global::Vapi.ClientMessageAssistantStarted? Type2032 { get; set; }
+ public global::System.Collections.Generic.IList? Type2032 { get; set; }
///
///
///
- public global::Vapi.ClientMessageAssistantStartedType? Type2033 { get; set; }
+ public global::Vapi.AnalyticsQueryResult? Type2033 { get; set; }
///
///
///
- public global::Vapi.ClientMessageConversationUpdate? Type2034 { get; set; }
+ public global::Vapi.ClientMessageWorkflowNodeStarted? Type2034 { get; set; }
///
///
///
- public global::Vapi.ClientMessageConversationUpdateType? Type2035 { get; set; }
+ public global::Vapi.ClientMessageWorkflowNodeStartedType? Type2035 { get; set; }
///
///
///
- public global::Vapi.ClientMessageHang? Type2036 { get; set; }
+ public global::Vapi.ClientMessageAssistantStarted? Type2036 { get; set; }
///
///
///
- public global::Vapi.ClientMessageHangType? Type2037 { get; set; }
+ public global::Vapi.ClientMessageAssistantStartedType? Type2037 { get; set; }
///
///
///
- public global::Vapi.ClientMessageMetadata? Type2038 { get; set; }
+ public global::Vapi.ClientMessageConversationUpdate? Type2038 { get; set; }
///
///
///
- public global::Vapi.ClientMessageMetadataType? Type2039 { get; set; }
+ public global::Vapi.ClientMessageConversationUpdateType? Type2039 { get; set; }
///
///
///
- public global::Vapi.ClientMessageModelOutput? Type2040 { get; set; }
+ public global::Vapi.ClientMessageHang? Type2040 { get; set; }
///
///
///
- public global::Vapi.ClientMessageModelOutputType? Type2041 { get; set; }
+ public global::Vapi.ClientMessageHangType? Type2041 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSpeechUpdate? Type2042 { get; set; }
+ public global::Vapi.ClientMessageMetadata? Type2042 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSpeechUpdateType? Type2043 { get; set; }
+ public global::Vapi.ClientMessageMetadataType? Type2043 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSpeechUpdateStatus? Type2044 { get; set; }
+ public global::Vapi.ClientMessageModelOutput? Type2044 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSpeechUpdateRole? Type2045 { get; set; }
+ public global::Vapi.ClientMessageModelOutputType? Type2045 { get; set; }
///
///
///
- public global::Vapi.ClientMessageTranscript? Type2046 { get; set; }
+ public global::Vapi.ClientMessageSpeechUpdate? Type2046 { get; set; }
///
///
///
- public global::Vapi.ClientMessageTranscriptType? Type2047 { get; set; }
+ public global::Vapi.ClientMessageSpeechUpdateType? Type2047 { get; set; }
///
///
///
- public global::Vapi.ClientMessageTranscriptRole? Type2048 { get; set; }
+ public global::Vapi.ClientMessageSpeechUpdateStatus? Type2048 { get; set; }
///
///
///
- public global::Vapi.ClientMessageTranscriptTranscriptType? Type2049 { get; set; }
+ public global::Vapi.ClientMessageSpeechUpdateRole? Type2049 { get; set; }
///
///
///
- public global::Vapi.ClientMessageToolCalls? Type2050 { get; set; }
+ public global::Vapi.ClientMessageTranscript? Type2050 { get; set; }
///
///
///
- public global::Vapi.ClientMessageToolCallsType? Type2051 { get; set; }
+ public global::Vapi.ClientMessageTranscriptType? Type2051 { get; set; }
///
///
///
- public global::Vapi.FunctionToolWithToolCall? Type2052 { get; set; }
+ public global::Vapi.ClientMessageTranscriptRole? Type2052 { get; set; }
///
///
///
- public global::Vapi.GhlToolWithToolCall? Type2053 { get; set; }
+ public global::Vapi.ClientMessageTranscriptTranscriptType? Type2053 { get; set; }
///
///
///
- public global::Vapi.MakeToolWithToolCall? Type2054 { get; set; }
+ public global::Vapi.ClientMessageToolCalls? Type2054 { get; set; }
///
///
///
- public global::Vapi.BashToolWithToolCall? Type2055 { get; set; }
+ public global::Vapi.ClientMessageToolCallsType? Type2055 { get; set; }
///
///
///
- public global::Vapi.ComputerToolWithToolCall? Type2056 { get; set; }
+ public global::Vapi.FunctionToolWithToolCall? Type2056 { get; set; }
///
///
///
- public global::Vapi.TextEditorToolWithToolCall? Type2057 { get; set; }
+ public global::Vapi.GhlToolWithToolCall? Type2057 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarCreateEventToolWithToolCall? Type2058 { get; set; }
+ public global::Vapi.MakeToolWithToolCall? Type2058 { get; set; }
///
///
///
- public global::Vapi.ClientMessageToolCallsResult? Type2059 { get; set; }
+ public global::Vapi.BashToolWithToolCall? Type2059 { get; set; }
///
///
///
- public global::Vapi.ClientMessageToolCallsResultType? Type2060 { get; set; }
+ public global::Vapi.ComputerToolWithToolCall? Type2060 { get; set; }
///
///
///
- public global::Vapi.ClientMessageTransferUpdate? Type2061 { get; set; }
+ public global::Vapi.TextEditorToolWithToolCall? Type2061 { get; set; }
///
///
///
- public global::Vapi.ClientMessageTransferUpdateType? Type2062 { get; set; }
+ public global::Vapi.GoogleCalendarCreateEventToolWithToolCall? Type2062 { get; set; }
///
///
///
- public global::Vapi.ClientMessageUserInterrupted? Type2063 { get; set; }
+ public global::Vapi.ClientMessageToolCallsResult? Type2063 { get; set; }
///
///
///
- public global::Vapi.ClientMessageUserInterruptedType? Type2064 { get; set; }
+ public global::Vapi.ClientMessageToolCallsResultType? Type2064 { get; set; }
///
///
///
- public global::Vapi.ClientMessageLanguageChangeDetected? Type2065 { get; set; }
+ public global::Vapi.ClientMessageTransferUpdate? Type2065 { get; set; }
///
///
///
- public global::Vapi.ClientMessageLanguageChangeDetectedType? Type2066 { get; set; }
+ public global::Vapi.ClientMessageTransferUpdateType? Type2066 { get; set; }
///
///
///
- public global::Vapi.ClientMessageVoiceInput? Type2067 { get; set; }
+ public global::Vapi.ClientMessageUserInterrupted? Type2067 { get; set; }
///
///
///
- public global::Vapi.ClientMessageVoiceInputType? Type2068 { get; set; }
+ public global::Vapi.ClientMessageUserInterruptedType? Type2068 { get; set; }
///
///
///
- public global::Vapi.ClientMessageAssistantSpeech? Type2069 { get; set; }
+ public global::Vapi.ClientMessageLanguageChangeDetected? Type2069 { get; set; }
///
///
///
- public global::Vapi.ClientMessageAssistantSpeechType? Type2070 { get; set; }
+ public global::Vapi.ClientMessageLanguageChangeDetectedType? Type2070 { get; set; }
///
///
///
- public global::Vapi.ClientMessageAssistantSpeechSource? Type2071 { get; set; }
+ public global::Vapi.ClientMessageVoiceInput? Type2071 { get; set; }
///
///
///
- public global::Vapi.Timing? Type2072 { get; set; }
+ public global::Vapi.ClientMessageVoiceInputType? Type2072 { get; set; }
///
///
///
- public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminator? Type2073 { get; set; }
+ public global::Vapi.ClientMessageAssistantSpeech? Type2073 { get; set; }
///
///
///
- public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminatorType? Type2074 { get; set; }
+ public global::Vapi.ClientMessageAssistantSpeechType? Type2074 { get; set; }
///
///
///
- public global::Vapi.ClientMessageChatCreated? Type2075 { get; set; }
+ public global::Vapi.ClientMessageAssistantSpeechSource? Type2075 { get; set; }
///
///
///
- public global::Vapi.ClientMessageChatCreatedType? Type2076 { get; set; }
+ public global::Vapi.Timing? Type2076 { get; set; }
///
///
///
- public global::Vapi.ClientMessageChatDeleted? Type2077 { get; set; }
+ public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminator? Type2077 { get; set; }
///
///
///
- public global::Vapi.ClientMessageChatDeletedType? Type2078 { get; set; }
+ public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminatorType? Type2078 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSessionCreated? Type2079 { get; set; }
+ public global::Vapi.ClientMessageChatCreated? Type2079 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSessionCreatedType? Type2080 { get; set; }
+ public global::Vapi.ClientMessageChatCreatedType? Type2080 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSessionUpdated? Type2081 { get; set; }
+ public global::Vapi.ClientMessageChatDeleted? Type2081 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSessionUpdatedType? Type2082 { get; set; }
+ public global::Vapi.ClientMessageChatDeletedType? Type2082 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSessionDeleted? Type2083 { get; set; }
+ public global::Vapi.ClientMessageSessionCreated? Type2083 { get; set; }
///
///
///
- public global::Vapi.ClientMessageSessionDeletedType? Type2084 { get; set; }
+ public global::Vapi.ClientMessageSessionCreatedType? Type2084 { get; set; }
///
///
///
- public global::Vapi.ClientMessageCallDeleted? Type2085 { get; set; }
+ public global::Vapi.ClientMessageSessionUpdated? Type2085 { get; set; }
///
///
///
- public global::Vapi.ClientMessageCallDeletedType? Type2086 { get; set; }
+ public global::Vapi.ClientMessageSessionUpdatedType? Type2086 { get; set; }
///
///
///
- public global::Vapi.ClientMessageCallDeleteFailed? Type2087 { get; set; }
+ public global::Vapi.ClientMessageSessionDeleted? Type2087 { get; set; }
///
///
///
- public global::Vapi.ClientMessageCallDeleteFailedType? Type2088 { get; set; }
+ public global::Vapi.ClientMessageSessionDeletedType? Type2088 { get; set; }
///
///
///
- public global::Vapi.ClientMessage? Type2089 { get; set; }
+ public global::Vapi.ClientMessageCallDeleted? Type2089 { get; set; }
///
///
///
- public global::Vapi.ServerMessageAssistantRequest? Type2090 { get; set; }
+ public global::Vapi.ClientMessageCallDeletedType? Type2090 { get; set; }
///
///
///
- public global::Vapi.ServerMessageAssistantRequestType? Type2091 { get; set; }
+ public global::Vapi.ClientMessageCallDeleteFailed? Type2091 { get; set; }
///
///
///
- public global::Vapi.ServerMessageConversationUpdate? Type2092 { get; set; }
+ public global::Vapi.ClientMessageCallDeleteFailedType? Type2092 { get; set; }
///
///
///
- public global::Vapi.ServerMessageConversationUpdateType? Type2093 { get; set; }
+ public global::Vapi.ClientMessage? Type2093 { get; set; }
///
///
///
- public global::Vapi.ServerMessageEndOfCallReport? Type2094 { get; set; }
+ public global::Vapi.ServerMessageAssistantRequest? Type2094 { get; set; }
///
///
///
- public global::Vapi.ServerMessageEndOfCallReportType? Type2095 { get; set; }
+ public global::Vapi.ServerMessageAssistantRequestType? Type2095 { get; set; }
///
///
///
- public global::Vapi.ServerMessageEndOfCallReportEndedReason? Type2096 { get; set; }
+ public global::Vapi.ServerMessageConversationUpdate? Type2096 { get; set; }
///
///
///
- public global::Vapi.ServerMessageHandoffDestinationRequest? Type2097 { get; set; }
+ public global::Vapi.ServerMessageConversationUpdateType? Type2097 { get; set; }
///
///
///
- public global::Vapi.ServerMessageHandoffDestinationRequestType? Type2098 { get; set; }
+ public global::Vapi.ServerMessageEndOfCallReport? Type2098 { get; set; }
///
///
///
- public global::Vapi.ServerMessageHang? Type2099 { get; set; }
+ public global::Vapi.ServerMessageEndOfCallReportType? Type2099 { get; set; }
///
///
///
- public global::Vapi.ServerMessageHangType? Type2100 { get; set; }
+ public global::Vapi.ServerMessageEndOfCallReportEndedReason? Type2100 { get; set; }
///
///
///
- public global::Vapi.ServerMessageKnowledgeBaseRequest? Type2101 { get; set; }
+ public global::Vapi.ServerMessageHandoffDestinationRequest? Type2101 { get; set; }
///
///
///
- public global::Vapi.ServerMessageKnowledgeBaseRequestType? Type2102 { get; set; }
+ public global::Vapi.ServerMessageHandoffDestinationRequestType? Type2102 { get; set; }
///
///
///
- public global::Vapi.ServerMessageModelOutput? Type2103 { get; set; }
+ public global::Vapi.ServerMessageHang? Type2103 { get; set; }
///
///
///
- public global::Vapi.ServerMessageModelOutputType? Type2104 { get; set; }
+ public global::Vapi.ServerMessageHangType? Type2104 { get; set; }
///
///
///
- public global::Vapi.ServerMessagePhoneCallControl? Type2105 { get; set; }
+ public global::Vapi.ServerMessageKnowledgeBaseRequest? Type2105 { get; set; }
///
///
///
- public global::Vapi.ServerMessagePhoneCallControlType? Type2106 { get; set; }
+ public global::Vapi.ServerMessageKnowledgeBaseRequestType? Type2106 { get; set; }
///
///
///
- public global::Vapi.ServerMessagePhoneCallControlRequest? Type2107 { get; set; }
+ public global::Vapi.ServerMessageModelOutput? Type2107 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSpeechUpdate? Type2108 { get; set; }
+ public global::Vapi.ServerMessageModelOutputType? Type2108 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSpeechUpdateType? Type2109 { get; set; }
+ public global::Vapi.ServerMessagePhoneCallControl? Type2109 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSpeechUpdateStatus? Type2110 { get; set; }
+ public global::Vapi.ServerMessagePhoneCallControlType? Type2110 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSpeechUpdateRole? Type2111 { get; set; }
+ public global::Vapi.ServerMessagePhoneCallControlRequest? Type2111 { get; set; }
///
///
///
- public global::Vapi.ServerMessageStatusUpdate? Type2112 { get; set; }
+ public global::Vapi.ServerMessageSpeechUpdate? Type2112 { get; set; }
///
///
///
- public global::Vapi.ServerMessageStatusUpdateType? Type2113 { get; set; }
+ public global::Vapi.ServerMessageSpeechUpdateType? Type2113 { get; set; }
///
///
///
- public global::Vapi.ServerMessageStatusUpdateStatus? Type2114 { get; set; }
+ public global::Vapi.ServerMessageSpeechUpdateStatus? Type2114 { get; set; }
///
///
///
- public global::Vapi.ServerMessageStatusUpdateEndedReason? Type2115 { get; set; }
+ public global::Vapi.ServerMessageSpeechUpdateRole? Type2115 { get; set; }
///
///
///
- public global::Vapi.ServerMessageToolCalls? Type2116 { get; set; }
+ public global::Vapi.ServerMessageStatusUpdate? Type2116 { get; set; }
///
///
///
- public global::Vapi.ServerMessageToolCallsType? Type2117 { get; set; }
+ public global::Vapi.ServerMessageStatusUpdateType? Type2117 { get; set; }
///
///
///
- public global::Vapi.ServerMessageTransferDestinationRequest? Type2118 { get; set; }
+ public global::Vapi.ServerMessageStatusUpdateStatus? Type2118 { get; set; }
///
///
///
- public global::Vapi.ServerMessageTransferDestinationRequestType? Type2119 { get; set; }
+ public global::Vapi.ServerMessageStatusUpdateEndedReason? Type2119 { get; set; }
///
///
///
- public global::Vapi.ServerMessageTransferUpdate? Type2120 { get; set; }
+ public global::Vapi.ServerMessageToolCalls? Type2120 { get; set; }
///
///
///
- public global::Vapi.ServerMessageTransferUpdateType? Type2121 { get; set; }
+ public global::Vapi.ServerMessageToolCallsType? Type2121 { get; set; }
///
///
///
- public global::Vapi.ServerMessageTranscript? Type2122 { get; set; }
+ public global::Vapi.ServerMessageTransferDestinationRequest? Type2122 { get; set; }
///
///
///
- public global::Vapi.ServerMessageTranscriptType? Type2123 { get; set; }
+ public global::Vapi.ServerMessageTransferDestinationRequestType? Type2123 { get; set; }
///
///
///
- public global::Vapi.ServerMessageTranscriptRole? Type2124 { get; set; }
+ public global::Vapi.ServerMessageTransferUpdate? Type2124 { get; set; }
///
///
///
- public global::Vapi.ServerMessageTranscriptTranscriptType? Type2125 { get; set; }
+ public global::Vapi.ServerMessageTransferUpdateType? Type2125 { get; set; }
///
///
///
- public global::Vapi.ServerMessageUserInterrupted? Type2126 { get; set; }
+ public global::Vapi.ServerMessageTranscript? Type2126 { get; set; }
///
///
///
- public global::Vapi.ServerMessageUserInterruptedType? Type2127 { get; set; }
+ public global::Vapi.ServerMessageTranscriptType? Type2127 { get; set; }
///
///
///
- public global::Vapi.ServerMessageLanguageChangeDetected? Type2128 { get; set; }
+ public global::Vapi.ServerMessageTranscriptRole? Type2128 { get; set; }
///
///
///
- public global::Vapi.ServerMessageLanguageChangeDetectedType? Type2129 { get; set; }
+ public global::Vapi.ServerMessageTranscriptTranscriptType? Type2129 { get; set; }
///
///
///
- public global::Vapi.ServerMessageVoiceInput? Type2130 { get; set; }
+ public global::Vapi.ServerMessageUserInterrupted? Type2130 { get; set; }
///
///
///
- public global::Vapi.ServerMessageVoiceInputType? Type2131 { get; set; }
+ public global::Vapi.ServerMessageUserInterruptedType? Type2131 { get; set; }
///
///
///
- public global::Vapi.ServerMessageAssistantSpeech? Type2132 { get; set; }
+ public global::Vapi.ServerMessageLanguageChangeDetected? Type2132 { get; set; }
///
///
///
- public global::Vapi.ServerMessageAssistantSpeechType? Type2133 { get; set; }
+ public global::Vapi.ServerMessageLanguageChangeDetectedType? Type2133 { get; set; }
///
///
///
- public global::Vapi.ServerMessageAssistantSpeechSource? Type2134 { get; set; }
+ public global::Vapi.ServerMessageVoiceInput? Type2134 { get; set; }
///
///
///
- public global::Vapi.Timing2? Type2135 { get; set; }
+ public global::Vapi.ServerMessageVoiceInputType? Type2135 { get; set; }
///
///
///
- public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminator? Type2136 { get; set; }
+ public global::Vapi.ServerMessageAssistantSpeech? Type2136 { get; set; }
///
///
///
- public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminatorType? Type2137 { get; set; }
+ public global::Vapi.ServerMessageAssistantSpeechType? Type2137 { get; set; }
///
///
///
- public global::Vapi.ServerMessageVoiceRequest? Type2138 { get; set; }
+ public global::Vapi.ServerMessageAssistantSpeechSource? Type2138 { get; set; }
///
///
///
- public global::Vapi.ServerMessageVoiceRequestType? Type2139 { get; set; }
+ public global::Vapi.Timing2? Type2139 { get; set; }
///
///
///
- public global::Vapi.ServerMessageCallEndpointingRequest? Type2140 { get; set; }
+ public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminator? Type2140 { get; set; }
///
///
///
- public global::Vapi.ServerMessageCallEndpointingRequestType? Type2141 { get; set; }
+ public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminatorType? Type2141 { get; set; }
///
///
///
- public global::Vapi.ServerMessageChatCreated? Type2142 { get; set; }
+ public global::Vapi.ServerMessageVoiceRequest? Type2142 { get; set; }
///
///
///
- public global::Vapi.ServerMessageChatCreatedType? Type2143 { get; set; }
+ public global::Vapi.ServerMessageVoiceRequestType? Type2143 { get; set; }
///
///
///
- public global::Vapi.ServerMessageChatDeleted? Type2144 { get; set; }
+ public global::Vapi.ServerMessageCallEndpointingRequest? Type2144 { get; set; }
///
///
///
- public global::Vapi.ServerMessageChatDeletedType? Type2145 { get; set; }
+ public global::Vapi.ServerMessageCallEndpointingRequestType? Type2145 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSessionCreated? Type2146 { get; set; }
+ public global::Vapi.ServerMessageChatCreated? Type2146 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSessionCreatedType? Type2147 { get; set; }
+ public global::Vapi.ServerMessageChatCreatedType? Type2147 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSessionUpdated? Type2148 { get; set; }
+ public global::Vapi.ServerMessageChatDeleted? Type2148 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSessionUpdatedType? Type2149 { get; set; }
+ public global::Vapi.ServerMessageChatDeletedType? Type2149 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSessionDeleted? Type2150 { get; set; }
+ public global::Vapi.ServerMessageSessionCreated? Type2150 { get; set; }
///
///
///
- public global::Vapi.ServerMessageSessionDeletedType? Type2151 { get; set; }
+ public global::Vapi.ServerMessageSessionCreatedType? Type2151 { get; set; }
///
///
///
- public global::Vapi.ServerMessageCallDeleted? Type2152 { get; set; }
+ public global::Vapi.ServerMessageSessionUpdated? Type2152 { get; set; }
///
///
///
- public global::Vapi.ServerMessageCallDeletedType? Type2153 { get; set; }
+ public global::Vapi.ServerMessageSessionUpdatedType? Type2153 { get; set; }
///
///
///
- public global::Vapi.ServerMessageCallDeleteFailed? Type2154 { get; set; }
+ public global::Vapi.ServerMessageSessionDeleted? Type2154 { get; set; }
///
///
///
- public global::Vapi.ServerMessageCallDeleteFailedType? Type2155 { get; set; }
+ public global::Vapi.ServerMessageSessionDeletedType? Type2155 { get; set; }
///
///
///
- public global::Vapi.CampaignContact? Type2156 { get; set; }
+ public global::Vapi.ServerMessageCallDeleted? Type2156 { get; set; }
///
///
///
- public global::Vapi.ServerMessageCampaignPredial? Type2157 { get; set; }
+ public global::Vapi.ServerMessageCallDeletedType? Type2157 { get; set; }
///
///
///
- public global::Vapi.ServerMessageCampaignPredialType? Type2158 { get; set; }
+ public global::Vapi.ServerMessageCallDeleteFailed? Type2158 { get; set; }
///
///
///
- public global::Vapi.ServerMessage? Type2159 { get; set; }
+ public global::Vapi.ServerMessageCallDeleteFailedType? Type2159 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponseAssistantRequest? Type2160 { get; set; }
+ public global::Vapi.CampaignContact? Type2160 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponseHandoffDestinationRequest? Type2161 { get; set; }
+ public global::Vapi.ServerMessageCampaignPredial? Type2161 { get; set; }
///
///
///
- public global::Vapi.KnowledgeBaseResponseDocument? Type2162 { get; set; }
+ public global::Vapi.ServerMessageCampaignPredialType? Type2162 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponseKnowledgeBaseRequest? Type2163 { get; set; }
+ public global::Vapi.ServerMessage? Type2163 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2164 { get; set; }
+ public global::Vapi.ServerMessageResponseAssistantRequest? Type2164 { get; set; }
///
///
///
- public global::Vapi.ToolCallResult? Type2165 { get; set; }
+ public global::Vapi.ServerMessageResponseHandoffDestinationRequest? Type2165 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type2166 { get; set; }
+ public global::Vapi.KnowledgeBaseResponseDocument? Type2166 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponseToolCalls? Type2167 { get; set; }
+ public global::Vapi.ServerMessageResponseKnowledgeBaseRequest? Type2167 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2168 { get; set; }
+ public global::System.Collections.Generic.IList? Type2168 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponseTransferDestinationRequest? Type2169 { get; set; }
+ public global::Vapi.ToolCallResult? Type2169 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponseVoiceRequest? Type2170 { get; set; }
+ public global::Vapi.OneOf? Type2170 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponseCallEndpointingRequest? Type2171 { get; set; }
+ public global::Vapi.ServerMessageResponseToolCalls? Type2171 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponseCampaignPredial? Type2172 { get; set; }
+ public global::System.Collections.Generic.IList? Type2172 { get; set; }
///
///
///
- public global::Vapi.ServerMessageResponse? Type2173 { get; set; }
+ public global::Vapi.ServerMessageResponseTransferDestinationRequest? Type2173 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageAddMessage? Type2174 { get; set; }
+ public global::Vapi.ServerMessageResponseVoiceRequest? Type2174 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageAddMessageType? Type2175 { get; set; }
+ public global::Vapi.ServerMessageResponseCallEndpointingRequest? Type2175 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageControl? Type2176 { get; set; }
+ public global::Vapi.ServerMessageResponseCampaignPredial? Type2176 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageControlType? Type2177 { get; set; }
+ public global::Vapi.ServerMessageResponse? Type2177 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageControlControl? Type2178 { get; set; }
+ public global::Vapi.ClientInboundMessageAddMessage? Type2178 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageSay? Type2179 { get; set; }
+ public global::Vapi.ClientInboundMessageAddMessageType? Type2179 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageSayType? Type2180 { get; set; }
+ public global::Vapi.ClientInboundMessageControl? Type2180 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageEndCall? Type2181 { get; set; }
+ public global::Vapi.ClientInboundMessageControlType? Type2181 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageEndCallType? Type2182 { get; set; }
+ public global::Vapi.ClientInboundMessageControlControl? Type2182 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageTransfer? Type2183 { get; set; }
+ public global::Vapi.ClientInboundMessageSay? Type2183 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageTransferType? Type2184 { get; set; }
+ public global::Vapi.ClientInboundMessageSayType? Type2184 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageSendTransportMessage? Type2185 { get; set; }
+ public global::Vapi.ClientInboundMessageEndCall? Type2185 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessageSendTransportMessageType? Type2186 { get; set; }
+ public global::Vapi.ClientInboundMessageEndCallType? Type2186 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type2187 { get; set; }
+ public global::Vapi.ClientInboundMessageTransfer? Type2187 { get; set; }
///
///
///
- public global::Vapi.VapiSipTransportMessage? Type2188 { get; set; }
+ public global::Vapi.ClientInboundMessageTransferType? Type2188 { get; set; }
///
///
///
- public global::Vapi.TwilioTransportMessage? Type2189 { get; set; }
+ public global::Vapi.ClientInboundMessageSendTransportMessage? Type2189 { get; set; }
///
///
///
- public global::Vapi.ClientInboundMessage? Type2190 { get; set; }
+ public global::Vapi.ClientInboundMessageSendTransportMessageType? Type2190 { get; set; }
///
///
///
- public global::Vapi.KnowledgeBaseCostType? Type2191 { get; set; }
+ public global::Vapi.OneOf? Type2191 { get; set; }
///
///
///
- public global::Vapi.SessionCostType? Type2192 { get; set; }
+ public global::Vapi.VapiSipTransportMessage? Type2192 { get; set; }
///
///
///
- public global::Vapi.FunctionToolWithToolCallType? Type2193 { get; set; }
+ public global::Vapi.TwilioTransportMessage? Type2193 { get; set; }
///
///
///
- public global::Vapi.GhlToolWithToolCallType? Type2194 { get; set; }
+ public global::Vapi.ClientInboundMessage? Type2194 { get; set; }
///
///
///
- public global::Vapi.MakeToolWithToolCallType? Type2195 { get; set; }
+ public global::Vapi.KnowledgeBaseCostType? Type2195 { get; set; }
///
///
///
- public global::Vapi.BashToolWithToolCallType? Type2196 { get; set; }
+ public global::Vapi.SessionCostType? Type2196 { get; set; }
///
///
///
- public global::Vapi.BashToolWithToolCallSubType? Type2197 { get; set; }
+ public global::Vapi.FunctionToolWithToolCallType? Type2197 { get; set; }
///
///
///
- public global::Vapi.BashToolWithToolCallName? Type2198 { get; set; }
+ public global::Vapi.GhlToolWithToolCallType? Type2198 { get; set; }
///
///
///
- public global::Vapi.ComputerToolWithToolCallType? Type2199 { get; set; }
+ public global::Vapi.MakeToolWithToolCallType? Type2199 { get; set; }
///
///
///
- public global::Vapi.ComputerToolWithToolCallSubType? Type2200 { get; set; }
+ public global::Vapi.BashToolWithToolCallType? Type2200 { get; set; }
///
///
///
- public global::Vapi.ComputerToolWithToolCallName? Type2201 { get; set; }
+ public global::Vapi.BashToolWithToolCallSubType? Type2201 { get; set; }
///
///
///
- public global::Vapi.TextEditorToolWithToolCallType? Type2202 { get; set; }
+ public global::Vapi.BashToolWithToolCallName? Type2202 { get; set; }
///
///
///
- public global::Vapi.TextEditorToolWithToolCallSubType? Type2203 { get; set; }
+ public global::Vapi.ComputerToolWithToolCallType? Type2203 { get; set; }
///
///
///
- public global::Vapi.TextEditorToolWithToolCallName? Type2204 { get; set; }
+ public global::Vapi.ComputerToolWithToolCallSubType? Type2204 { get; set; }
///
///
///
- public global::Vapi.GoogleCalendarCreateEventToolWithToolCallType? Type2205 { get; set; }
+ public global::Vapi.ComputerToolWithToolCallName? Type2205 { get; set; }
///
///
///
- public global::Vapi.GoogleSheetsRowAppendToolWithToolCall? Type2206 { get; set; }
+ public global::Vapi.TextEditorToolWithToolCallType? Type2206 { get; set; }
///
///
///
- public global::Vapi.GoogleSheetsRowAppendToolWithToolCallType? Type2207 { get; set; }
+ public global::Vapi.TextEditorToolWithToolCallSubType? Type2207 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCall? Type2208 { get; set; }
+ public global::Vapi.TextEditorToolWithToolCallName? Type2208 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCallType? Type2209 { get; set; }
+ public global::Vapi.GoogleCalendarCreateEventToolWithToolCallType? Type2209 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCall? Type2210 { get; set; }
+ public global::Vapi.GoogleSheetsRowAppendToolWithToolCall? Type2210 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCallType? Type2211 { get; set; }
+ public global::Vapi.GoogleSheetsRowAppendToolWithToolCallType? Type2211 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactCreateToolWithToolCall? Type2212 { get; set; }
+ public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCall? Type2212 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactCreateToolWithToolCallType? Type2213 { get; set; }
+ public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCallType? Type2213 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactGetToolWithToolCall? Type2214 { get; set; }
+ public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCall? Type2214 { get; set; }
///
///
///
- public global::Vapi.GoHighLevelContactGetToolWithToolCallType? Type2215 { get; set; }
+ public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCallType? Type2215 { get; set; }
///
///
///
- public global::Vapi.VapiSipTransportMessageTransport? Type2216 { get; set; }
+ public global::Vapi.GoHighLevelContactCreateToolWithToolCall? Type2216 { get; set; }
///
///
///
- public global::Vapi.VapiSipTransportMessageSipVerb? Type2217 { get; set; }
+ public global::Vapi.GoHighLevelContactCreateToolWithToolCallType? Type2217 { get; set; }
///
///
///
- public global::Vapi.TwilioTransportMessageTransport? Type2218 { get; set; }
+ public global::Vapi.GoHighLevelContactGetToolWithToolCall? Type2218 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerCreateRequest? Type2219 { get; set; }
+ public global::Vapi.GoHighLevelContactGetToolWithToolCallType? Type2219 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerCreateRequestDiscriminator? Type2220 { get; set; }
+ public global::Vapi.VapiSipTransportMessageTransport? Type2220 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerCreateRequestDiscriminatorProvider? Type2221 { get; set; }
+ public global::Vapi.VapiSipTransportMessageSipVerb? Type2221 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerUpdateRequest? Type2222 { get; set; }
+ public global::Vapi.TwilioTransportMessageTransport? Type2222 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminator? Type2223 { get; set; }
+ public global::Vapi.PhoneNumberControllerCreateRequest? Type2223 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminatorProvider? Type2224 { get; set; }
+ public global::Vapi.PhoneNumberControllerCreateRequestDiscriminator? Type2224 { get; set; }
///
///
///
- public global::Vapi.ToolControllerCreateRequest? Type2225 { get; set; }
+ public global::Vapi.PhoneNumberControllerCreateRequestDiscriminatorProvider? Type2225 { get; set; }
///
///
///
- public global::Vapi.ToolControllerCreateRequestDiscriminator? Type2226 { get; set; }
+ public global::Vapi.PhoneNumberControllerUpdateRequest? Type2226 { get; set; }
///
///
///
- public global::Vapi.ToolControllerCreateRequestDiscriminatorType? Type2227 { get; set; }
+ public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminator? Type2227 { get; set; }
///
///
///
- public global::Vapi.ToolControllerUpdateRequest? Type2228 { get; set; }
+ public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminatorProvider? Type2228 { get; set; }
///
///
///
- public global::Vapi.ToolControllerUpdateRequestDiscriminator? Type2229 { get; set; }
+ public global::Vapi.ToolControllerCreateRequest? Type2229 { get; set; }
///
///
///
- public global::Vapi.ToolControllerUpdateRequestDiscriminatorType? Type2230 { get; set; }
+ public global::Vapi.ToolControllerCreateRequestDiscriminator? Type2230 { get; set; }
///
///
///
- public global::Vapi.InsightControllerCreateRequest? Type2231 { get; set; }
+ public global::Vapi.ToolControllerCreateRequestDiscriminatorType? Type2231 { get; set; }
///
///
///
- public global::Vapi.InsightControllerCreateRequestDiscriminator? Type2232 { get; set; }
+ public global::Vapi.ToolControllerUpdateRequest? Type2232 { get; set; }
///
///
///
- public global::Vapi.InsightControllerCreateRequestDiscriminatorType? Type2233 { get; set; }
+ public global::Vapi.ToolControllerUpdateRequestDiscriminator? Type2233 { get; set; }
///
///
///
- public global::Vapi.InsightControllerUpdateRequest? Type2234 { get; set; }
+ public global::Vapi.ToolControllerUpdateRequestDiscriminatorType? Type2234 { get; set; }
///
///
///
- public global::Vapi.InsightControllerUpdateRequestDiscriminator? Type2235 { get; set; }
+ public global::Vapi.InsightControllerCreateRequest? Type2235 { get; set; }
///
///
///
- public global::Vapi.InsightControllerUpdateRequestDiscriminatorType? Type2236 { get; set; }
+ public global::Vapi.InsightControllerCreateRequestDiscriminator? Type2236 { get; set; }
///
///
///
- public global::Vapi.InsightControllerPreviewRequest? Type2237 { get; set; }
+ public global::Vapi.InsightControllerCreateRequestDiscriminatorType? Type2237 { get; set; }
///
///
///
- public global::Vapi.InsightControllerPreviewRequestDiscriminator? Type2238 { get; set; }
+ public global::Vapi.InsightControllerUpdateRequest? Type2238 { get; set; }
///
///
///
- public global::Vapi.InsightControllerPreviewRequestDiscriminatorType? Type2239 { get; set; }
+ public global::Vapi.InsightControllerUpdateRequestDiscriminator? Type2239 { get; set; }
///
///
///
- public global::Vapi.ChatControllerListChatsSortOrder? Type2240 { get; set; }
+ public global::Vapi.InsightControllerUpdateRequestDiscriminatorType? Type2240 { get; set; }
///
///
///
- public global::Vapi.ChatControllerListChatsSortBy? Type2241 { get; set; }
+ public global::Vapi.InsightControllerPreviewRequest? Type2241 { get; set; }
///
///
///
- public global::Vapi.CampaignControllerFindAllStatus? Type2242 { get; set; }
+ public global::Vapi.InsightControllerPreviewRequestDiscriminator? Type2242 { get; set; }
///
///
///
- public global::Vapi.CampaignControllerFindAllSortOrder? Type2243 { get; set; }
+ public global::Vapi.InsightControllerPreviewRequestDiscriminatorType? Type2243 { get; set; }
///
///
///
- public global::Vapi.CampaignControllerFindAllSortBy? Type2244 { get; set; }
+ public global::Vapi.ChatControllerListChatsSortOrder? Type2244 { get; set; }
///
///
///
- public global::Vapi.CampaignControllerFindAllV2Status? Type2245 { get; set; }
+ public global::Vapi.ChatControllerListChatsSortBy? Type2245 { get; set; }
///
///
///
- public global::Vapi.CampaignControllerFindAllV2SortOrder? Type2246 { get; set; }
+ public global::Vapi.CampaignControllerFindAllStatus? Type2246 { get; set; }
///
///
///
- public global::Vapi.CampaignControllerFindAllV2SortBy? Type2247 { get; set; }
+ public global::Vapi.CampaignControllerFindAllSortOrder? Type2247 { get; set; }
///
///
///
- public global::Vapi.SessionControllerFindAllPaginatedSortOrder? Type2248 { get; set; }
+ public global::Vapi.CampaignControllerFindAllSortBy? Type2248 { get; set; }
///
///
///
- public global::Vapi.SessionControllerFindAllPaginatedSortBy? Type2249 { get; set; }
+ public global::Vapi.CampaignControllerFindAllV2Status? Type2249 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerFindAllPaginatedSortOrder? Type2250 { get; set; }
+ public global::Vapi.CampaignControllerFindAllV2SortOrder? Type2250 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy? Type2251 { get; set; }
+ public global::Vapi.CampaignControllerFindAllV2SortBy? Type2251 { get; set; }
///
///
///
- public global::Vapi.StructuredOutputControllerFindAllSortOrder? Type2252 { get; set; }
+ public global::Vapi.SessionControllerFindAllPaginatedSortOrder? Type2252 { get; set; }
///
///
///
- public global::Vapi.StructuredOutputControllerFindAllSortBy? Type2253 { get; set; }
+ public global::Vapi.SessionControllerFindAllPaginatedSortBy? Type2253 { get; set; }
///
///
///
- public global::Vapi.InsightControllerFindAllSortOrder? Type2254 { get; set; }
+ public global::Vapi.PhoneNumberControllerFindAllPaginatedSortOrder? Type2254 { get; set; }
///
///
///
- public global::Vapi.InsightControllerFindAllSortBy? Type2255 { get; set; }
+ public global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy? Type2255 { get; set; }
///
///
///
- public global::Vapi.EvalControllerGetPaginatedSortOrder? Type2256 { get; set; }
+ public global::Vapi.StructuredOutputControllerFindAllSortOrder? Type2256 { get; set; }
///
///
///
- public global::Vapi.EvalControllerGetPaginatedSortBy? Type2257 { get; set; }
+ public global::Vapi.StructuredOutputControllerFindAllSortBy? Type2257 { get; set; }
///
///
///
- public global::Vapi.EvalControllerGetRunsPaginatedSortOrder? Type2258 { get; set; }
+ public global::Vapi.InsightControllerFindAllSortOrder? Type2258 { get; set; }
///
///
///
- public global::Vapi.EvalControllerGetRunsPaginatedSortBy? Type2259 { get; set; }
+ public global::Vapi.InsightControllerFindAllSortBy? Type2259 { get; set; }
///
///
///
- public global::Vapi.ScorecardControllerGetPaginatedSortOrder? Type2260 { get; set; }
+ public global::Vapi.EvalControllerGetPaginatedSortOrder? Type2260 { get; set; }
///
///
///
- public global::Vapi.ScorecardControllerGetPaginatedSortBy? Type2261 { get; set; }
+ public global::Vapi.EvalControllerGetPaginatedSortBy? Type2261 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerCreateProviderResourceProvider? Type2262 { get; set; }
+ public global::Vapi.EvalControllerGetRunsPaginatedSortOrder? Type2262 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerCreateProviderResourceResourceName? Type2263 { get; set; }
+ public global::Vapi.EvalControllerGetRunsPaginatedSortBy? Type2263 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedProvider? Type2264 { get; set; }
+ public global::Vapi.ScorecardControllerGetPaginatedSortOrder? Type2264 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedResourceName? Type2265 { get; set; }
+ public global::Vapi.ScorecardControllerGetPaginatedSortBy? Type2265 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortOrder? Type2266 { get; set; }
+ public global::Vapi.ProviderResourceControllerCreateProviderResourceProvider? Type2266 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortBy? Type2267 { get; set; }
+ public global::Vapi.ProviderResourceControllerCreateProviderResourceResourceName? Type2267 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerGetProviderResourceProvider? Type2268 { get; set; }
+ public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedProvider? Type2268 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerGetProviderResourceResourceName? Type2269 { get; set; }
+ public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedResourceName? Type2269 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerDeleteProviderResourceProvider? Type2270 { get; set; }
+ public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortOrder? Type2270 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerDeleteProviderResourceResourceName? Type2271 { get; set; }
+ public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortBy? Type2271 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider? Type2272 { get; set; }
+ public global::Vapi.ProviderResourceControllerGetProviderResourceProvider? Type2272 { get; set; }
///
///
///
- public global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName? Type2273 { get; set; }
+ public global::Vapi.ProviderResourceControllerGetProviderResourceResourceName? Type2273 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2274 { get; set; }
+ public global::Vapi.ProviderResourceControllerDeleteProviderResourceProvider? Type2274 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type2275 { get; set; }
+ public global::Vapi.ProviderResourceControllerDeleteProviderResourceResourceName? Type2275 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type2276 { get; set; }
+ public global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider? Type2276 { get; set; }
///
///
///
- public global::Vapi.OneOf? Type2277 { get; set; }
+ public global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName? Type2277 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerCreateResponse? Type2278 { get; set; }
+ public global::System.Collections.Generic.IList? Type2278 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerCreateResponseDiscriminator? Type2279 { get; set; }
+ public global::Vapi.OneOf? Type2279 { get; set; }
///
///
///
- public global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider? Type2280 { get; set; }
+ public global::Vapi.OneOf? Type2280 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type2281 { get; set; }
+ public global::Vapi.OneOf? Type2281 { get; set; }
///