From 0337ea6208f092b679f8a0f36b3c783608a77ddd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 18 Jun 2026 04:44:08 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- ....CreateElevenLabsCredentialDTOBaseUrl.g.cs | 53 + ...levenLabsCredentialDTOBaseUrlNullable.g.cs | 60 + ...onverters.ElevenLabsCredentialBaseUrl.g.cs | 53 + ...s.ElevenLabsCredentialBaseUrlNullable.g.cs | 60 + ....UpdateElevenLabsCredentialDTOBaseUrl.g.cs | 53 + ...levenLabsCredentialDTOBaseUrlNullable.g.cs | 60 + .../Generated/Vapi.JsonSerializerContext.g.cs | 95 +- .../Vapi.JsonSerializerContextTypes.g.cs | 2868 +++++++++-------- ....Models.CreateElevenLabsCredentialDTO.g.cs | 14 + ....CreateElevenLabsCredentialDTOBaseUrl.g.cs | 52 + ...i.Models.CreateMicrosoftCredentialDTO.g.cs | 4 +- .../Vapi.Models.ElevenLabsCredential.g.cs | 14 + ...pi.Models.ElevenLabsCredentialBaseUrl.g.cs | 52 + .../Vapi.Models.EvalGoogleModelModel.g.cs | 12 + ...Models.FallbackGoogleTranscriberModel.g.cs | 12 + .../Vapi.Models.FallbackMicrosoftVoice.g.cs | 16 +- ...pi.Models.FallbackMicrosoftVoiceStyle.g.cs | 142 +- ....Models.FallbackMicrosoftVoiceVoiceId.g.cs | 280 +- .../Vapi.Models.GoogleModelModel.g.cs | 12 + .../Vapi.Models.GoogleTranscriberModel.g.cs | 12 + .../Vapi.Models.KnowledgeBaseModel.g.cs | 12 + .../Vapi.Models.MicrosoftCredential.g.cs | 4 +- .../Generated/Vapi.Models.MicrosoftVoice.g.cs | 16 +- .../Vapi.Models.MicrosoftVoiceStyle.g.cs | 142 +- .../Vapi.Models.MicrosoftVoiceVoiceId.g.cs | 280 +- ....Models.UpdateElevenLabsCredentialDTO.g.cs | 14 + ....UpdateElevenLabsCredentialDTOBaseUrl.g.cs | 52 + ...i.Models.UpdateMicrosoftCredentialDTO.g.cs | 4 +- .../Vapi.Models.WorkflowGoogleModelModel.g.cs | 12 + src/libs/Vapi/openapi.yaml | 259 +- 30 files changed, 2975 insertions(+), 1744 deletions(-) create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrl.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullable.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.ElevenLabsCredentialBaseUrl.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullable.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrl.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullable.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTOBaseUrl.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredentialBaseUrl.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTOBaseUrl.g.cs diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrl.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrl.g.cs new file mode 100644 index 00000000..1caa93d8 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrl.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class CreateElevenLabsCredentialDTOBaseUrlJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.CreateElevenLabsCredentialDTOBaseUrl 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.CreateElevenLabsCredentialDTOBaseUrlExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.CreateElevenLabsCredentialDTOBaseUrl)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.CreateElevenLabsCredentialDTOBaseUrl); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.CreateElevenLabsCredentialDTOBaseUrl value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Vapi.CreateElevenLabsCredentialDTOBaseUrlExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullable.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullable.g.cs new file mode 100644 index 00000000..3c908902 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class CreateElevenLabsCredentialDTOBaseUrlNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.CreateElevenLabsCredentialDTOBaseUrl? 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.CreateElevenLabsCredentialDTOBaseUrlExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.CreateElevenLabsCredentialDTOBaseUrl)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.CreateElevenLabsCredentialDTOBaseUrl?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.CreateElevenLabsCredentialDTOBaseUrl? 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.CreateElevenLabsCredentialDTOBaseUrlExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.ElevenLabsCredentialBaseUrl.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.ElevenLabsCredentialBaseUrl.g.cs new file mode 100644 index 00000000..ee761203 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.ElevenLabsCredentialBaseUrl.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class ElevenLabsCredentialBaseUrlJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.ElevenLabsCredentialBaseUrl 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.ElevenLabsCredentialBaseUrlExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.ElevenLabsCredentialBaseUrl)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.ElevenLabsCredentialBaseUrl); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.ElevenLabsCredentialBaseUrl value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Vapi.ElevenLabsCredentialBaseUrlExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullable.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullable.g.cs new file mode 100644 index 00000000..cf744ea4 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class ElevenLabsCredentialBaseUrlNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.ElevenLabsCredentialBaseUrl? 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.ElevenLabsCredentialBaseUrlExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.ElevenLabsCredentialBaseUrl)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.ElevenLabsCredentialBaseUrl?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.ElevenLabsCredentialBaseUrl? 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.ElevenLabsCredentialBaseUrlExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrl.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrl.g.cs new file mode 100644 index 00000000..7b6337d9 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrl.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class UpdateElevenLabsCredentialDTOBaseUrlJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl 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.UpdateElevenLabsCredentialDTOBaseUrlExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Vapi.UpdateElevenLabsCredentialDTOBaseUrlExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullable.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullable.g.cs new file mode 100644 index 00000000..3d1137cf --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class UpdateElevenLabsCredentialDTOBaseUrlNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl? 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.UpdateElevenLabsCredentialDTOBaseUrlExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl? 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.UpdateElevenLabsCredentialDTOBaseUrlExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs b/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs index e9f69ccc..1a1b1f9b 100644 --- a/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs +++ b/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs @@ -1561,6 +1561,10 @@ namespace Vapi typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderJsonConverter), typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderNullableJsonConverter), @@ -3089,6 +3093,10 @@ namespace Vapi typeof(global::Vapi.JsonConverters.ElevenLabsCredentialProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.GcpCredentialProviderJsonConverter), typeof(global::Vapi.JsonConverters.GcpCredentialProviderNullableJsonConverter), @@ -3365,6 +3373,10 @@ namespace Vapi typeof(global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTOModelNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeJsonConverter), typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeNullableJsonConverter), @@ -7110,6 +7122,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderJsonConverter), typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderNullableJsonConverter), @@ -8638,6 +8654,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Vapi.JsonConverters.ElevenLabsCredentialProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.GcpCredentialProviderJsonConverter), typeof(global::Vapi.JsonConverters.GcpCredentialProviderNullableJsonConverter), @@ -8914,6 +8934,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTOModelNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeJsonConverter), typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeNullableJsonConverter), @@ -11057,6 +11081,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateDeepInfraCredentialDTOProvider), TypeInfoPropertyName = "CreateDeepInfraCredentialDTOProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateDeepSeekCredentialDTOProvider), TypeInfoPropertyName = "CreateDeepSeekCredentialDTOProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateElevenLabsCredentialDTOProvider), TypeInfoPropertyName = "CreateElevenLabsCredentialDTOProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateElevenLabsCredentialDTOBaseUrl), TypeInfoPropertyName = "CreateElevenLabsCredentialDTOBaseUrl2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GcpKey))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.BucketPlan))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateGcpCredentialDTOProvider), TypeInfoPropertyName = "CreateGcpCredentialDTOProvider2")] @@ -11099,7 +11124,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SessionCreatedHookOn), TypeInfoPropertyName = "SessionCreatedHookOn2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SQLInjectionSecurityFilter))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SQLInjectionSecurityFilterType), TypeInfoPropertyName = "SQLInjectionSecurityFilterType2")] internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -12659,6 +12683,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderJsonConverter), typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderNullableJsonConverter), @@ -14187,6 +14215,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Vapi.JsonConverters.ElevenLabsCredentialProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.GcpCredentialProviderJsonConverter), typeof(global::Vapi.JsonConverters.GcpCredentialProviderNullableJsonConverter), @@ -14463,6 +14495,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTOModelNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeJsonConverter), typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeNullableJsonConverter), @@ -16226,6 +16262,7 @@ internal sealed partial class SourceGenerationContextChunk1 : 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.SQLInjectionSecurityFilterType), TypeInfoPropertyName = "SQLInjectionSecurityFilterType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.XSSSecurityFilter))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.XSSSecurityFilterType), TypeInfoPropertyName = "XSSSecurityFilterType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.SSRFSecurityFilter))] @@ -16648,7 +16685,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateComputerToolDTOType), TypeInfoPropertyName = "CreateComputerToolDTOType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateComputerToolDTOSubType), TypeInfoPropertyName = "CreateComputerToolDTOSubType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateComputerToolDTOName), TypeInfoPropertyName = "CreateComputerToolDTOName2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateTextEditorToolDTOType), TypeInfoPropertyName = "CreateTextEditorToolDTOType2")] internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -18208,6 +18244,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderJsonConverter), typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderNullableJsonConverter), @@ -19736,6 +19776,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Vapi.JsonConverters.ElevenLabsCredentialProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.GcpCredentialProviderJsonConverter), typeof(global::Vapi.JsonConverters.GcpCredentialProviderNullableJsonConverter), @@ -20012,6 +20056,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTOModelNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeJsonConverter), typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeNullableJsonConverter), @@ -21775,6 +21823,7 @@ 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.CreateTextEditorToolDTOType), TypeInfoPropertyName = "CreateTextEditorToolDTOType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateTextEditorToolDTOSubType), TypeInfoPropertyName = "CreateTextEditorToolDTOSubType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateTextEditorToolDTOName), TypeInfoPropertyName = "CreateTextEditorToolDTOName2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateSmsToolDTOType), TypeInfoPropertyName = "CreateSmsToolDTOType2")] @@ -22189,6 +22238,7 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.DeepSeekCredentialProvider), TypeInfoPropertyName = "DeepSeekCredentialProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ElevenLabsCredential))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ElevenLabsCredentialProvider), TypeInfoPropertyName = "ElevenLabsCredentialProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ElevenLabsCredentialBaseUrl), TypeInfoPropertyName = "ElevenLabsCredentialBaseUrl2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GcpCredential))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GcpCredentialProvider), TypeInfoPropertyName = "GcpCredentialProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GladiaCredential))] @@ -22196,8 +22246,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GoHighLevelCredential))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GoHighLevelCredentialProvider), TypeInfoPropertyName = "GoHighLevelCredentialProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GoogleCredential))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GoogleCredentialProvider), TypeInfoPropertyName = "GoogleCredentialProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GroqCredential))] internal sealed partial class SourceGenerationContextChunk3 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -23757,6 +23805,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderJsonConverter), typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderNullableJsonConverter), @@ -25285,6 +25337,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::Vapi.JsonConverters.ElevenLabsCredentialProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.GcpCredentialProviderJsonConverter), typeof(global::Vapi.JsonConverters.GcpCredentialProviderNullableJsonConverter), @@ -25561,6 +25617,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTOModelNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeJsonConverter), typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeNullableJsonConverter), @@ -27324,6 +27384,8 @@ 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.GoogleCredentialProvider), TypeInfoPropertyName = "GoogleCredentialProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GroqCredential))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GroqCredentialProvider), TypeInfoPropertyName = "GroqCredentialProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.HumeCredential))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.HumeCredentialProvider), TypeInfoPropertyName = "HumeCredentialProvider2")] @@ -27451,6 +27513,7 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateDeepInfraCredentialDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateDeepSeekCredentialDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateElevenLabsCredentialDTO))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl), TypeInfoPropertyName = "UpdateElevenLabsCredentialDTOBaseUrl2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateGcpCredentialDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateGladiaCredentialDTO))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateGoHighLevelCredentialDTO))] @@ -27744,9 +27807,6 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.BashToolWithToolCallSubType), TypeInfoPropertyName = "BashToolWithToolCallSubType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.BashToolWithToolCallName), TypeInfoPropertyName = "BashToolWithToolCallName2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ComputerToolWithToolCallType), TypeInfoPropertyName = "ComputerToolWithToolCallType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ComputerToolWithToolCallSubType), TypeInfoPropertyName = "ComputerToolWithToolCallSubType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ComputerToolWithToolCallName), TypeInfoPropertyName = "ComputerToolWithToolCallName2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TextEditorToolWithToolCallType), TypeInfoPropertyName = "TextEditorToolWithToolCallType2")] internal sealed partial class SourceGenerationContextChunk4 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -29306,6 +29366,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderJsonConverter), typeof(global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderNullableJsonConverter), @@ -30834,6 +30898,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::Vapi.JsonConverters.ElevenLabsCredentialProviderNullableJsonConverter), + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.GcpCredentialProviderJsonConverter), typeof(global::Vapi.JsonConverters.GcpCredentialProviderNullableJsonConverter), @@ -31110,6 +31178,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTOModelNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlJsonConverter), + + typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullableJsonConverter), + typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeJsonConverter), typeof(global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeNullableJsonConverter), @@ -32873,6 +32945,9 @@ 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.ComputerToolWithToolCallSubType), TypeInfoPropertyName = "ComputerToolWithToolCallSubType2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ComputerToolWithToolCallName), TypeInfoPropertyName = "ComputerToolWithToolCallName2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TextEditorToolWithToolCallType), TypeInfoPropertyName = "TextEditorToolWithToolCallType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TextEditorToolWithToolCallSubType), TypeInfoPropertyName = "TextEditorToolWithToolCallSubType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TextEditorToolWithToolCallName), TypeInfoPropertyName = "TextEditorToolWithToolCallName2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.GoogleCalendarCreateEventToolWithToolCallType), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCallType2")] @@ -33955,6 +34030,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Vapi.JsonConverters.CreateDeepSeekCredentialDTOProviderNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOProviderJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOProviderNullableJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.CreateGcpCredentialDTOProviderNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.CreateGladiaCredentialDTOProviderJsonConverter()); @@ -34719,6 +34796,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Vapi.JsonConverters.DeepSeekCredentialProviderNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.ElevenLabsCredentialProviderJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.ElevenLabsCredentialProviderNullableJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.GcpCredentialProviderJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.GcpCredentialProviderNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.GladiaCredentialProviderJsonConverter()); @@ -34857,6 +34936,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTORegionNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTOModelJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.UpdateAzureOpenAICredentialDTOModelNullableJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorTypeNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorTypeJsonConverter()); diff --git a/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs b/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs index 4166dd00..490f8365 100644 --- a/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs +++ b/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs @@ -3232,5715 +3232,5727 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Vapi.GcpKey? Type801 { get; set; } + public global::Vapi.CreateElevenLabsCredentialDTOBaseUrl? Type801 { get; set; } /// /// /// - public global::Vapi.BucketPlan? Type802 { get; set; } + public global::Vapi.GcpKey? Type802 { get; set; } /// /// /// - public global::Vapi.CreateGcpCredentialDTOProvider? Type803 { get; set; } + public global::Vapi.BucketPlan? Type803 { get; set; } /// /// /// - public global::Vapi.CreateGladiaCredentialDTOProvider? Type804 { get; set; } + public global::Vapi.CreateGcpCredentialDTOProvider? Type804 { get; set; } /// /// /// - public global::Vapi.CreateGoHighLevelCredentialDTOProvider? Type805 { get; set; } + public global::Vapi.CreateGladiaCredentialDTOProvider? Type805 { get; set; } /// /// /// - public global::Vapi.CreateGroqCredentialDTOProvider? Type806 { get; set; } + public global::Vapi.CreateGoHighLevelCredentialDTOProvider? Type806 { get; set; } /// /// /// - public global::Vapi.CreateLangfuseCredentialDTOProvider? Type807 { get; set; } + public global::Vapi.CreateGroqCredentialDTOProvider? Type807 { get; set; } /// /// /// - public global::Vapi.CreateLmntCredentialDTOProvider? Type808 { get; set; } + public global::Vapi.CreateLangfuseCredentialDTOProvider? Type808 { get; set; } /// /// /// - public global::Vapi.CreateMakeCredentialDTOProvider? Type809 { get; set; } + public global::Vapi.CreateLmntCredentialDTOProvider? Type809 { get; set; } /// /// /// - public global::Vapi.CreateOpenAICredentialDTOProvider? Type810 { get; set; } + public global::Vapi.CreateMakeCredentialDTOProvider? Type810 { get; set; } /// /// /// - public global::Vapi.CreateOpenRouterCredentialDTOProvider? Type811 { get; set; } + public global::Vapi.CreateOpenAICredentialDTOProvider? Type811 { get; set; } /// /// /// - public global::Vapi.CreatePerplexityAICredentialDTOProvider? Type812 { get; set; } + public global::Vapi.CreateOpenRouterCredentialDTOProvider? Type812 { get; set; } /// /// /// - public global::Vapi.CreatePlayHTCredentialDTOProvider? Type813 { get; set; } + public global::Vapi.CreatePerplexityAICredentialDTOProvider? Type813 { get; set; } /// /// /// - public global::Vapi.CreateRimeAICredentialDTOProvider? Type814 { get; set; } + public global::Vapi.CreatePlayHTCredentialDTOProvider? Type814 { get; set; } /// /// /// - public global::Vapi.CreateRunpodCredentialDTOProvider? Type815 { get; set; } + public global::Vapi.CreateRimeAICredentialDTOProvider? Type815 { get; set; } /// /// /// - public global::Vapi.CreateS3CredentialDTOProvider? Type816 { get; set; } + public global::Vapi.CreateRunpodCredentialDTOProvider? Type816 { get; set; } /// /// /// - public global::Vapi.SupabaseBucketPlan? Type817 { get; set; } + public global::Vapi.CreateS3CredentialDTOProvider? Type817 { get; set; } /// /// /// - public global::Vapi.SupabaseBucketPlanRegion? Type818 { get; set; } + public global::Vapi.SupabaseBucketPlan? Type818 { get; set; } /// /// /// - public global::Vapi.CreateSupabaseCredentialDTOProvider? Type819 { get; set; } + public global::Vapi.SupabaseBucketPlanRegion? Type819 { get; set; } /// /// /// - public global::Vapi.CreateSmallestAICredentialDTOProvider? Type820 { get; set; } + public global::Vapi.CreateSupabaseCredentialDTOProvider? Type820 { get; set; } /// /// /// - public global::Vapi.CreateTavusCredentialDTOProvider? Type821 { get; set; } + public global::Vapi.CreateSmallestAICredentialDTOProvider? Type821 { get; set; } /// /// /// - public global::Vapi.CreateTogetherAICredentialDTOProvider? Type822 { get; set; } + public global::Vapi.CreateTavusCredentialDTOProvider? Type822 { get; set; } /// /// /// - public global::Vapi.CreateTwilioCredentialDTOProvider? Type823 { get; set; } + public global::Vapi.CreateTogetherAICredentialDTOProvider? Type823 { get; set; } /// /// /// - public global::Vapi.CreateVonageCredentialDTOProvider? Type824 { get; set; } + public global::Vapi.CreateTwilioCredentialDTOProvider? Type824 { get; set; } /// /// /// - public global::Vapi.CreateWebhookCredentialDTOProvider? Type825 { get; set; } + public global::Vapi.CreateVonageCredentialDTOProvider? Type825 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan2? Type826 { get; set; } + public global::Vapi.CreateWebhookCredentialDTOProvider? Type826 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlan? Type827 { get; set; } + public global::Vapi.AuthenticationPlan2? Type827 { get; set; } /// /// /// - public global::Vapi.BearerAuthenticationPlan? Type828 { get; set; } + public global::Vapi.HMACAuthenticationPlan? Type828 { get; set; } /// /// /// - public global::Vapi.CreateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type829 { get; set; } + public global::Vapi.BearerAuthenticationPlan? Type829 { get; set; } /// /// /// - public global::Vapi.CreateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type830 { get; set; } + public global::Vapi.CreateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type830 { get; set; } /// /// /// - public global::Vapi.CreateXAiCredentialDTOProvider? Type831 { get; set; } + public global::Vapi.CreateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type831 { get; set; } /// /// /// - public global::Vapi.CreateGoogleCalendarOAuth2ClientCredentialDTOProvider? Type832 { get; set; } + public global::Vapi.CreateXAiCredentialDTOProvider? Type832 { get; set; } /// /// /// - public global::Vapi.CreateGoogleCalendarOAuth2AuthorizationCredentialDTOProvider? Type833 { get; set; } + public global::Vapi.CreateGoogleCalendarOAuth2ClientCredentialDTOProvider? Type833 { get; set; } /// /// /// - public global::Vapi.CreateGoogleSheetsOAuth2AuthorizationCredentialDTOProvider? Type834 { get; set; } + public global::Vapi.CreateGoogleCalendarOAuth2AuthorizationCredentialDTOProvider? Type834 { get; set; } /// /// /// - public global::Vapi.CreateSlackOAuth2AuthorizationCredentialDTOProvider? Type835 { get; set; } + public global::Vapi.CreateGoogleSheetsOAuth2AuthorizationCredentialDTOProvider? Type835 { get; set; } /// /// /// - public global::Vapi.CreateMinimaxCredentialDTOProvider? Type836 { get; set; } + public global::Vapi.CreateSlackOAuth2AuthorizationCredentialDTOProvider? Type836 { get; set; } /// /// /// - public global::Vapi.EndpointedSpeechLowConfidenceOptions? Type837 { get; set; } + public global::Vapi.CreateMinimaxCredentialDTOProvider? Type837 { get; set; } /// /// /// - public global::Vapi.CallHookTranscriberEndpointedSpeechLowConfidence? Type838 { get; set; } + public global::Vapi.EndpointedSpeechLowConfidenceOptions? Type838 { get; set; } /// /// /// - public global::Vapi.SessionCreatedHook? Type839 { get; set; } + public global::Vapi.CallHookTranscriberEndpointedSpeechLowConfidence? Type839 { get; set; } /// /// /// - public global::Vapi.SessionCreatedHookOn? Type840 { get; set; } + public global::Vapi.SessionCreatedHook? Type840 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type841 { get; set; } + public global::Vapi.SessionCreatedHookOn? Type841 { get; set; } /// /// /// - public global::Vapi.SQLInjectionSecurityFilter? Type842 { get; set; } + public global::System.Collections.Generic.IList? Type842 { get; set; } /// /// /// - public global::Vapi.SQLInjectionSecurityFilterType? Type843 { get; set; } + public global::Vapi.SQLInjectionSecurityFilter? Type843 { get; set; } /// /// /// - public global::Vapi.XSSSecurityFilter? Type844 { get; set; } + public global::Vapi.SQLInjectionSecurityFilterType? Type844 { get; set; } /// /// /// - public global::Vapi.XSSSecurityFilterType? Type845 { get; set; } + public global::Vapi.XSSSecurityFilter? Type845 { get; set; } /// /// /// - public global::Vapi.SSRFSecurityFilter? Type846 { get; set; } + public global::Vapi.XSSSecurityFilterType? Type846 { get; set; } /// /// /// - public global::Vapi.SSRFSecurityFilterType? Type847 { get; set; } + public global::Vapi.SSRFSecurityFilter? Type847 { get; set; } /// /// /// - public global::Vapi.RCESecurityFilter? Type848 { get; set; } + public global::Vapi.SSRFSecurityFilterType? Type848 { get; set; } /// /// /// - public global::Vapi.RCESecurityFilterType? Type849 { get; set; } + public global::Vapi.RCESecurityFilter? Type849 { get; set; } /// /// /// - public global::Vapi.PromptInjectionSecurityFilter? Type850 { get; set; } + public global::Vapi.RCESecurityFilterType? Type850 { get; set; } /// /// /// - public global::Vapi.PromptInjectionSecurityFilterType? Type851 { get; set; } + public global::Vapi.PromptInjectionSecurityFilter? Type851 { get; set; } /// /// /// - public global::Vapi.RegexSecurityFilter? Type852 { get; set; } + public global::Vapi.PromptInjectionSecurityFilterType? Type852 { get; set; } /// /// /// - public global::Vapi.RegexSecurityFilterType? Type853 { get; set; } + public global::Vapi.RegexSecurityFilter? Type853 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesFirstMessageMode? Type854 { get; set; } + public global::Vapi.RegexSecurityFilterType? Type854 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesVoicemailDetection? Type855 { get; set; } + public global::Vapi.AssistantOverridesFirstMessageMode? Type855 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type856 { get; set; } + public global::Vapi.AssistantOverridesVoicemailDetection? Type856 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesClientMessage? Type857 { get; set; } + public global::System.Collections.Generic.IList? Type857 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type858 { get; set; } + public global::Vapi.AssistantOverridesClientMessage? Type858 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesServerMessage? Type859 { get; set; } + public global::System.Collections.Generic.IList? Type859 { get; set; } /// /// /// - public global::Vapi.OneOf? Type860 { get; set; } + public global::Vapi.AssistantOverridesServerMessage? Type860 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesBackgroundSound? Type861 { get; set; } + public global::Vapi.OneOf? Type861 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type862 { get; set; } + public global::Vapi.AssistantOverridesBackgroundSound? Type862 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type863 { get; set; } + public global::System.Collections.Generic.IList? Type863 { get; set; } /// /// /// - public global::Vapi.CredentialsItem2? Type864 { get; set; } + public global::System.Collections.Generic.IList? Type864 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesCredentialDiscriminator? Type865 { get; set; } + public global::Vapi.CredentialsItem2? Type865 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesCredentialDiscriminatorProvider? Type866 { get; set; } + public global::Vapi.AssistantOverridesCredentialDiscriminator? Type866 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOFirstMessageMode? Type867 { get; set; } + public global::Vapi.AssistantOverridesCredentialDiscriminatorProvider? Type867 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOVoicemailDetection? Type868 { get; set; } + public global::Vapi.CreateAssistantDTOFirstMessageMode? Type868 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type869 { get; set; } + public global::Vapi.CreateAssistantDTOVoicemailDetection? Type869 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOClientMessage? Type870 { get; set; } + public global::System.Collections.Generic.IList? Type870 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type871 { get; set; } + public global::Vapi.CreateAssistantDTOClientMessage? Type871 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOServerMessage? Type872 { get; set; } + public global::System.Collections.Generic.IList? Type872 { get; set; } /// /// /// - public global::Vapi.OneOf? Type873 { get; set; } + public global::Vapi.CreateAssistantDTOServerMessage? Type873 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOBackgroundSound? Type874 { get; set; } + public global::Vapi.OneOf? Type874 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type875 { get; set; } + public global::Vapi.CreateAssistantDTOBackgroundSound? Type875 { get; set; } /// /// /// - public global::Vapi.CredentialsItem3? Type876 { get; set; } + public global::System.Collections.Generic.IList? Type876 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOCredentialDiscriminator? Type877 { get; set; } + public global::Vapi.CredentialsItem3? Type877 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOCredentialDiscriminatorProvider? Type878 { get; set; } + public global::Vapi.CreateAssistantDTOCredentialDiscriminator? Type878 { get; set; } /// /// /// - public global::Vapi.Assistant? Type879 { get; set; } + public global::Vapi.CreateAssistantDTOCredentialDiscriminatorProvider? Type879 { get; set; } /// /// /// - public global::Vapi.AssistantFirstMessageMode? Type880 { get; set; } + public global::Vapi.Assistant? Type880 { get; set; } /// /// /// - public global::Vapi.AssistantVoicemailDetection? Type881 { get; set; } + public global::Vapi.AssistantFirstMessageMode? Type881 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type882 { get; set; } + public global::Vapi.AssistantVoicemailDetection? Type882 { get; set; } /// /// /// - public global::Vapi.AssistantClientMessage? Type883 { get; set; } + public global::System.Collections.Generic.IList? Type883 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type884 { get; set; } + public global::Vapi.AssistantClientMessage? Type884 { get; set; } /// /// /// - public global::Vapi.AssistantServerMessage? Type885 { get; set; } + public global::System.Collections.Generic.IList? Type885 { get; set; } /// /// /// - public global::Vapi.OneOf? Type886 { get; set; } + public global::Vapi.AssistantServerMessage? Type886 { get; set; } /// /// /// - public global::Vapi.AssistantBackgroundSound? Type887 { get; set; } + public global::Vapi.OneOf? Type887 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type888 { get; set; } + public global::Vapi.AssistantBackgroundSound? Type888 { get; set; } /// /// /// - public global::Vapi.CredentialsItem4? Type889 { get; set; } + public global::System.Collections.Generic.IList? Type889 { get; set; } /// /// /// - public global::Vapi.AssistantCredentialDiscriminator? Type890 { get; set; } + public global::Vapi.CredentialsItem4? Type890 { get; set; } /// /// /// - public global::Vapi.AssistantCredentialDiscriminatorProvider? Type891 { get; set; } + public global::Vapi.AssistantCredentialDiscriminator? Type891 { get; set; } /// /// /// - public global::System.DateTime? Type892 { get; set; } + public global::Vapi.AssistantCredentialDiscriminatorProvider? Type892 { get; set; } /// /// /// - public global::Vapi.PaginationMeta? Type893 { get; set; } + public global::System.DateTime? Type893 { get; set; } /// /// /// - public global::Vapi.PaginationMetaSortOrder? Type894 { get; set; } + public global::Vapi.PaginationMeta? Type894 { get; set; } /// /// /// - public global::Vapi.AssistantPaginatedResponse? Type895 { get; set; } + public global::Vapi.PaginationMetaSortOrder? Type895 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type896 { get; set; } + public global::Vapi.AssistantPaginatedResponse? Type896 { get; set; } /// /// /// - public global::Vapi.AssistantVersionPaginatedResponse? Type897 { get; set; } + public global::System.Collections.Generic.IList? Type897 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTO? Type898 { get; set; } + public global::Vapi.AssistantVersionPaginatedResponse? Type898 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOFirstMessageMode? Type899 { get; set; } + public global::Vapi.UpdateAssistantDTO? Type899 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOVoicemailDetection? Type900 { get; set; } + public global::Vapi.UpdateAssistantDTOFirstMessageMode? Type900 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type901 { get; set; } + public global::Vapi.UpdateAssistantDTOVoicemailDetection? Type901 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOClientMessage? Type902 { get; set; } + public global::System.Collections.Generic.IList? Type902 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type903 { get; set; } + public global::Vapi.UpdateAssistantDTOClientMessage? Type903 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOServerMessage? Type904 { get; set; } + public global::System.Collections.Generic.IList? Type904 { get; set; } /// /// /// - public global::Vapi.OneOf? Type905 { get; set; } + public global::Vapi.UpdateAssistantDTOServerMessage? Type905 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOBackgroundSound? Type906 { get; set; } + public global::Vapi.OneOf? Type906 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type907 { get; set; } + public global::Vapi.UpdateAssistantDTOBackgroundSound? Type907 { get; set; } /// /// /// - public global::Vapi.CredentialsItem5? Type908 { get; set; } + public global::System.Collections.Generic.IList? Type908 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOCredentialDiscriminator? Type909 { get; set; } + public global::Vapi.CredentialsItem5? Type909 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOCredentialDiscriminatorProvider? Type910 { get; set; } + public global::Vapi.UpdateAssistantDTOCredentialDiscriminator? Type910 { get; set; } /// /// /// - public global::Vapi.Squad? Type911 { get; set; } + public global::Vapi.UpdateAssistantDTOCredentialDiscriminatorProvider? Type911 { get; set; } /// /// /// - public global::Vapi.UpdateSquadDTO? Type912 { get; set; } + public global::Vapi.Squad? Type912 { get; set; } /// /// /// - public global::Vapi.Workflow? Type913 { get; set; } + public global::Vapi.UpdateSquadDTO? Type913 { get; set; } /// /// /// - public global::Vapi.OneOf? Type914 { get; set; } + public global::Vapi.Workflow? Type914 { get; set; } /// /// /// - public global::Vapi.WorkflowBackgroundSound? Type915 { get; set; } + public global::Vapi.OneOf? Type915 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type916 { get; set; } + public global::Vapi.WorkflowBackgroundSound? Type916 { get; set; } /// /// /// - public global::Vapi.CredentialsItem6? Type917 { get; set; } + public global::System.Collections.Generic.IList? Type917 { get; set; } /// /// /// - public global::Vapi.WorkflowCredentialDiscriminator? Type918 { get; set; } + public global::Vapi.CredentialsItem6? Type918 { get; set; } /// /// /// - public global::Vapi.WorkflowCredentialDiscriminatorProvider? Type919 { get; set; } + public global::Vapi.WorkflowCredentialDiscriminator? Type919 { get; set; } /// /// /// - public global::Vapi.WorkflowVoicemailDetection? Type920 { get; set; } + public global::Vapi.WorkflowCredentialDiscriminatorProvider? Type920 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTO? Type921 { get; set; } + public global::Vapi.WorkflowVoicemailDetection? Type921 { get; set; } /// /// /// - public global::Vapi.OneOf? Type922 { get; set; } + public global::Vapi.CreateWorkflowDTO? Type922 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTOBackgroundSound? Type923 { get; set; } + public global::Vapi.OneOf? Type923 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type924 { get; set; } + public global::Vapi.CreateWorkflowDTOBackgroundSound? Type924 { get; set; } /// /// /// - public global::Vapi.CredentialsItem7? Type925 { get; set; } + public global::System.Collections.Generic.IList? Type925 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTOCredentialDiscriminator? Type926 { get; set; } + public global::Vapi.CredentialsItem7? Type926 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTOCredentialDiscriminatorProvider? Type927 { get; set; } + public global::Vapi.CreateWorkflowDTOCredentialDiscriminator? Type927 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTOVoicemailDetection? Type928 { get; set; } + public global::Vapi.CreateWorkflowDTOCredentialDiscriminatorProvider? Type928 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTO? Type929 { get; set; } + public global::Vapi.CreateWorkflowDTOVoicemailDetection? Type929 { get; set; } /// /// /// - public global::Vapi.OneOf? Type930 { get; set; } + public global::Vapi.UpdateWorkflowDTO? Type930 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTOBackgroundSound? Type931 { get; set; } + public global::Vapi.OneOf? Type931 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type932 { get; set; } + public global::Vapi.UpdateWorkflowDTOBackgroundSound? Type932 { get; set; } /// /// /// - public global::Vapi.CredentialsItem8? Type933 { get; set; } + public global::System.Collections.Generic.IList? Type933 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTOCredentialDiscriminator? Type934 { get; set; } + public global::Vapi.CredentialsItem8? Type934 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTOCredentialDiscriminatorProvider? Type935 { get; set; } + public global::Vapi.UpdateWorkflowDTOCredentialDiscriminator? Type935 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTOVoicemailDetection? Type936 { get; set; } + public global::Vapi.UpdateWorkflowDTOCredentialDiscriminatorProvider? Type936 { get; set; } /// /// /// - public global::Vapi.SubscriptionLimits? Type937 { get; set; } + public global::Vapi.UpdateWorkflowDTOVoicemailDetection? Type937 { get; set; } /// /// /// - public global::Vapi.BotMessage? Type938 { get; set; } + public global::Vapi.SubscriptionLimits? Type938 { get; set; } /// /// /// - public global::Vapi.ToolCallMessage? Type939 { get; set; } + public global::Vapi.BotMessage? Type939 { get; set; } /// /// /// - public global::Vapi.ToolCallResultMessageWarning? Type940 { get; set; } + public global::Vapi.ToolCallMessage? Type940 { get; set; } /// /// /// - public global::Vapi.ToolCallResultMessageWarningType? Type941 { get; set; } + public global::Vapi.ToolCallResultMessageWarning? Type941 { get; set; } /// /// /// - public global::Vapi.ToolCallResultMessage? Type942 { get; set; } + public global::Vapi.ToolCallResultMessageWarningType? Type942 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type943 { get; set; } + public global::Vapi.ToolCallResultMessage? Type943 { get; set; } /// /// /// - public global::Vapi.TransportCost? Type944 { get; set; } + public global::System.Collections.Generic.IList? Type944 { get; set; } /// /// /// - public global::Vapi.TransportCostType? Type945 { get; set; } + public global::Vapi.TransportCost? Type945 { get; set; } /// /// /// - public global::Vapi.TransportCostProvider? Type946 { get; set; } + public global::Vapi.TransportCostType? Type946 { get; set; } /// /// /// - public global::Vapi.TranscriberCost? Type947 { get; set; } + public global::Vapi.TransportCostProvider? Type947 { get; set; } /// /// /// - public global::Vapi.TranscriberCostType? Type948 { get; set; } + public global::Vapi.TranscriberCost? Type948 { get; set; } /// /// /// - public global::Vapi.ModelCost? Type949 { get; set; } + public global::Vapi.TranscriberCostType? Type949 { get; set; } /// /// /// - public global::Vapi.ModelCostType? Type950 { get; set; } + public global::Vapi.ModelCost? Type950 { get; set; } /// /// /// - public global::Vapi.VoiceCost? Type951 { get; set; } + public global::Vapi.ModelCostType? Type951 { get; set; } /// /// /// - public global::Vapi.VoiceCostType? Type952 { get; set; } + public global::Vapi.VoiceCost? Type952 { get; set; } /// /// /// - public global::Vapi.ChatCost? Type953 { get; set; } + public global::Vapi.VoiceCostType? Type953 { get; set; } /// /// /// - public global::Vapi.ChatCostType? Type954 { get; set; } + public global::Vapi.ChatCost? Type954 { get; set; } /// /// /// - public global::Vapi.VapiCost? Type955 { get; set; } + public global::Vapi.ChatCostType? Type955 { get; set; } /// /// /// - public global::Vapi.VapiCostType? Type956 { get; set; } + public global::Vapi.VapiCost? Type956 { get; set; } /// /// /// - public global::Vapi.VapiCostSubType? Type957 { get; set; } + public global::Vapi.VapiCostType? Type957 { get; set; } /// /// /// - public global::Vapi.VoicemailDetectionCost? Type958 { get; set; } + public global::Vapi.VapiCostSubType? Type958 { get; set; } /// /// /// - public global::Vapi.VoicemailDetectionCostType? Type959 { get; set; } + public global::Vapi.VoicemailDetectionCost? Type959 { get; set; } /// /// /// - public global::Vapi.VoicemailDetectionCostProvider? Type960 { get; set; } + public global::Vapi.VoicemailDetectionCostType? Type960 { get; set; } /// /// /// - public global::Vapi.AnalysisCost? Type961 { get; set; } + public global::Vapi.VoicemailDetectionCostProvider? Type961 { get; set; } /// /// /// - public global::Vapi.AnalysisCostType? Type962 { get; set; } + public global::Vapi.AnalysisCost? Type962 { get; set; } /// /// /// - public global::Vapi.AnalysisCostAnalysisType? Type963 { get; set; } + public global::Vapi.AnalysisCostType? Type963 { get; set; } /// /// /// - public global::Vapi.AudioFormat? Type964 { get; set; } + public global::Vapi.AnalysisCostAnalysisType? Type964 { get; set; } /// /// /// - public global::Vapi.AudioFormatContainer? Type965 { get; set; } + public global::Vapi.AudioFormat? Type965 { get; set; } /// /// /// - public global::Vapi.VapiWebsocketTransport? Type966 { get; set; } + public global::Vapi.AudioFormatContainer? Type966 { get; set; } /// /// /// - public global::Vapi.VapiWebsocketTransportConversationType? Type967 { get; set; } + public global::Vapi.VapiWebsocketTransport? Type967 { get; set; } /// /// /// - public global::Vapi.VapiWebsocketTransportProvider? Type968 { get; set; } + public global::Vapi.VapiWebsocketTransportConversationType? Type968 { get; set; } /// /// /// - public global::Vapi.VapiWebCallTransport? Type969 { get; set; } + public global::Vapi.VapiWebsocketTransportProvider? Type969 { get; set; } /// /// /// - public global::Vapi.VapiWebCallTransportConversationType? Type970 { get; set; } + public global::Vapi.VapiWebCallTransport? Type970 { get; set; } /// /// /// - public global::Vapi.VapiWebCallTransportProvider? Type971 { get; set; } + public global::Vapi.VapiWebCallTransportConversationType? Type971 { get; set; } /// /// /// - public global::Vapi.TwilioTransport? Type972 { get; set; } + public global::Vapi.VapiWebCallTransportProvider? Type972 { get; set; } /// /// /// - public global::Vapi.TwilioTransportConversationType? Type973 { get; set; } + public global::Vapi.TwilioTransport? Type973 { get; set; } /// /// /// - public global::Vapi.TwilioTransportProvider? Type974 { get; set; } + public global::Vapi.TwilioTransportConversationType? Type974 { get; set; } /// /// /// - public global::Vapi.TelnyxTransport? Type975 { get; set; } + public global::Vapi.TwilioTransportProvider? Type975 { get; set; } /// /// /// - public global::Vapi.TelnyxTransportConversationType? Type976 { get; set; } + public global::Vapi.TelnyxTransport? Type976 { get; set; } /// /// /// - public global::Vapi.TelnyxTransportProvider? Type977 { get; set; } + public global::Vapi.TelnyxTransportConversationType? Type977 { get; set; } /// /// /// - public global::Vapi.VapiSipTransport? Type978 { get; set; } + public global::Vapi.TelnyxTransportProvider? Type978 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportConversationType? Type979 { get; set; } + public global::Vapi.VapiSipTransport? Type979 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportProvider? Type980 { get; set; } + public global::Vapi.VapiSipTransportConversationType? Type980 { get; set; } /// /// /// - public global::Vapi.VonageTransport? Type981 { get; set; } + public global::Vapi.VapiSipTransportProvider? Type981 { get; set; } /// /// /// - public global::Vapi.VonageTransportConversationType? Type982 { get; set; } + public global::Vapi.VonageTransport? Type982 { get; set; } /// /// /// - public global::Vapi.VonageTransportProvider? Type983 { get; set; } + public global::Vapi.VonageTransportConversationType? Type983 { get; set; } /// /// /// - public global::Vapi.AnalysisCostBreakdown? Type984 { get; set; } + public global::Vapi.VonageTransportProvider? Type984 { get; set; } /// /// /// - public global::Vapi.CostBreakdown? Type985 { get; set; } + public global::Vapi.AnalysisCostBreakdown? Type985 { get; set; } /// /// /// - public global::Vapi.Analysis? Type986 { get; set; } + public global::Vapi.CostBreakdown? Type986 { get; set; } /// /// /// - public global::Vapi.MonitorResult? Type987 { get; set; } + public global::Vapi.Analysis? Type987 { get; set; } /// /// /// - public global::Vapi.Monitor? Type988 { get; set; } + public global::Vapi.MonitorResult? Type988 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type989 { get; set; } + public global::Vapi.Monitor? Type989 { get; set; } /// /// /// - public global::Vapi.Mono? Type990 { get; set; } + public global::System.Collections.Generic.IList? Type990 { get; set; } /// /// /// - public global::Vapi.Recording? Type991 { get; set; } + public global::Vapi.Mono? Type991 { get; set; } /// /// /// - public global::Vapi.NodeArtifact? Type992 { get; set; } + public global::Vapi.Recording? Type992 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type993 { get; set; } + public global::Vapi.NodeArtifact? Type993 { get; set; } /// /// /// - public global::Vapi.OneOf? Type994 { get; set; } + public global::System.Collections.Generic.IList>? Type994 { get; set; } /// /// /// - public global::Vapi.AssistantActivation? Type995 { get; set; } + public global::Vapi.OneOf? Type995 { get; set; } /// /// /// - public global::Vapi.TurnLatency? Type996 { get; set; } + public global::Vapi.AssistantActivation? Type996 { get; set; } /// /// /// - public global::Vapi.PerformanceMetrics? Type997 { get; set; } + public global::Vapi.TurnLatency? Type997 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type998 { get; set; } + public global::Vapi.PerformanceMetrics? Type998 { get; set; } /// /// /// - public global::Vapi.Artifact? Type999 { get; set; } + public global::System.Collections.Generic.IList? Type999 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1000 { get; set; } + public global::Vapi.Artifact? Type1000 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1001 { get; set; } + public global::System.Collections.Generic.IList? Type1001 { get; set; } /// /// /// - public global::Vapi.RecordingConsent? Type1002 { get; set; } + public global::System.Collections.Generic.IList? Type1002 { get; set; } /// /// /// - public global::Vapi.RecordingConsentType? Type1003 { get; set; } + public global::Vapi.RecordingConsent? Type1003 { get; set; } /// /// /// - public global::Vapi.Compliance? Type1004 { get; set; } + public global::Vapi.RecordingConsentType? Type1004 { get; set; } /// /// /// - public global::Vapi.WorkflowOverrides? Type1005 { get; set; } + public global::Vapi.Compliance? Type1005 { get; set; } /// /// /// - public global::Vapi.TransferPhoneNumberHookAction? Type1006 { get; set; } + public global::Vapi.WorkflowOverrides? Type1006 { get; set; } /// /// /// - public global::Vapi.TransferPhoneNumberHookActionType? Type1007 { get; set; } + public global::Vapi.TransferPhoneNumberHookAction? Type1007 { get; set; } /// /// /// - public global::Vapi.SayPhoneNumberHookAction? Type1008 { get; set; } + public global::Vapi.TransferPhoneNumberHookActionType? Type1008 { get; set; } /// /// /// - public global::Vapi.SayPhoneNumberHookActionType? Type1009 { get; set; } + public global::Vapi.SayPhoneNumberHookAction? Type1009 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallRingingHookFilter? Type1010 { get; set; } + public global::Vapi.SayPhoneNumberHookActionType? Type1010 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallRingingHookFilterType? Type1011 { get; set; } + public global::Vapi.PhoneNumberCallRingingHookFilter? Type1011 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallRingingHookFilterKey? Type1012 { get; set; } + public global::Vapi.PhoneNumberCallRingingHookFilterType? Type1012 { get; set; } /// /// /// - public global::Vapi.PhoneNumberHookCallRinging? Type1013 { get; set; } + public global::Vapi.PhoneNumberCallRingingHookFilterKey? Type1013 { get; set; } /// /// /// - public global::Vapi.PhoneNumberHookCallRingingOn? Type1014 { get; set; } + public global::Vapi.PhoneNumberHookCallRinging? Type1014 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1015 { get; set; } + public global::Vapi.PhoneNumberHookCallRingingOn? Type1015 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1016 { get; set; } + public global::System.Collections.Generic.IList? Type1016 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1017 { get; set; } + public global::System.Collections.Generic.IList>? Type1017 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallEndingHookFilter? Type1018 { get; set; } + public global::Vapi.OneOf? Type1018 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallEndingHookFilterType? Type1019 { get; set; } + public global::Vapi.PhoneNumberCallEndingHookFilter? Type1019 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallEndingHookFilterKey? Type1020 { get; set; } + public global::Vapi.PhoneNumberCallEndingHookFilterType? Type1020 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1021 { get; set; } + public global::Vapi.PhoneNumberCallEndingHookFilterKey? Type1021 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallEndingHookFilterOneOfItem? Type1022 { get; set; } + public global::System.Collections.Generic.IList? Type1022 { get; set; } /// /// /// - public global::Vapi.PhoneNumberHookCallEnding? Type1023 { get; set; } + public global::Vapi.PhoneNumberCallEndingHookFilterOneOfItem? Type1023 { get; set; } /// /// /// - public global::Vapi.PhoneNumberHookCallEndingOn? Type1024 { get; set; } + public global::Vapi.PhoneNumberHookCallEnding? Type1024 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1025 { get; set; } + public global::Vapi.PhoneNumberHookCallEndingOn? Type1025 { get; set; } /// /// /// - public global::Vapi.ImportTwilioPhoneNumberDTO? Type1026 { get; set; } + public global::System.Collections.Generic.IList? Type1026 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1027 { get; set; } + public global::Vapi.ImportTwilioPhoneNumberDTO? Type1027 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1028 { get; set; } + public global::System.Collections.Generic.IList>? Type1028 { get; set; } /// /// /// - public global::Vapi.CreateCustomerDTO? Type1029 { get; set; } + public global::Vapi.OneOf? Type1029 { get; set; } /// /// /// - public global::Vapi.SchedulePlan? Type1030 { get; set; } + public global::Vapi.CreateCustomerDTO? Type1030 { get; set; } /// /// /// - public global::Vapi.Call? Type1031 { get; set; } + public global::Vapi.SchedulePlan? Type1031 { get; set; } /// /// /// - public global::Vapi.CallType? Type1032 { get; set; } + public global::Vapi.Call? Type1032 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1033 { get; set; } + public global::Vapi.CallType? Type1033 { get; set; } /// /// /// - public global::Vapi.KnowledgeBaseCost? Type1034 { get; set; } + public global::Vapi.OneOf? Type1034 { get; set; } /// /// /// - public global::Vapi.CallPhoneCallProvider? Type1035 { get; set; } + public global::Vapi.KnowledgeBaseCost? Type1035 { get; set; } /// /// /// - public global::Vapi.CallPhoneCallTransport? Type1036 { get; set; } + public global::Vapi.CallPhoneCallProvider? Type1036 { get; set; } /// /// /// - public global::Vapi.CallStatus? Type1037 { get; set; } + public global::Vapi.CallPhoneCallTransport? Type1037 { get; set; } /// /// /// - public global::Vapi.CallEndedReason? Type1038 { get; set; } + public global::Vapi.CallStatus? Type1038 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1039 { get; set; } + public global::Vapi.CallEndedReason? Type1039 { get; set; } /// /// /// - public global::Vapi.CallBatchError? Type1040 { get; set; } + public global::Vapi.OneOf? Type1040 { get; set; } /// /// /// - public global::Vapi.CallBatchResponse? Type1041 { get; set; } + public global::Vapi.CallBatchError? Type1041 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1042 { get; set; } + public global::Vapi.CallBatchResponse? Type1042 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1043 { get; set; } + public global::System.Collections.Generic.IList? Type1043 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordAlignmentTiming? Type1044 { get; set; } + public global::System.Collections.Generic.IList? Type1044 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordAlignmentTimingType? Type1045 { get; set; } + public global::Vapi.AssistantSpeechWordAlignmentTiming? Type1045 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1046 { get; set; } + public global::Vapi.AssistantSpeechWordAlignmentTimingType? Type1046 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordTimestamp? Type1047 { get; set; } + public global::System.Collections.Generic.IList? Type1047 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordProgressTiming? Type1048 { get; set; } + public global::Vapi.AssistantSpeechWordTimestamp? Type1048 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordProgressTimingType? Type1049 { get; set; } + public global::Vapi.AssistantSpeechWordProgressTiming? Type1049 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1050 { get; set; } + public global::Vapi.AssistantSpeechWordProgressTimingType? Type1050 { get; set; } /// /// /// - public global::Vapi.CreateCallDTO? Type1051 { get; set; } + public global::System.Collections.Generic.IList? Type1051 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1052 { get; set; } + public global::Vapi.CreateCallDTO? Type1052 { get; set; } /// /// /// - public global::Vapi.StructuredOutputFilterDTO? Type1053 { get; set; } + public global::System.Collections.Generic.IList? Type1053 { get; set; } /// /// /// - public global::Vapi.CallPaginatedResponse? Type1054 { get; set; } + public global::Vapi.StructuredOutputFilterDTO? Type1054 { get; set; } /// /// /// - public global::Vapi.CreateOutboundCallDTO? Type1055 { get; set; } + public global::Vapi.CallPaginatedResponse? Type1055 { get; set; } /// /// /// - public global::Vapi.CreateWebCallDTO? Type1056 { get; set; } + public global::Vapi.CreateOutboundCallDTO? Type1056 { get; set; } /// /// /// - public global::Vapi.UpdateCallDTO? Type1057 { get; set; } + public global::Vapi.CreateWebCallDTO? Type1057 { get; set; } /// /// /// - public global::Vapi.DeleteCallDTO? Type1058 { get; set; } + public global::Vapi.UpdateCallDTO? Type1058 { get; set; } /// /// /// - public global::Vapi.DeveloperMessageRole? Type1059 { get; set; } + public global::Vapi.DeleteCallDTO? Type1059 { get; set; } /// /// /// - public global::Vapi.ToolCallFunction? Type1060 { get; set; } + public global::Vapi.DeveloperMessageRole? Type1060 { get; set; } /// /// /// - public global::Vapi.ToolCall? Type1061 { get; set; } + public global::Vapi.ToolCallFunction? Type1061 { get; set; } /// /// /// - public global::Vapi.AssistantMessageRole? Type1062 { get; set; } + public global::Vapi.ToolCall? Type1062 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1063 { get; set; } + public global::Vapi.AssistantMessageRole? Type1063 { get; set; } /// /// /// - public global::Vapi.ToolMessageRole? Type1064 { get; set; } + public global::System.Collections.Generic.IList? Type1064 { get; set; } /// /// /// - public global::Vapi.FunctionCall? Type1065 { get; set; } + public global::Vapi.ToolMessageRole? Type1065 { get; set; } /// /// /// - public global::Vapi.Chat? Type1066 { get; set; } + public global::Vapi.FunctionCall? Type1066 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1067 { get; set; } + public global::Vapi.Chat? Type1067 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1068 { get; set; } + public global::System.Collections.Generic.IList>? Type1068 { get; set; } /// /// /// - public global::Vapi.TwilioSMSChatTransport? Type1069 { get; set; } + public global::Vapi.OneOf? Type1069 { get; set; } /// /// /// - public global::Vapi.TwilioSMSChatTransportConversationType? Type1070 { get; set; } + public global::Vapi.TwilioSMSChatTransport? Type1070 { get; set; } /// /// /// - public global::Vapi.TwilioSMSChatTransportType? Type1071 { get; set; } + public global::Vapi.TwilioSMSChatTransportConversationType? Type1071 { get; set; } /// /// /// - public global::Vapi.CreateChatDTO? Type1072 { get; set; } + public global::Vapi.TwilioSMSChatTransportType? Type1072 { get; set; } /// /// /// - public global::Vapi.GetChatPaginatedDTO? Type1073 { get; set; } + public global::Vapi.CreateChatDTO? Type1073 { get; set; } /// /// /// - public global::Vapi.GetChatPaginatedDTOSortOrder? Type1074 { get; set; } + public global::Vapi.GetChatPaginatedDTO? Type1074 { get; set; } /// /// /// - public global::Vapi.GetChatPaginatedDTOSortBy? Type1075 { get; set; } + public global::Vapi.GetChatPaginatedDTOSortOrder? Type1075 { get; set; } /// /// /// - public global::Vapi.ChatPaginatedResponse? Type1076 { get; set; } + public global::Vapi.GetChatPaginatedDTOSortBy? Type1076 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1077 { get; set; } + public global::Vapi.ChatPaginatedResponse? Type1077 { get; set; } /// /// /// - public global::Vapi.CreateChatStreamResponse? Type1078 { get; set; } + public global::System.Collections.Generic.IList? Type1078 { get; set; } /// /// /// - public global::Vapi.OpenAIResponsesRequest? Type1079 { get; set; } + public global::Vapi.CreateChatStreamResponse? Type1079 { get; set; } /// /// /// - public global::Vapi.ChatAssistantOverrides? Type1080 { get; set; } + public global::Vapi.OpenAIResponsesRequest? Type1080 { get; set; } /// /// /// - public global::Vapi.CreateWebCustomerDTO? Type1081 { get; set; } + public global::Vapi.ChatAssistantOverrides? Type1081 { get; set; } /// /// /// - public global::Vapi.CreateWebChatDTO? Type1082 { get; set; } + public global::Vapi.CreateWebCustomerDTO? Type1082 { get; set; } /// /// /// - public global::Vapi.WebChat? Type1083 { get; set; } + public global::Vapi.CreateWebChatDTO? Type1083 { get; set; } /// /// /// - public global::Vapi.OpenAIWebChatRequest? Type1084 { get; set; } + public global::Vapi.WebChat? Type1084 { get; set; } /// /// /// - public global::Vapi.ExportChatDTO? Type1085 { get; set; } + public global::Vapi.OpenAIWebChatRequest? Type1085 { get; set; } /// /// /// - public global::Vapi.ExportChatDTOColumns? Type1086 { get; set; } + public global::Vapi.ExportChatDTO? Type1086 { get; set; } /// /// /// - public global::Vapi.ExportChatDTOFormat? Type1087 { get; set; } + public global::Vapi.ExportChatDTOColumns? Type1087 { get; set; } /// /// /// - public global::Vapi.ExportChatDTOSortOrder? Type1088 { get; set; } + public global::Vapi.ExportChatDTOFormat? Type1088 { get; set; } /// /// /// - public global::Vapi.ExportChatDTOSortBy? Type1089 { get; set; } + public global::Vapi.ExportChatDTOSortOrder? Type1089 { get; set; } /// /// /// - public global::Vapi.ResponseOutputText? Type1090 { get; set; } + public global::Vapi.ExportChatDTOSortBy? Type1090 { get; set; } /// /// /// - public global::Vapi.ResponseOutputTextType? Type1091 { get; set; } + public global::Vapi.ResponseOutputText? Type1091 { get; set; } /// /// /// - public global::Vapi.ResponseOutputMessage? Type1092 { get; set; } + public global::Vapi.ResponseOutputTextType? Type1092 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1093 { get; set; } + public global::Vapi.ResponseOutputMessage? Type1093 { get; set; } /// /// /// - public global::Vapi.ResponseOutputMessageRole? Type1094 { get; set; } + public global::System.Collections.Generic.IList? Type1094 { get; set; } /// /// /// - public global::Vapi.ResponseOutputMessageStatus? Type1095 { get; set; } + public global::Vapi.ResponseOutputMessageRole? Type1095 { get; set; } /// /// /// - public global::Vapi.ResponseOutputMessageType? Type1096 { get; set; } + public global::Vapi.ResponseOutputMessageStatus? Type1096 { get; set; } /// /// /// - public global::Vapi.ResponseObject? Type1097 { get; set; } + public global::Vapi.ResponseOutputMessageType? Type1097 { get; set; } /// /// /// - public global::Vapi.ResponseObjectObject? Type1098 { get; set; } + public global::Vapi.ResponseObject? Type1098 { get; set; } /// /// /// - public global::Vapi.ResponseObjectStatus? Type1099 { get; set; } + public global::Vapi.ResponseObjectObject? Type1099 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1100 { get; set; } + public global::Vapi.ResponseObjectStatus? Type1100 { get; set; } /// /// /// - public global::Vapi.ResponseTextDeltaEvent? Type1101 { get; set; } + public global::System.Collections.Generic.IList? Type1101 { get; set; } /// /// /// - public global::Vapi.ResponseTextDeltaEventType? Type1102 { get; set; } + public global::Vapi.ResponseTextDeltaEvent? Type1102 { get; set; } /// /// /// - public global::Vapi.ResponseTextDoneEvent? Type1103 { get; set; } + public global::Vapi.ResponseTextDeltaEventType? Type1103 { get; set; } /// /// /// - public global::Vapi.ResponseTextDoneEventType? Type1104 { get; set; } + public global::Vapi.ResponseTextDoneEvent? Type1104 { get; set; } /// /// /// - public global::Vapi.ResponseCompletedEvent? Type1105 { get; set; } + public global::Vapi.ResponseTextDoneEventType? Type1105 { get; set; } /// /// /// - public global::Vapi.ResponseCompletedEventType? Type1106 { get; set; } + public global::Vapi.ResponseCompletedEvent? Type1106 { get; set; } /// /// /// - public global::Vapi.ResponseErrorEvent? Type1107 { get; set; } + public global::Vapi.ResponseCompletedEventType? Type1107 { get; set; } /// /// /// - public global::Vapi.ResponseErrorEventType? Type1108 { get; set; } + public global::Vapi.ResponseErrorEvent? Type1108 { get; set; } /// /// /// - public global::Vapi.DialPlanEntry? Type1109 { get; set; } + public global::Vapi.ResponseErrorEventType? Type1109 { get; set; } /// /// /// - public global::Vapi.CreateCampaignDTO? Type1110 { get; set; } + public global::Vapi.DialPlanEntry? Type1110 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1111 { get; set; } + public global::Vapi.CreateCampaignDTO? Type1111 { get; set; } /// /// /// - public global::Vapi.Campaign? Type1112 { get; set; } + public global::System.Collections.Generic.IList? Type1112 { get; set; } /// /// /// - public global::Vapi.CampaignStatus? Type1113 { get; set; } + public global::Vapi.Campaign? Type1113 { get; set; } /// /// /// - public global::Vapi.CampaignEndedReason? Type1114 { get; set; } + public global::Vapi.CampaignStatus? Type1114 { get; set; } /// /// /// - public global::Vapi.CampaignPaginatedResponse? Type1115 { get; set; } + public global::Vapi.CampaignEndedReason? Type1115 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1116 { get; set; } + public global::Vapi.CampaignPaginatedResponse? Type1116 { get; set; } /// /// /// - public global::Vapi.UpdateCampaignDTO? Type1117 { get; set; } + public global::System.Collections.Generic.IList? Type1117 { get; set; } /// /// /// - public global::Vapi.UpdateCampaignDTOStatus? Type1118 { get; set; } + public global::Vapi.UpdateCampaignDTO? Type1118 { get; set; } /// /// /// - public global::Vapi.RelayTargetAssistant? Type1119 { get; set; } + public global::Vapi.UpdateCampaignDTOStatus? Type1119 { get; set; } /// /// /// - public global::Vapi.RelayTargetAssistantType? Type1120 { get; set; } + public global::Vapi.RelayTargetAssistant? Type1120 { get; set; } /// /// /// - public global::Vapi.RelayTargetSquad? Type1121 { get; set; } + public global::Vapi.RelayTargetAssistantType? Type1121 { get; set; } /// /// /// - public global::Vapi.RelayTargetSquadType? Type1122 { get; set; } + public global::Vapi.RelayTargetSquad? Type1122 { get; set; } /// /// /// - public global::Vapi.RelayTargetOptions? Type1123 { get; set; } + public global::Vapi.RelayTargetSquadType? Type1123 { get; set; } /// /// /// - public global::Vapi.RelayTargetOptionsType? Type1124 { get; set; } + public global::Vapi.RelayTargetOptions? Type1124 { get; set; } /// /// /// - public global::Vapi.RelayCommandSay? Type1125 { get; set; } + public global::Vapi.RelayTargetOptionsType? Type1125 { get; set; } /// /// /// - public global::Vapi.RelayCommandSayType? Type1126 { get; set; } + public global::Vapi.RelayCommandSay? Type1126 { get; set; } /// /// /// - public global::Vapi.RelayCommandNote? Type1127 { get; set; } + public global::Vapi.RelayCommandSayType? Type1127 { get; set; } /// /// /// - public global::Vapi.RelayCommandNoteType? Type1128 { get; set; } + public global::Vapi.RelayCommandNote? Type1128 { get; set; } /// /// /// - public global::Vapi.RelayCommandOptions? Type1129 { get; set; } + public global::Vapi.RelayCommandNoteType? Type1129 { get; set; } /// /// /// - public global::Vapi.RelayCommandOptionsType? Type1130 { get; set; } + public global::Vapi.RelayCommandOptions? Type1130 { get; set; } /// /// /// - public global::Vapi.RelayRequest? Type1131 { get; set; } + public global::Vapi.RelayCommandOptionsType? Type1131 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1132 { get; set; } + public global::Vapi.RelayRequest? Type1132 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1133 { get; set; } + public global::Vapi.OneOf? Type1133 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1134 { get; set; } + public global::System.Collections.Generic.IList>? Type1134 { get; set; } /// /// /// - public global::Vapi.RelayResponse? Type1135 { get; set; } + public global::Vapi.OneOf? Type1135 { get; set; } /// /// /// - public global::Vapi.RelayResponseStatus? Type1136 { get; set; } + public global::Vapi.RelayResponse? Type1136 { get; set; } /// /// /// - public global::Vapi.Session? Type1137 { get; set; } + public global::Vapi.RelayResponseStatus? Type1137 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1138 { get; set; } + public global::Vapi.Session? Type1138 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1139 { get; set; } + public global::System.Collections.Generic.IList>? Type1139 { get; set; } /// /// /// - public global::Vapi.SessionCost? Type1140 { get; set; } + public global::Vapi.OneOf? Type1140 { get; set; } /// /// /// - public global::Vapi.SessionStatus? Type1141 { get; set; } + public global::Vapi.SessionCost? Type1141 { get; set; } /// /// /// - public global::Vapi.CreateSessionDTO? Type1142 { get; set; } + public global::Vapi.SessionStatus? Type1142 { get; set; } /// /// /// - public global::Vapi.CreateSessionDTOStatus? Type1143 { get; set; } + public global::Vapi.CreateSessionDTO? Type1143 { get; set; } /// /// /// - public global::Vapi.UpdateSessionDTO? Type1144 { get; set; } + public global::Vapi.CreateSessionDTOStatus? Type1144 { get; set; } /// /// /// - public global::Vapi.UpdateSessionDTOStatus? Type1145 { get; set; } + public global::Vapi.UpdateSessionDTO? Type1145 { get; set; } /// /// /// - public global::Vapi.GetSessionPaginatedDTO? Type1146 { get; set; } + public global::Vapi.UpdateSessionDTOStatus? Type1146 { get; set; } /// /// /// - public global::Vapi.GetSessionPaginatedDTOSortOrder? Type1147 { get; set; } + public global::Vapi.GetSessionPaginatedDTO? Type1147 { get; set; } /// /// /// - public global::Vapi.GetSessionPaginatedDTOSortBy? Type1148 { get; set; } + public global::Vapi.GetSessionPaginatedDTOSortOrder? Type1148 { get; set; } /// /// /// - public global::Vapi.SessionPaginatedResponse? Type1149 { get; set; } + public global::Vapi.GetSessionPaginatedDTOSortBy? Type1149 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1150 { get; set; } + public global::Vapi.SessionPaginatedResponse? Type1150 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTO? Type1151 { get; set; } + public global::System.Collections.Generic.IList? Type1151 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTOColumns? Type1152 { get; set; } + public global::Vapi.ExportSessionDTO? Type1152 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTOFormat? Type1153 { get; set; } + public global::Vapi.ExportSessionDTOColumns? Type1153 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTOSortOrder? Type1154 { get; set; } + public global::Vapi.ExportSessionDTOFormat? Type1154 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTOSortBy? Type1155 { get; set; } + public global::Vapi.ExportSessionDTOSortOrder? Type1155 { get; set; } /// /// /// - public global::Vapi.ByoPhoneNumber? Type1156 { get; set; } + public global::Vapi.ExportSessionDTOSortBy? Type1156 { get; set; } /// /// /// - public global::Vapi.ByoPhoneNumberProvider? Type1157 { get; set; } + public global::Vapi.ByoPhoneNumber? Type1157 { get; set; } /// /// /// - public global::Vapi.ByoPhoneNumberStatus? Type1158 { get; set; } + public global::Vapi.ByoPhoneNumberProvider? Type1158 { get; set; } /// /// /// - public global::Vapi.TwilioPhoneNumber? Type1159 { get; set; } + public global::Vapi.ByoPhoneNumberStatus? Type1159 { get; set; } /// /// /// - public global::Vapi.TwilioPhoneNumberProvider? Type1160 { get; set; } + public global::Vapi.TwilioPhoneNumber? Type1160 { get; set; } /// /// /// - public global::Vapi.TwilioPhoneNumberStatus? Type1161 { get; set; } + public global::Vapi.TwilioPhoneNumberProvider? Type1161 { get; set; } /// /// /// - public global::Vapi.VonagePhoneNumber? Type1162 { get; set; } + public global::Vapi.TwilioPhoneNumberStatus? Type1162 { get; set; } /// /// /// - public global::Vapi.VonagePhoneNumberProvider? Type1163 { get; set; } + public global::Vapi.VonagePhoneNumber? Type1163 { get; set; } /// /// /// - public global::Vapi.VonagePhoneNumberStatus? Type1164 { get; set; } + public global::Vapi.VonagePhoneNumberProvider? Type1164 { get; set; } /// /// /// - public global::Vapi.SipAuthentication? Type1165 { get; set; } + public global::Vapi.VonagePhoneNumberStatus? Type1165 { get; set; } /// /// /// - public global::Vapi.VapiPhoneNumber? Type1166 { get; set; } + public global::Vapi.SipAuthentication? Type1166 { get; set; } /// /// /// - public global::Vapi.VapiPhoneNumberProvider? Type1167 { get; set; } + public global::Vapi.VapiPhoneNumber? Type1167 { get; set; } /// /// /// - public global::Vapi.VapiPhoneNumberStatus? Type1168 { get; set; } + public global::Vapi.VapiPhoneNumberProvider? Type1168 { get; set; } /// /// /// - public global::Vapi.TelnyxPhoneNumber? Type1169 { get; set; } + public global::Vapi.VapiPhoneNumberStatus? Type1169 { get; set; } /// /// /// - public global::Vapi.TelnyxPhoneNumberProvider? Type1170 { get; set; } + public global::Vapi.TelnyxPhoneNumber? Type1170 { get; set; } /// /// /// - public global::Vapi.TelnyxPhoneNumberStatus? Type1171 { get; set; } + public global::Vapi.TelnyxPhoneNumberProvider? Type1171 { get; set; } /// /// /// - public global::Vapi.CreateByoPhoneNumberDTO? Type1172 { get; set; } + public global::Vapi.TelnyxPhoneNumberStatus? Type1172 { get; set; } /// /// /// - public global::Vapi.CreateByoPhoneNumberDTOProvider? Type1173 { get; set; } + public global::Vapi.CreateByoPhoneNumberDTO? Type1173 { get; set; } /// /// /// - public global::Vapi.CreateTwilioPhoneNumberDTO? Type1174 { get; set; } + public global::Vapi.CreateByoPhoneNumberDTOProvider? Type1174 { get; set; } /// /// /// - public global::Vapi.CreateTwilioPhoneNumberDTOProvider? Type1175 { get; set; } + public global::Vapi.CreateTwilioPhoneNumberDTO? Type1175 { get; set; } /// /// /// - public global::Vapi.CreateVonagePhoneNumberDTO? Type1176 { get; set; } + public global::Vapi.CreateTwilioPhoneNumberDTOProvider? Type1176 { get; set; } /// /// /// - public global::Vapi.CreateVonagePhoneNumberDTOProvider? Type1177 { get; set; } + public global::Vapi.CreateVonagePhoneNumberDTO? Type1177 { get; set; } /// /// /// - public global::Vapi.CreateVapiPhoneNumberDTO? Type1178 { get; set; } + public global::Vapi.CreateVonagePhoneNumberDTOProvider? Type1178 { get; set; } /// /// /// - public global::Vapi.CreateVapiPhoneNumberDTOProvider? Type1179 { get; set; } + public global::Vapi.CreateVapiPhoneNumberDTO? Type1179 { get; set; } /// /// /// - public global::Vapi.CreateTelnyxPhoneNumberDTO? Type1180 { get; set; } + public global::Vapi.CreateVapiPhoneNumberDTOProvider? Type1180 { get; set; } /// /// /// - public global::Vapi.CreateTelnyxPhoneNumberDTOProvider? Type1181 { get; set; } + public global::Vapi.CreateTelnyxPhoneNumberDTO? Type1181 { get; set; } /// /// /// - public global::Vapi.UpdateByoPhoneNumberDTO? Type1182 { get; set; } + public global::Vapi.CreateTelnyxPhoneNumberDTOProvider? Type1182 { get; set; } /// /// /// - public global::Vapi.UpdateTwilioPhoneNumberDTO? Type1183 { get; set; } + public global::Vapi.UpdateByoPhoneNumberDTO? Type1183 { get; set; } /// /// /// - public global::Vapi.UpdateVonagePhoneNumberDTO? Type1184 { get; set; } + public global::Vapi.UpdateTwilioPhoneNumberDTO? Type1184 { get; set; } /// /// /// - public global::Vapi.UpdateVapiPhoneNumberDTO? Type1185 { get; set; } + public global::Vapi.UpdateVonagePhoneNumberDTO? Type1185 { get; set; } /// /// /// - public global::Vapi.UpdateTelnyxPhoneNumberDTO? Type1186 { get; set; } + public global::Vapi.UpdateVapiPhoneNumberDTO? Type1186 { get; set; } /// /// /// - public global::Vapi.ImportVonagePhoneNumberDTO? Type1187 { get; set; } + public global::Vapi.UpdateTelnyxPhoneNumberDTO? Type1187 { get; set; } /// /// /// - public global::Vapi.PhoneNumberPaginatedResponse? Type1188 { get; set; } + public global::Vapi.ImportVonagePhoneNumberDTO? Type1188 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1189 { get; set; } + public global::Vapi.PhoneNumberPaginatedResponse? Type1189 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1190 { get; set; } + public global::System.Collections.Generic.IList>? Type1190 { get; set; } /// /// /// - public global::Vapi.ApiRequestTool? Type1191 { get; set; } + public global::Vapi.OneOf? Type1191 { get; set; } /// /// /// - public global::Vapi.ApiRequestToolType? Type1192 { get; set; } + public global::Vapi.ApiRequestTool? Type1192 { get; set; } /// /// /// - public global::Vapi.ApiRequestToolMethod? Type1193 { get; set; } + public global::Vapi.ApiRequestToolType? Type1193 { get; set; } /// /// /// - public global::Vapi.CodeToolEnvironmentVariable? Type1194 { get; set; } + public global::Vapi.ApiRequestToolMethod? Type1194 { get; set; } /// /// /// - public global::Vapi.CodeTool? Type1195 { get; set; } + public global::Vapi.CodeToolEnvironmentVariable? Type1195 { get; set; } /// /// /// - public global::Vapi.CodeToolType? Type1196 { get; set; } + public global::Vapi.CodeTool? Type1196 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1197 { get; set; } + public global::Vapi.CodeToolType? Type1197 { get; set; } /// /// /// - public global::Vapi.DtmfTool? Type1198 { get; set; } + public global::System.Collections.Generic.IList? Type1198 { get; set; } /// /// /// - public global::Vapi.DtmfToolType? Type1199 { get; set; } + public global::Vapi.DtmfTool? Type1199 { get; set; } /// /// /// - public global::Vapi.EndCallTool? Type1200 { get; set; } + public global::Vapi.DtmfToolType? Type1200 { get; set; } /// /// /// - public global::Vapi.EndCallToolType? Type1201 { get; set; } + public global::Vapi.EndCallTool? Type1201 { get; set; } /// /// /// - public global::Vapi.FunctionTool? Type1202 { get; set; } + public global::Vapi.EndCallToolType? Type1202 { get; set; } /// /// /// - public global::Vapi.FunctionToolType? Type1203 { get; set; } + public global::Vapi.FunctionTool? Type1203 { get; set; } /// /// /// - public global::Vapi.GhlTool? Type1204 { get; set; } + public global::Vapi.FunctionToolType? Type1204 { get; set; } /// /// /// - public global::Vapi.GhlToolType? Type1205 { get; set; } + public global::Vapi.GhlTool? Type1205 { get; set; } /// /// /// - public global::Vapi.MakeTool? Type1206 { get; set; } + public global::Vapi.GhlToolType? Type1206 { get; set; } /// /// /// - public global::Vapi.MakeToolType? Type1207 { get; set; } + public global::Vapi.MakeTool? Type1207 { get; set; } /// /// /// - public global::Vapi.TransferCallTool? Type1208 { get; set; } + public global::Vapi.MakeToolType? Type1208 { get; set; } /// /// /// - public global::Vapi.TransferCallToolType? Type1209 { get; set; } + public global::Vapi.TransferCallTool? Type1209 { get; set; } /// /// /// - public global::Vapi.HandoffTool? Type1210 { get; set; } + public global::Vapi.TransferCallToolType? Type1210 { get; set; } /// /// /// - public global::Vapi.HandoffToolType? Type1211 { get; set; } + public global::Vapi.HandoffTool? Type1211 { get; set; } /// /// /// - public global::Vapi.OutputTool? Type1212 { get; set; } + public global::Vapi.HandoffToolType? Type1212 { get; set; } /// /// /// - public global::Vapi.OutputToolType? Type1213 { get; set; } + public global::Vapi.OutputTool? Type1213 { get; set; } /// /// /// - public global::Vapi.BashTool? Type1214 { get; set; } + public global::Vapi.OutputToolType? Type1214 { get; set; } /// /// /// - public global::Vapi.BashToolType? Type1215 { get; set; } + public global::Vapi.BashTool? Type1215 { get; set; } /// /// /// - public global::Vapi.BashToolSubType? Type1216 { get; set; } + public global::Vapi.BashToolType? Type1216 { get; set; } /// /// /// - public global::Vapi.BashToolName? Type1217 { get; set; } + public global::Vapi.BashToolSubType? Type1217 { get; set; } /// /// /// - public global::Vapi.ComputerTool? Type1218 { get; set; } + public global::Vapi.BashToolName? Type1218 { get; set; } /// /// /// - public global::Vapi.ComputerToolType? Type1219 { get; set; } + public global::Vapi.ComputerTool? Type1219 { get; set; } /// /// /// - public global::Vapi.ComputerToolSubType? Type1220 { get; set; } + public global::Vapi.ComputerToolType? Type1220 { get; set; } /// /// /// - public global::Vapi.ComputerToolName? Type1221 { get; set; } + public global::Vapi.ComputerToolSubType? Type1221 { get; set; } /// /// /// - public global::Vapi.TextEditorTool? Type1222 { get; set; } + public global::Vapi.ComputerToolName? Type1222 { get; set; } /// /// /// - public global::Vapi.TextEditorToolType? Type1223 { get; set; } + public global::Vapi.TextEditorTool? Type1223 { get; set; } /// /// /// - public global::Vapi.TextEditorToolSubType? Type1224 { get; set; } + public global::Vapi.TextEditorToolType? Type1224 { get; set; } /// /// /// - public global::Vapi.TextEditorToolName? Type1225 { get; set; } + public global::Vapi.TextEditorToolSubType? Type1225 { get; set; } /// /// /// - public global::Vapi.QueryTool? Type1226 { get; set; } + public global::Vapi.TextEditorToolName? Type1226 { get; set; } /// /// /// - public global::Vapi.QueryToolType? Type1227 { get; set; } + public global::Vapi.QueryTool? Type1227 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventTool? Type1228 { get; set; } + public global::Vapi.QueryToolType? Type1228 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolType? Type1229 { get; set; } + public global::Vapi.GoogleCalendarCreateEventTool? Type1229 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendTool? Type1230 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolType? Type1230 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolType? Type1231 { get; set; } + public global::Vapi.GoogleSheetsRowAppendTool? Type1231 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCheckAvailabilityTool? Type1232 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolType? Type1232 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCheckAvailabilityToolType? Type1233 { get; set; } + public global::Vapi.GoogleCalendarCheckAvailabilityTool? Type1233 { get; set; } /// /// /// - public global::Vapi.SlackSendMessageTool? Type1234 { get; set; } + public global::Vapi.GoogleCalendarCheckAvailabilityToolType? Type1234 { get; set; } /// /// /// - public global::Vapi.SlackSendMessageToolType? Type1235 { get; set; } + public global::Vapi.SlackSendMessageTool? Type1235 { get; set; } /// /// /// - public global::Vapi.SmsTool? Type1236 { get; set; } + public global::Vapi.SlackSendMessageToolType? Type1236 { get; set; } /// /// /// - public global::Vapi.SmsToolType? Type1237 { get; set; } + public global::Vapi.SmsTool? Type1237 { get; set; } /// /// /// - public global::Vapi.McpTool? Type1238 { get; set; } + public global::Vapi.SmsToolType? Type1238 { get; set; } /// /// /// - public global::Vapi.McpToolType? Type1239 { get; set; } + public global::Vapi.McpTool? Type1239 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityTool? Type1240 { get; set; } + public global::Vapi.McpToolType? Type1240 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolType? Type1241 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityTool? Type1241 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateTool? Type1242 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolType? Type1242 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolType? Type1243 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateTool? Type1243 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateTool? Type1244 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolType? Type1244 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolType? Type1245 { get; set; } + public global::Vapi.GoHighLevelContactCreateTool? Type1245 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetTool? Type1246 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolType? Type1246 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolType? Type1247 { get; set; } + public global::Vapi.GoHighLevelContactGetTool? Type1247 { get; set; } /// /// /// - public global::Vapi.SipRequestTool? Type1248 { get; set; } + public global::Vapi.GoHighLevelContactGetToolType? Type1248 { get; set; } /// /// /// - public global::Vapi.SipRequestToolType? Type1249 { get; set; } + public global::Vapi.SipRequestTool? Type1249 { get; set; } /// /// /// - public global::Vapi.SipRequestToolVerb? Type1250 { get; set; } + public global::Vapi.SipRequestToolType? Type1250 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1251 { get; set; } + public global::Vapi.SipRequestToolVerb? Type1251 { get; set; } /// /// /// - public global::Vapi.VoicemailTool? Type1252 { get; set; } + public global::Vapi.OneOf? Type1252 { get; set; } /// /// /// - public global::Vapi.VoicemailToolType? Type1253 { get; set; } + public global::Vapi.VoicemailTool? Type1253 { get; set; } /// /// /// - public global::Vapi.CreateApiRequestToolDTOType? Type1254 { get; set; } + public global::Vapi.VoicemailToolType? Type1254 { get; set; } /// /// /// - public global::Vapi.CreateApiRequestToolDTOMethod? Type1255 { get; set; } + public global::Vapi.CreateApiRequestToolDTOType? Type1255 { get; set; } /// /// /// - public global::Vapi.CreateCodeToolDTOType? Type1256 { get; set; } + public global::Vapi.CreateApiRequestToolDTOMethod? Type1256 { get; set; } /// /// /// - public global::Vapi.CreateOutputToolDTO? Type1257 { get; set; } + public global::Vapi.CreateCodeToolDTOType? Type1257 { get; set; } /// /// /// - public global::Vapi.CreateOutputToolDTOType? Type1258 { get; set; } + public global::Vapi.CreateOutputToolDTO? Type1258 { get; set; } /// /// /// - public global::Vapi.CreateBashToolDTOType? Type1259 { get; set; } + public global::Vapi.CreateOutputToolDTOType? Type1259 { get; set; } /// /// /// - public global::Vapi.CreateBashToolDTOSubType? Type1260 { get; set; } + public global::Vapi.CreateBashToolDTOType? Type1260 { get; set; } /// /// /// - public global::Vapi.CreateBashToolDTOName? Type1261 { get; set; } + public global::Vapi.CreateBashToolDTOSubType? Type1261 { get; set; } /// /// /// - public global::Vapi.CreateComputerToolDTOType? Type1262 { get; set; } + public global::Vapi.CreateBashToolDTOName? Type1262 { get; set; } /// /// /// - public global::Vapi.CreateComputerToolDTOSubType? Type1263 { get; set; } + public global::Vapi.CreateComputerToolDTOType? Type1263 { get; set; } /// /// /// - public global::Vapi.CreateComputerToolDTOName? Type1264 { get; set; } + public global::Vapi.CreateComputerToolDTOSubType? Type1264 { get; set; } /// /// /// - public global::Vapi.CreateTextEditorToolDTOType? Type1265 { get; set; } + public global::Vapi.CreateComputerToolDTOName? Type1265 { get; set; } /// /// /// - public global::Vapi.CreateTextEditorToolDTOSubType? Type1266 { get; set; } + public global::Vapi.CreateTextEditorToolDTOType? Type1266 { get; set; } /// /// /// - public global::Vapi.CreateTextEditorToolDTOName? Type1267 { get; set; } + public global::Vapi.CreateTextEditorToolDTOSubType? Type1267 { get; set; } /// /// /// - public global::Vapi.CreateSmsToolDTOType? Type1268 { get; set; } + public global::Vapi.CreateTextEditorToolDTOName? Type1268 { get; set; } /// /// /// - public global::Vapi.CreateSipRequestToolDTOType? Type1269 { get; set; } + public global::Vapi.CreateSmsToolDTOType? Type1269 { get; set; } /// /// /// - public global::Vapi.CreateSipRequestToolDTOVerb? Type1270 { get; set; } + public global::Vapi.CreateSipRequestToolDTOType? Type1270 { get; set; } /// /// /// - public global::Vapi.UpdateApiRequestToolDTO? Type1271 { get; set; } + public global::Vapi.CreateSipRequestToolDTOVerb? Type1271 { get; set; } /// /// /// - public global::Vapi.UpdateApiRequestToolDTOMethod? Type1272 { get; set; } + public global::Vapi.UpdateApiRequestToolDTO? Type1272 { get; set; } /// /// /// - public global::Vapi.UpdateCodeToolDTO? Type1273 { get; set; } + public global::Vapi.UpdateApiRequestToolDTOMethod? Type1273 { get; set; } /// /// /// - public global::Vapi.UpdateDtmfToolDTO? Type1274 { get; set; } + public global::Vapi.UpdateCodeToolDTO? Type1274 { get; set; } /// /// /// - public global::Vapi.UpdateEndCallToolDTO? Type1275 { get; set; } + public global::Vapi.UpdateDtmfToolDTO? Type1275 { get; set; } /// /// /// - public global::Vapi.UpdateFunctionToolDTO? Type1276 { get; set; } + public global::Vapi.UpdateEndCallToolDTO? Type1276 { get; set; } /// /// /// - public global::Vapi.UpdateGhlToolDTO? Type1277 { get; set; } + public global::Vapi.UpdateFunctionToolDTO? Type1277 { get; set; } /// /// /// - public global::Vapi.UpdateMakeToolDTO? Type1278 { get; set; } + public global::Vapi.UpdateGhlToolDTO? Type1278 { get; set; } /// /// /// - public global::Vapi.UpdateHandoffToolDTO? Type1279 { get; set; } + public global::Vapi.UpdateMakeToolDTO? Type1279 { get; set; } /// /// /// - public global::Vapi.UpdateTransferCallToolDTO? Type1280 { get; set; } + public global::Vapi.UpdateHandoffToolDTO? Type1280 { get; set; } /// /// /// - public global::Vapi.UpdateOutputToolDTO? Type1281 { get; set; } + public global::Vapi.UpdateTransferCallToolDTO? Type1281 { get; set; } /// /// /// - public global::Vapi.UpdateBashToolDTO? Type1282 { get; set; } + public global::Vapi.UpdateOutputToolDTO? Type1282 { get; set; } /// /// /// - public global::Vapi.UpdateBashToolDTOSubType? Type1283 { get; set; } + public global::Vapi.UpdateBashToolDTO? Type1283 { get; set; } /// /// /// - public global::Vapi.UpdateBashToolDTOName? Type1284 { get; set; } + public global::Vapi.UpdateBashToolDTOSubType? Type1284 { get; set; } /// /// /// - public global::Vapi.UpdateComputerToolDTO? Type1285 { get; set; } + public global::Vapi.UpdateBashToolDTOName? Type1285 { get; set; } /// /// /// - public global::Vapi.UpdateComputerToolDTOSubType? Type1286 { get; set; } + public global::Vapi.UpdateComputerToolDTO? Type1286 { get; set; } /// /// /// - public global::Vapi.UpdateComputerToolDTOName? Type1287 { get; set; } + public global::Vapi.UpdateComputerToolDTOSubType? Type1287 { get; set; } /// /// /// - public global::Vapi.UpdateTextEditorToolDTO? Type1288 { get; set; } + public global::Vapi.UpdateComputerToolDTOName? Type1288 { get; set; } /// /// /// - public global::Vapi.UpdateTextEditorToolDTOSubType? Type1289 { get; set; } + public global::Vapi.UpdateTextEditorToolDTO? Type1289 { get; set; } /// /// /// - public global::Vapi.UpdateTextEditorToolDTOName? Type1290 { get; set; } + public global::Vapi.UpdateTextEditorToolDTOSubType? Type1290 { get; set; } /// /// /// - public global::Vapi.UpdateQueryToolDTO? Type1291 { get; set; } + public global::Vapi.UpdateTextEditorToolDTOName? Type1291 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarCreateEventToolDTO? Type1292 { get; set; } + public global::Vapi.UpdateQueryToolDTO? Type1292 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleSheetsRowAppendToolDTO? Type1293 { get; set; } + public global::Vapi.UpdateGoogleCalendarCreateEventToolDTO? Type1293 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarCheckAvailabilityToolDTO? Type1294 { get; set; } + public global::Vapi.UpdateGoogleSheetsRowAppendToolDTO? Type1294 { get; set; } /// /// /// - public global::Vapi.UpdateSlackSendMessageToolDTO? Type1295 { get; set; } + public global::Vapi.UpdateGoogleCalendarCheckAvailabilityToolDTO? Type1295 { get; set; } /// /// /// - public global::Vapi.UpdateSmsToolDTO? Type1296 { get; set; } + public global::Vapi.UpdateSlackSendMessageToolDTO? Type1296 { get; set; } /// /// /// - public global::Vapi.UpdateMcpToolDTO? Type1297 { get; set; } + public global::Vapi.UpdateSmsToolDTO? Type1297 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelCalendarAvailabilityToolDTO? Type1298 { get; set; } + public global::Vapi.UpdateMcpToolDTO? Type1298 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelCalendarEventCreateToolDTO? Type1299 { get; set; } + public global::Vapi.UpdateGoHighLevelCalendarAvailabilityToolDTO? Type1299 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelContactCreateToolDTO? Type1300 { get; set; } + public global::Vapi.UpdateGoHighLevelCalendarEventCreateToolDTO? Type1300 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelContactGetToolDTO? Type1301 { get; set; } + public global::Vapi.UpdateGoHighLevelContactCreateToolDTO? Type1301 { get; set; } /// /// /// - public global::Vapi.UpdateSipRequestToolDTO? Type1302 { get; set; } + public global::Vapi.UpdateGoHighLevelContactGetToolDTO? Type1302 { get; set; } /// /// /// - public global::Vapi.UpdateSipRequestToolDTOVerb? Type1303 { get; set; } + public global::Vapi.UpdateSipRequestToolDTO? Type1303 { get; set; } /// /// /// - public global::Vapi.UpdateVoicemailToolDTO? Type1304 { get; set; } + public global::Vapi.UpdateSipRequestToolDTOVerb? Type1304 { get; set; } /// /// /// - public global::Vapi.CreateFileDTO? Type1305 { get; set; } + public global::Vapi.UpdateVoicemailToolDTO? Type1305 { get; set; } /// /// /// - public global::Vapi.File? Type1306 { get; set; } + public global::Vapi.CreateFileDTO? Type1306 { get; set; } /// /// /// - public global::Vapi.FileObject? Type1307 { get; set; } + public global::Vapi.File? Type1307 { get; set; } /// /// /// - public global::Vapi.FileStatus? Type1308 { get; set; } + public global::Vapi.FileObject? Type1308 { get; set; } /// /// /// - public global::Vapi.UpdateFileDTO? Type1309 { get; set; } + public global::Vapi.FileStatus? Type1309 { get; set; } /// /// /// - public global::Vapi.CustomKnowledgeBase? Type1310 { get; set; } + public global::Vapi.UpdateFileDTO? Type1310 { get; set; } /// /// /// - public global::Vapi.CustomKnowledgeBaseProvider? Type1311 { get; set; } + public global::Vapi.CustomKnowledgeBase? Type1311 { get; set; } /// /// /// - public global::Vapi.UpdateCustomKnowledgeBaseDTO? Type1312 { get; set; } + public global::Vapi.CustomKnowledgeBaseProvider? Type1312 { get; set; } /// /// /// - public global::Vapi.StructuredOutput? Type1313 { get; set; } + public global::Vapi.UpdateCustomKnowledgeBaseDTO? Type1313 { get; set; } /// /// /// - public global::Vapi.StructuredOutputType? Type1314 { get; set; } + public global::Vapi.StructuredOutput? Type1314 { get; set; } /// /// /// - public global::Vapi.StructuredOutputPaginatedResponse? Type1315 { get; set; } + public global::Vapi.StructuredOutputType? Type1315 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1316 { get; set; } + public global::Vapi.StructuredOutputPaginatedResponse? Type1316 { get; set; } /// /// /// - public global::Vapi.UpdateStructuredOutputDTO? Type1317 { get; set; } + public global::System.Collections.Generic.IList? Type1317 { get; set; } /// /// /// - public global::Vapi.UpdateStructuredOutputDTOType? Type1318 { get; set; } + public global::Vapi.UpdateStructuredOutputDTO? Type1318 { get; set; } /// /// /// - public global::Vapi.StructuredOutputRunDTO? Type1319 { get; set; } + public global::Vapi.UpdateStructuredOutputDTOType? Type1319 { get; set; } /// /// /// - public global::Vapi.TesterPlan? Type1320 { get; set; } + public global::Vapi.StructuredOutputRunDTO? Type1320 { get; set; } /// /// /// - public global::Vapi.TestSuitePhoneNumber? Type1321 { get; set; } + public global::Vapi.TesterPlan? Type1321 { get; set; } /// /// /// - public global::Vapi.TestSuitePhoneNumberProvider? Type1322 { get; set; } + public global::Vapi.TestSuitePhoneNumber? Type1322 { get; set; } /// /// /// - public global::Vapi.TargetPlan? Type1323 { get; set; } + public global::Vapi.TestSuitePhoneNumberProvider? Type1323 { get; set; } /// /// /// - public global::Vapi.TestSuite? Type1324 { get; set; } + public global::Vapi.TargetPlan? Type1324 { get; set; } /// /// /// - public global::Vapi.TestSuitesPaginatedResponse? Type1325 { get; set; } + public global::Vapi.TestSuite? Type1325 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1326 { get; set; } + public global::Vapi.TestSuitesPaginatedResponse? Type1326 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteDto? Type1327 { get; set; } + public global::System.Collections.Generic.IList? Type1327 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteDto? Type1328 { get; set; } + public global::Vapi.CreateTestSuiteDto? Type1328 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestVoice? Type1329 { get; set; } + public global::Vapi.UpdateTestSuiteDto? Type1329 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1330 { get; set; } + public global::Vapi.TestSuiteTestVoice? Type1330 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestScorerAI? Type1331 { get; set; } + public global::System.Collections.Generic.IList? Type1331 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestVoiceType? Type1332 { get; set; } + public global::Vapi.TestSuiteTestScorerAI? Type1332 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestChat? Type1333 { get; set; } + public global::Vapi.TestSuiteTestVoiceType? Type1333 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestChatType? Type1334 { get; set; } + public global::Vapi.TestSuiteTestChat? Type1334 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteTestVoiceDto? Type1335 { get; set; } + public global::Vapi.TestSuiteTestChatType? Type1335 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteTestVoiceDtoType? Type1336 { get; set; } + public global::Vapi.CreateTestSuiteTestVoiceDto? Type1336 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteTestChatDto? Type1337 { get; set; } + public global::Vapi.CreateTestSuiteTestVoiceDtoType? Type1337 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteTestChatDtoType? Type1338 { get; set; } + public global::Vapi.CreateTestSuiteTestChatDto? Type1338 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteTestVoiceDto? Type1339 { get; set; } + public global::Vapi.CreateTestSuiteTestChatDtoType? Type1339 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteTestVoiceDtoType? Type1340 { get; set; } + public global::Vapi.UpdateTestSuiteTestVoiceDto? Type1340 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteTestChatDto? Type1341 { get; set; } + public global::Vapi.UpdateTestSuiteTestVoiceDtoType? Type1341 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteTestChatDtoType? Type1342 { get; set; } + public global::Vapi.UpdateTestSuiteTestChatDto? Type1342 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestScorerAIType? Type1343 { get; set; } + public global::Vapi.UpdateTestSuiteTestChatDtoType? Type1343 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestsPaginatedResponse? Type1344 { get; set; } + public global::Vapi.TestSuiteTestScorerAIType? Type1344 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1345 { get; set; } + public global::Vapi.TestSuiteTestsPaginatedResponse? Type1345 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1346 { get; set; } + public global::System.Collections.Generic.IList>? Type1346 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunScorerAI? Type1347 { get; set; } + public global::Vapi.OneOf? Type1347 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunScorerAIType? Type1348 { get; set; } + public global::Vapi.TestSuiteRunScorerAI? Type1348 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunScorerAIResult? Type1349 { get; set; } + public global::Vapi.TestSuiteRunScorerAIType? Type1349 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunTestAttemptCall? Type1350 { get; set; } + public global::Vapi.TestSuiteRunScorerAIResult? Type1350 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunTestAttemptMetadata? Type1351 { get; set; } + public global::Vapi.TestSuiteRunTestAttemptCall? Type1351 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunTestAttempt? Type1352 { get; set; } + public global::Vapi.TestSuiteRunTestAttemptMetadata? Type1352 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1353 { get; set; } + public global::Vapi.TestSuiteRunTestAttempt? Type1353 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunTestResult? Type1354 { get; set; } + public global::System.Collections.Generic.IList? Type1354 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1355 { get; set; } + public global::Vapi.TestSuiteRunTestResult? Type1355 { get; set; } /// /// /// - public global::Vapi.TestSuiteRun? Type1356 { get; set; } + public global::System.Collections.Generic.IList? Type1356 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunStatus? Type1357 { get; set; } + public global::Vapi.TestSuiteRun? Type1357 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1358 { get; set; } + public global::Vapi.TestSuiteRunStatus? Type1358 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunsPaginatedResponse? Type1359 { get; set; } + public global::System.Collections.Generic.IList? Type1359 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1360 { get; set; } + public global::Vapi.TestSuiteRunsPaginatedResponse? Type1360 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteRunDto? Type1361 { get; set; } + public global::System.Collections.Generic.IList? Type1361 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteRunDto? Type1362 { get; set; } + public global::Vapi.CreateTestSuiteRunDto? Type1362 { get; set; } /// /// /// - public global::Vapi.CreatePersonalityDTO? Type1363 { get; set; } + public global::Vapi.UpdateTestSuiteRunDto? Type1363 { get; set; } /// /// /// - public global::Vapi.Personality? Type1364 { get; set; } + public global::Vapi.CreatePersonalityDTO? Type1364 { get; set; } /// /// /// - public global::System.Guid? Type1365 { get; set; } + public global::Vapi.Personality? Type1365 { get; set; } /// /// /// - public global::Vapi.UpdatePersonalityDTO? Type1366 { get; set; } + public global::System.Guid? Type1366 { get; set; } /// /// /// - public global::Vapi.SimulationHookInclude? Type1367 { get; set; } + public global::Vapi.UpdatePersonalityDTO? Type1367 { get; set; } /// /// /// - public global::Vapi.SimulationHookWebhookAction? Type1368 { get; set; } + public global::Vapi.SimulationHookInclude? Type1368 { get; set; } /// /// /// - public global::Vapi.SimulationHookWebhookActionType? Type1369 { get; set; } + public global::Vapi.SimulationHookWebhookAction? Type1369 { get; set; } /// /// /// - public global::Vapi.SimulationHookCallStarted? Type1370 { get; set; } + public global::Vapi.SimulationHookWebhookActionType? Type1370 { get; set; } /// /// /// - public global::Vapi.SimulationHookCallStartedOn? Type1371 { get; set; } + public global::Vapi.SimulationHookCallStarted? Type1371 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1372 { get; set; } + public global::Vapi.SimulationHookCallStartedOn? Type1372 { get; set; } /// /// /// - public global::Vapi.SimulationHookCallEnded? Type1373 { get; set; } + public global::System.Collections.Generic.IList? Type1373 { get; set; } /// /// /// - public global::Vapi.SimulationHookCallEndedOn? Type1374 { get; set; } + public global::Vapi.SimulationHookCallEnded? Type1374 { get; set; } /// /// /// - public global::Vapi.EvaluationPlanItem? Type1375 { get; set; } + public global::Vapi.SimulationHookCallEndedOn? Type1375 { get; set; } /// /// /// - public global::Vapi.EvaluationPlanItemComparator? Type1376 { get; set; } + public global::Vapi.EvaluationPlanItem? Type1376 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1377 { get; set; } + public global::Vapi.EvaluationPlanItemComparator? Type1377 { get; set; } /// /// /// - public global::Vapi.ScenarioToolMock? Type1378 { get; set; } + public global::Vapi.OneOf? Type1378 { get; set; } /// /// /// - public global::Vapi.CreateScenarioDTO? Type1379 { get; set; } + public global::Vapi.ScenarioToolMock? Type1379 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1380 { get; set; } + public global::Vapi.CreateScenarioDTO? Type1380 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1381 { get; set; } + public global::System.Collections.Generic.IList? Type1381 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1382 { get; set; } + public global::System.Collections.Generic.IList>? Type1382 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1383 { get; set; } + public global::Vapi.OneOf? Type1383 { get; set; } /// /// /// - public global::Vapi.Scenario? Type1384 { get; set; } + public global::System.Collections.Generic.IList? Type1384 { get; set; } /// /// /// - public global::Vapi.UpdateScenarioDTO? Type1385 { get; set; } + public global::Vapi.Scenario? Type1385 { get; set; } /// /// /// - public global::Vapi.SimulationRunSimulationEntry? Type1386 { get; set; } + public global::Vapi.UpdateScenarioDTO? Type1386 { get; set; } /// /// /// - public global::Vapi.SimulationRunSimulationEntryType? Type1387 { get; set; } + public global::Vapi.SimulationRunSimulationEntry? Type1387 { get; set; } /// /// /// - public global::Vapi.SimulationRunSuiteEntry? Type1388 { get; set; } + public global::Vapi.SimulationRunSimulationEntryType? Type1388 { get; set; } /// /// /// - public global::Vapi.SimulationRunSuiteEntryType? Type1389 { get; set; } + public global::Vapi.SimulationRunSuiteEntry? Type1389 { get; set; } /// /// /// - public global::Vapi.SimulationRunTargetAssistant? Type1390 { get; set; } + public global::Vapi.SimulationRunSuiteEntryType? Type1390 { get; set; } /// /// /// - public global::Vapi.SimulationRunTargetAssistantType? Type1391 { get; set; } + public global::Vapi.SimulationRunTargetAssistant? Type1391 { get; set; } /// /// /// - public global::Vapi.SimulationRunTargetSquad? Type1392 { get; set; } + public global::Vapi.SimulationRunTargetAssistantType? Type1392 { get; set; } /// /// /// - public global::Vapi.SimulationRunTargetSquadType? Type1393 { get; set; } + public global::Vapi.SimulationRunTargetSquad? Type1393 { get; set; } /// /// /// - public global::Vapi.SimulationRunTransportConfiguration? Type1394 { get; set; } + public global::Vapi.SimulationRunTargetSquadType? Type1394 { get; set; } /// /// /// - public global::Vapi.SimulationRunTransportConfigurationProvider? Type1395 { get; set; } + public global::Vapi.SimulationRunTransportConfiguration? Type1395 { get; set; } /// /// /// - public global::Vapi.CreateSimulationRunDTO? Type1396 { get; set; } + public global::Vapi.SimulationRunTransportConfigurationProvider? Type1396 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1397 { get; set; } + public global::Vapi.CreateSimulationRunDTO? Type1397 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1398 { get; set; } + public global::System.Collections.Generic.IList>? Type1398 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1399 { get; set; } + public global::Vapi.OneOf? Type1399 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemCounts? Type1400 { get; set; } + public global::Vapi.OneOf? Type1400 { get; set; } /// /// /// - public global::Vapi.SimulationRun? Type1401 { get; set; } + public global::Vapi.SimulationRunItemCounts? Type1401 { get; set; } /// /// /// - public global::Vapi.SimulationRunStatus? Type1402 { get; set; } + public global::Vapi.SimulationRun? Type1402 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemCallMonitor? Type1403 { get; set; } + public global::Vapi.SimulationRunStatus? Type1403 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemCallMetadata? Type1404 { get; set; } + public global::Vapi.SimulationRunItemCallMonitor? Type1404 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemMetadata? Type1405 { get; set; } + public global::Vapi.SimulationRunItemCallMetadata? Type1405 { get; set; } /// /// /// - public global::Vapi.StructuredOutputEvaluationResult? Type1406 { get; set; } + public global::Vapi.SimulationRunItemMetadata? Type1406 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1407 { get; set; } + public global::Vapi.StructuredOutputEvaluationResult? Type1407 { get; set; } /// /// /// - public global::Vapi.StructuredOutputEvaluationResultComparator? Type1408 { get; set; } + public global::Vapi.OneOf? Type1408 { get; set; } /// /// /// - public global::Vapi.LatencyMetrics? Type1409 { get; set; } + public global::Vapi.StructuredOutputEvaluationResultComparator? Type1409 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemResults? Type1410 { get; set; } + public global::Vapi.LatencyMetrics? Type1410 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1411 { get; set; } + public global::Vapi.SimulationRunItemResults? Type1411 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemImprovementSuggestion? Type1412 { get; set; } + public global::System.Collections.Generic.IList? Type1412 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemImprovements? Type1413 { get; set; } + public global::Vapi.SimulationRunItemImprovementSuggestion? Type1413 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1414 { get; set; } + public global::Vapi.SimulationRunItemImprovements? Type1414 { get; set; } /// /// /// - public global::Vapi.SimulationRunConfiguration? Type1415 { get; set; } + public global::System.Collections.Generic.IList? Type1415 { get; set; } /// /// /// - public global::Vapi.SimulationRunItem? Type1416 { get; set; } + public global::Vapi.SimulationRunConfiguration? Type1416 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemStatus? Type1417 { get; set; } + public global::Vapi.SimulationRunItem? Type1417 { get; set; } /// /// /// - public global::Vapi.CreateSimulationSuiteDTO? Type1418 { get; set; } + public global::Vapi.SimulationRunItemStatus? Type1418 { get; set; } /// /// /// - public global::Vapi.SimulationSuite? Type1419 { get; set; } + public global::Vapi.CreateSimulationSuiteDTO? Type1419 { get; set; } /// /// /// - public global::Vapi.UpdateSimulationSuiteDTO? Type1420 { get; set; } + public global::Vapi.SimulationSuite? Type1420 { get; set; } /// /// /// - public global::Vapi.GenerateScenariosDTO? Type1421 { get; set; } + public global::Vapi.UpdateSimulationSuiteDTO? Type1421 { get; set; } /// /// /// - public global::Vapi.GeneratedScenario? Type1422 { get; set; } + public global::Vapi.GenerateScenariosDTO? Type1422 { get; set; } /// /// /// - public global::Vapi.GeneratedScenarioCategory? Type1423 { get; set; } + public global::Vapi.GeneratedScenario? Type1423 { get; set; } /// /// /// - public global::Vapi.GenerateScenariosResponse? Type1424 { get; set; } + public global::Vapi.GeneratedScenarioCategory? Type1424 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1425 { get; set; } + public global::Vapi.GenerateScenariosResponse? Type1425 { get; set; } /// /// /// - public global::Vapi.CreateSimulationDTO? Type1426 { get; set; } + public global::System.Collections.Generic.IList? Type1426 { get; set; } /// /// /// - public global::Vapi.Simulation? Type1427 { get; set; } + public global::Vapi.CreateSimulationDTO? Type1427 { get; set; } /// /// /// - public global::Vapi.UpdateSimulationDTO? Type1428 { get; set; } + public global::Vapi.Simulation? Type1428 { get; set; } /// /// /// - public global::Vapi.SimulationConcurrencyResponse? Type1429 { get; set; } + public global::Vapi.UpdateSimulationDTO? Type1429 { get; set; } /// /// /// - public global::Vapi.BarInsightMetadata? Type1430 { get; set; } + public global::Vapi.SimulationConcurrencyResponse? Type1430 { get; set; } /// /// /// - public global::Vapi.InsightTimeRangeWithStep? Type1431 { get; set; } + public global::Vapi.BarInsightMetadata? Type1431 { get; set; } /// /// /// - public global::Vapi.InsightTimeRangeWithStepStep? Type1432 { get; set; } + public global::Vapi.InsightTimeRangeWithStep? Type1432 { get; set; } /// /// /// - public global::Vapi.BarInsight? Type1433 { get; set; } + public global::Vapi.InsightTimeRangeWithStepStep? Type1433 { get; set; } /// /// /// - public global::Vapi.BarInsightType? Type1434 { get; set; } + public global::Vapi.BarInsight? Type1434 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1435 { get; set; } + public global::Vapi.BarInsightType? Type1435 { get; set; } /// /// /// - public global::Vapi.InsightFormula? Type1436 { get; set; } + public global::System.Collections.Generic.IList? Type1436 { get; set; } /// /// /// - public global::Vapi.BarInsightGroupBy? Type1437 { get; set; } + public global::Vapi.InsightFormula? Type1437 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumn? Type1438 { get; set; } + public global::Vapi.BarInsightGroupBy? Type1438 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumn? Type1439 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumn? Type1439 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumn? Type1440 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumn? Type1440 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTable? Type1441 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumn? Type1441 { get; set; } /// /// /// - public global::Vapi.InsightTimeRange? Type1442 { get; set; } + public global::Vapi.JSONQueryOnEventsTable? Type1442 { get; set; } /// /// /// - public global::Vapi.PieInsight? Type1443 { get; set; } + public global::Vapi.InsightTimeRange? Type1443 { get; set; } /// /// /// - public global::Vapi.PieInsightType? Type1444 { get; set; } + public global::Vapi.PieInsight? Type1444 { get; set; } /// /// /// - public global::Vapi.PieInsightGroupBy? Type1445 { get; set; } + public global::Vapi.PieInsightType? Type1445 { get; set; } /// /// /// - public global::Vapi.LineInsightMetadata? Type1446 { get; set; } + public global::Vapi.PieInsightGroupBy? Type1446 { get; set; } /// /// /// - public global::Vapi.LineInsight? Type1447 { get; set; } + public global::Vapi.LineInsightMetadata? Type1447 { get; set; } /// /// /// - public global::Vapi.LineInsightType? Type1448 { get; set; } + public global::Vapi.LineInsight? Type1448 { get; set; } /// /// /// - public global::Vapi.LineInsightGroupBy? Type1449 { get; set; } + public global::Vapi.LineInsightType? Type1449 { get; set; } /// /// /// - public global::Vapi.TextInsight? Type1450 { get; set; } + public global::Vapi.LineInsightGroupBy? Type1450 { get; set; } /// /// /// - public global::Vapi.TextInsightType? Type1451 { get; set; } + public global::Vapi.TextInsight? Type1451 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTO? Type1452 { get; set; } + public global::Vapi.TextInsightType? Type1452 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTOType? Type1453 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTO? Type1453 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTOGroupBy? Type1454 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTOType? Type1454 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTO? Type1455 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTOGroupBy? Type1455 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTOType? Type1456 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTO? Type1456 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTOGroupBy? Type1457 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTOType? Type1457 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTO? Type1458 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTOGroupBy? Type1458 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTOType? Type1459 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTO? Type1459 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTOGroupBy? Type1460 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTOType? Type1460 { get; set; } /// /// /// - public global::Vapi.UpdateTextInsightFromCallTableDTO? Type1461 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTOGroupBy? Type1461 { get; set; } /// /// /// - public global::Vapi.UpdateTextInsightFromCallTableDTOType? Type1462 { get; set; } + public global::Vapi.UpdateTextInsightFromCallTableDTO? Type1462 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTO? Type1463 { get; set; } + public global::Vapi.UpdateTextInsightFromCallTableDTOType? Type1463 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTOType? Type1464 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTO? Type1464 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTOGroupBy? Type1465 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTOType? Type1465 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTO? Type1466 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTOGroupBy? Type1466 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTOType? Type1467 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTO? Type1467 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTOGroupBy? Type1468 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTOType? Type1468 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTO? Type1469 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTOGroupBy? Type1469 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTOType? Type1470 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTO? Type1470 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTOGroupBy? Type1471 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTOType? Type1471 { get; set; } /// /// /// - public global::Vapi.CreateTextInsightFromCallTableDTO? Type1472 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTOGroupBy? Type1472 { get; set; } /// /// /// - public global::Vapi.CreateTextInsightFromCallTableDTOType? Type1473 { get; set; } + public global::Vapi.CreateTextInsightFromCallTableDTO? Type1473 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnType? Type1474 { get; set; } + public global::Vapi.CreateTextInsightFromCallTableDTOType? Type1474 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnTable? Type1475 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnType? Type1475 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTable? Type1476 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnTable? Type1476 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTable? Type1477 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTable? Type1477 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTable? Type1478 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTable? Type1478 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTable? Type1479 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTable? Type1479 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTable? Type1480 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTable? Type1480 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTable? Type1481 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTable? Type1481 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnColumn? Type1482 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTable? Type1482 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnOperation? Type1483 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnColumn? Type1483 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnType? Type1484 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnOperation? Type1484 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnTable? Type1485 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnType? Type1485 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnColumn? Type1486 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnTable? Type1486 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnOperation? Type1487 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnColumn? Type1487 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnType? Type1488 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnOperation? Type1488 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnTable? Type1489 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnType? Type1489 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnColumn? Type1490 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnTable? Type1490 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnOperation? Type1491 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnColumn? Type1491 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableType? Type1492 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnOperation? Type1492 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableTable? Type1493 { get; set; } + public global::Vapi.JSONQueryOnEventsTableType? Type1493 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableOn? Type1494 { get; set; } + public global::Vapi.JSONQueryOnEventsTableTable? Type1494 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableOperation? Type1495 { get; set; } + public global::Vapi.JSONQueryOnEventsTableOn? Type1495 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1496 { get; set; } + public global::Vapi.JSONQueryOnEventsTableOperation? Type1496 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1497 { get; set; } + public global::System.Collections.Generic.IList>? Type1497 { get; set; } /// /// /// - public global::Vapi.EventsTableStringCondition? Type1498 { get; set; } + public global::Vapi.OneOf? Type1498 { get; set; } /// /// /// - public global::Vapi.EventsTableNumberCondition? Type1499 { get; set; } + public global::Vapi.EventsTableStringCondition? Type1499 { get; set; } /// /// /// - public global::Vapi.EventsTableBooleanCondition? Type1500 { get; set; } + public global::Vapi.EventsTableNumberCondition? Type1500 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTableColumn? Type1501 { get; set; } + public global::Vapi.EventsTableBooleanCondition? Type1501 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTableOperator? Type1502 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTableColumn? Type1502 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTableColumn? Type1503 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTableOperator? Type1503 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTableOperator? Type1504 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTableColumn? Type1504 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTableColumn? Type1505 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTableOperator? Type1505 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTableOperator? Type1506 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTableColumn? Type1506 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTableColumn? Type1507 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTableOperator? Type1507 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTableOperator? Type1508 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTableColumn? Type1508 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn? Type1509 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTableOperator? Type1509 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator? Type1510 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn? Type1510 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTableColumn? Type1511 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator? Type1511 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTableOperator? Type1512 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTableColumn? Type1512 { get; set; } /// /// /// - public global::Vapi.EventsTableStringConditionOperator? Type1513 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTableOperator? Type1513 { get; set; } /// /// /// - public global::Vapi.EventsTableNumberConditionOperator? Type1514 { get; set; } + public global::Vapi.EventsTableStringConditionOperator? Type1514 { get; set; } /// /// /// - public global::Vapi.EventsTableBooleanConditionOperator? Type1515 { get; set; } + public global::Vapi.EventsTableNumberConditionOperator? Type1515 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTable? Type1516 { get; set; } + public global::Vapi.EventsTableBooleanConditionOperator? Type1516 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTableType? Type1517 { get; set; } + public global::Vapi.BarInsightFromCallTable? Type1517 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTableGroupBy? Type1518 { get; set; } + public global::Vapi.BarInsightFromCallTableType? Type1518 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTable? Type1519 { get; set; } + public global::Vapi.BarInsightFromCallTableGroupBy? Type1519 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTableType? Type1520 { get; set; } + public global::Vapi.PieInsightFromCallTable? Type1520 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTableGroupBy? Type1521 { get; set; } + public global::Vapi.PieInsightFromCallTableType? Type1521 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTable? Type1522 { get; set; } + public global::Vapi.PieInsightFromCallTableGroupBy? Type1522 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTableType? Type1523 { get; set; } + public global::Vapi.LineInsightFromCallTable? Type1523 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTableGroupBy? Type1524 { get; set; } + public global::Vapi.LineInsightFromCallTableType? Type1524 { get; set; } /// /// /// - public global::Vapi.TextInsightFromCallTable? Type1525 { get; set; } + public global::Vapi.LineInsightFromCallTableGroupBy? Type1525 { get; set; } /// /// /// - public global::Vapi.TextInsightFromCallTableType? Type1526 { get; set; } + public global::Vapi.TextInsightFromCallTable? Type1526 { get; set; } /// /// /// - public global::Vapi.InsightRunFormatPlan? Type1527 { get; set; } + public global::Vapi.TextInsightFromCallTableType? Type1527 { get; set; } /// /// /// - public global::Vapi.InsightRunFormatPlanFormat? Type1528 { get; set; } + public global::Vapi.InsightRunFormatPlan? Type1528 { get; set; } /// /// /// - public global::Vapi.InsightRunDTO? Type1529 { get; set; } + public global::Vapi.InsightRunFormatPlanFormat? Type1529 { get; set; } /// /// /// - public global::Vapi.InsightRunResponse? Type1530 { get; set; } + public global::Vapi.InsightRunDTO? Type1530 { get; set; } /// /// /// - public global::Vapi.Insight? Type1531 { get; set; } + public global::Vapi.InsightRunResponse? Type1531 { get; set; } /// /// /// - public global::Vapi.InsightType? Type1532 { get; set; } + public global::Vapi.Insight? Type1532 { get; set; } /// /// /// - public global::Vapi.InsightPaginatedResponse? Type1533 { get; set; } + public global::Vapi.InsightType? Type1533 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1534 { get; set; } + public global::Vapi.InsightPaginatedResponse? Type1534 { get; set; } /// /// /// - public global::Vapi.CreateEvalDTO? Type1535 { get; set; } + public global::System.Collections.Generic.IList? Type1535 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMock? Type1536 { get; set; } + public global::Vapi.CreateEvalDTO? Type1536 { get; set; } /// /// /// - public global::Vapi.ChatEvalSystemMessageMock? Type1537 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMock? Type1537 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageMock? Type1538 { get; set; } + public global::Vapi.ChatEvalSystemMessageMock? Type1538 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageEvaluation? Type1539 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageMock? Type1539 { get; set; } /// /// /// - public global::Vapi.ChatEvalUserMessageMock? Type1540 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageEvaluation? Type1540 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageEvaluation? Type1541 { get; set; } + public global::Vapi.ChatEvalUserMessageMock? Type1541 { get; set; } /// /// /// - public global::Vapi.CreateEvalDTOType? Type1542 { get; set; } + public global::Vapi.ChatEvalAssistantMessageEvaluation? Type1542 { get; set; } /// /// /// - public global::Vapi.Eval? Type1543 { get; set; } + public global::Vapi.CreateEvalDTOType? Type1543 { get; set; } /// /// /// - public global::Vapi.EvalType? Type1544 { get; set; } + public global::Vapi.Eval? Type1544 { get; set; } /// /// /// - public global::Vapi.EvalModelListOptions? Type1545 { get; set; } + public global::Vapi.EvalType? Type1545 { get; set; } /// /// /// - public global::Vapi.EvalModelListOptionsProvider? Type1546 { get; set; } + public global::Vapi.EvalModelListOptions? Type1546 { get; set; } /// /// /// - public global::Vapi.EvalUserEditable? Type1547 { get; set; } + public global::Vapi.EvalModelListOptionsProvider? Type1547 { get; set; } /// /// /// - public global::Vapi.EvalUserEditableType? Type1548 { get; set; } + public global::Vapi.EvalUserEditable? Type1548 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMockToolCall? Type1549 { get; set; } + public global::Vapi.EvalUserEditableType? Type1549 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMockRole? Type1550 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMockToolCall? Type1550 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1551 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMockRole? Type1551 { get; set; } /// /// /// - public global::Vapi.ChatEvalSystemMessageMockRole? Type1552 { get; set; } + public global::System.Collections.Generic.IList? Type1552 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageMockRole? Type1553 { get; set; } + public global::Vapi.ChatEvalSystemMessageMockRole? Type1553 { get; set; } /// /// /// - public global::Vapi.ChatEvalUserMessageMockRole? Type1554 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageMockRole? Type1554 { get; set; } /// /// /// - public global::Vapi.AssistantMessageEvaluationContinuePlan? Type1555 { get; set; } + public global::Vapi.ChatEvalUserMessageMockRole? Type1555 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageEvaluationRole? Type1556 { get; set; } + public global::Vapi.AssistantMessageEvaluationContinuePlan? Type1556 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1557 { get; set; } + public global::Vapi.ChatEvalAssistantMessageEvaluationRole? Type1557 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanExact? Type1558 { get; set; } + public global::Vapi.OneOf? Type1558 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanRegex? Type1559 { get; set; } + public global::Vapi.AssistantMessageJudgePlanExact? Type1559 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanAI? Type1560 { get; set; } + public global::Vapi.AssistantMessageJudgePlanRegex? Type1560 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModel? Type1561 { get; set; } + public global::Vapi.AssistantMessageJudgePlanAI? Type1561 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModelProvider? Type1562 { get; set; } + public global::Vapi.EvalOpenAIModel? Type1562 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModelModel? Type1563 { get; set; } + public global::Vapi.EvalOpenAIModelProvider? Type1563 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModel? Type1564 { get; set; } + public global::Vapi.EvalOpenAIModelModel? Type1564 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModelProvider? Type1565 { get; set; } + public global::Vapi.EvalAnthropicModel? Type1565 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModelModel? Type1566 { get; set; } + public global::Vapi.EvalAnthropicModelProvider? Type1566 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModel? Type1567 { get; set; } + public global::Vapi.EvalAnthropicModelModel? Type1567 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModelProvider? Type1568 { get; set; } + public global::Vapi.EvalGoogleModel? Type1568 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModelModel? Type1569 { get; set; } + public global::Vapi.EvalGoogleModelProvider? Type1569 { get; set; } /// /// /// - public global::Vapi.EvalGroqModel? Type1570 { get; set; } + public global::Vapi.EvalGoogleModelModel? Type1570 { get; set; } /// /// /// - public global::Vapi.EvalGroqModelProvider? Type1571 { get; set; } + public global::Vapi.EvalGroqModel? Type1571 { get; set; } /// /// /// - public global::Vapi.EvalGroqModelModel? Type1572 { get; set; } + public global::Vapi.EvalGroqModelProvider? Type1572 { get; set; } /// /// /// - public global::Vapi.EvalCustomModel? Type1573 { get; set; } + public global::Vapi.EvalGroqModelModel? Type1573 { get; set; } /// /// /// - public global::Vapi.EvalCustomModelProvider? Type1574 { get; set; } + public global::Vapi.EvalCustomModel? Type1574 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1575 { get; set; } + public global::Vapi.EvalCustomModelProvider? Type1575 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanAIType? Type1576 { get; set; } + public global::Vapi.OneOf? Type1576 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageEvaluationRole? Type1577 { get; set; } + public global::Vapi.AssistantMessageJudgePlanAIType? Type1577 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanExactType? Type1578 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageEvaluationRole? Type1578 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanRegexType? Type1579 { get; set; } + public global::Vapi.AssistantMessageJudgePlanExactType? Type1579 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTO? Type1580 { get; set; } + public global::Vapi.AssistantMessageJudgePlanRegexType? Type1580 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTOSortOrder? Type1581 { get; set; } + public global::Vapi.GetEvalPaginatedDTO? Type1581 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTOSortBy? Type1582 { get; set; } + public global::Vapi.GetEvalPaginatedDTOSortOrder? Type1582 { get; set; } /// /// /// - public global::Vapi.EvalPaginatedResponse? Type1583 { get; set; } + public global::Vapi.GetEvalPaginatedDTOSortBy? Type1583 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1584 { get; set; } + public global::Vapi.EvalPaginatedResponse? Type1584 { get; set; } /// /// /// - public global::Vapi.UpdateEvalDTO? Type1585 { get; set; } + public global::System.Collections.Generic.IList? Type1585 { get; set; } /// /// /// - public global::Vapi.UpdateEvalDTOType? Type1586 { get; set; } + public global::Vapi.UpdateEvalDTO? Type1586 { get; set; } /// /// /// - public global::Vapi.CreateEvalRunDTO? Type1587 { get; set; } + public global::Vapi.UpdateEvalDTOType? Type1587 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1588 { get; set; } + public global::Vapi.CreateEvalRunDTO? Type1588 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetAssistant? Type1589 { get; set; } + public global::Vapi.OneOf? Type1589 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetSquad? Type1590 { get; set; } + public global::Vapi.EvalRunTargetAssistant? Type1590 { get; set; } /// /// /// - public global::Vapi.CreateEvalRunDTOType? Type1591 { get; set; } + public global::Vapi.EvalRunTargetSquad? Type1591 { get; set; } /// /// /// - public global::Vapi.EvalRunResult? Type1592 { get; set; } + public global::Vapi.CreateEvalRunDTOType? Type1592 { get; set; } /// /// /// - public global::Vapi.EvalRunResultStatus? Type1593 { get; set; } + public global::Vapi.EvalRunResult? Type1593 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1594 { get; set; } + public global::Vapi.EvalRunResultStatus? Type1594 { get; set; } /// /// /// - public global::Vapi.EvalRun? Type1595 { get; set; } + public global::Vapi.OneOf? Type1595 { get; set; } /// /// /// - public global::Vapi.EvalRunStatus? Type1596 { get; set; } + public global::Vapi.EvalRun? Type1596 { get; set; } /// /// /// - public global::Vapi.EvalRunEndedReason? Type1597 { get; set; } + public global::Vapi.EvalRunStatus? Type1597 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1598 { get; set; } + public global::Vapi.EvalRunEndedReason? Type1598 { get; set; } /// /// /// - public global::Vapi.EvalRunType? Type1599 { get; set; } + public global::System.Collections.Generic.IList? Type1599 { get; set; } /// /// /// - public global::Vapi.EvalRunPaginatedResponse? Type1600 { get; set; } + public global::Vapi.EvalRunType? Type1600 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1601 { get; set; } + public global::Vapi.EvalRunPaginatedResponse? Type1601 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTO? Type1602 { get; set; } + public global::System.Collections.Generic.IList? Type1602 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTOSortOrder? Type1603 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTO? Type1603 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTOSortBy? Type1604 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTOSortOrder? Type1604 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetAssistantType? Type1605 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTOSortBy? Type1605 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetSquadType? Type1606 { get; set; } + public global::Vapi.EvalRunTargetAssistantType? Type1606 { get; set; } /// /// /// - public global::Vapi.Scorecard? Type1607 { get; set; } + public global::Vapi.EvalRunTargetSquadType? Type1607 { get; set; } /// /// /// - public global::Vapi.ScorecardPaginatedResponse? Type1608 { get; set; } + public global::Vapi.Scorecard? Type1608 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1609 { get; set; } + public global::Vapi.ScorecardPaginatedResponse? Type1609 { get; set; } /// /// /// - public global::Vapi.UpdateScorecardDTO? Type1610 { get; set; } + public global::System.Collections.Generic.IList? Type1610 { get; set; } /// /// /// - public global::Vapi.CreateOrgDTO? Type1611 { get; set; } + public global::Vapi.UpdateScorecardDTO? Type1611 { get; set; } /// /// /// - public global::Vapi.CreateOrgDTOChannel? Type1612 { get; set; } + public global::Vapi.CreateOrgDTO? Type1612 { get; set; } /// /// /// - public global::Vapi.AutoReloadPlan? Type1613 { get; set; } + public global::Vapi.CreateOrgDTOChannel? Type1613 { get; set; } /// /// /// - public global::Vapi.InvoicePlan? Type1614 { get; set; } + public global::Vapi.AutoReloadPlan? Type1614 { get; set; } /// /// /// - public global::Vapi.Subscription? Type1615 { get; set; } + public global::Vapi.InvoicePlan? Type1615 { get; set; } /// /// /// - public global::Vapi.SubscriptionType? Type1616 { get; set; } + public global::Vapi.Subscription? Type1616 { get; set; } /// /// /// - public global::Vapi.SubscriptionStatus? Type1617 { get; set; } + public global::Vapi.SubscriptionType? Type1617 { get; set; } /// /// /// - public global::Vapi.SubscriptionMinutesIncludedResetFrequency? Type1618 { get; set; } + public global::Vapi.SubscriptionStatus? Type1618 { get; set; } /// /// /// - public global::Vapi.Org? Type1619 { get; set; } + public global::Vapi.SubscriptionMinutesIncludedResetFrequency? Type1619 { get; set; } /// /// /// - public global::Vapi.OrgChannel? Type1620 { get; set; } + public global::Vapi.Org? Type1620 { get; set; } /// /// /// - public global::Vapi.UpdateOrgDTO? Type1621 { get; set; } + public global::Vapi.OrgChannel? Type1621 { get; set; } /// /// /// - public global::Vapi.UpdateOrgDTOChannel? Type1622 { get; set; } + public global::Vapi.UpdateOrgDTO? Type1622 { get; set; } /// /// /// - public global::Vapi.User? Type1623 { get; set; } + public global::Vapi.UpdateOrgDTOChannel? Type1623 { get; set; } /// /// /// - public global::Vapi.InviteUserDTO? Type1624 { get; set; } + public global::Vapi.User? Type1624 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1625 { get; set; } + public global::Vapi.InviteUserDTO? Type1625 { get; set; } /// /// /// - public global::Vapi.InviteUserDTORole? Type1626 { get; set; } + public global::Vapi.OneOf? Type1626 { get; set; } /// /// /// - public global::Vapi.UpdateUserRoleDTO? Type1627 { get; set; } + public global::Vapi.InviteUserDTORole? Type1627 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1628 { get; set; } + public global::Vapi.UpdateUserRoleDTO? Type1628 { get; set; } /// /// /// - public global::Vapi.UpdateUserRoleDTORole? Type1629 { get; set; } + public global::Vapi.OneOf? Type1629 { get; set; } /// /// /// - public global::Vapi.JwtResponse? Type1630 { get; set; } + public global::Vapi.UpdateUserRoleDTORole? Type1630 { get; set; } /// /// /// - public global::Vapi.TokenRestrictions? Type1631 { get; set; } + public global::Vapi.JwtResponse? Type1631 { get; set; } /// /// /// - public global::Vapi.CreateTokenDTO? Type1632 { get; set; } + public global::Vapi.TokenRestrictions? Type1632 { get; set; } /// /// /// - public global::Vapi.CreateTokenDTOTag? Type1633 { get; set; } + public global::Vapi.CreateTokenDTO? Type1633 { get; set; } /// /// /// - public global::Vapi.Token? Type1634 { get; set; } + public global::Vapi.CreateTokenDTOTag? Type1634 { get; set; } /// /// /// - public global::Vapi.TokenTag? Type1635 { get; set; } + public global::Vapi.Token? Type1635 { get; set; } /// /// /// - public global::Vapi.UpdateTokenDTO? Type1636 { get; set; } + public global::Vapi.TokenTag? Type1636 { get; set; } /// /// /// - public global::Vapi.UpdateTokenDTOTag? Type1637 { get; set; } + public global::Vapi.UpdateTokenDTO? Type1637 { get; set; } /// /// /// - public global::Vapi.AnthropicCredential? Type1638 { get; set; } + public global::Vapi.UpdateTokenDTOTag? Type1638 { get; set; } /// /// /// - public global::Vapi.AnthropicCredentialProvider? Type1639 { get; set; } + public global::Vapi.AnthropicCredential? Type1639 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationArtifact? Type1640 { get; set; } + public global::Vapi.AnthropicCredentialProvider? Type1640 { get; set; } /// /// /// - public global::Vapi.AWSStsAssumeRoleUser? Type1641 { get; set; } + public global::Vapi.AWSStsAuthenticationArtifact? Type1641 { get; set; } /// /// /// - public global::Vapi.AWSStsCredentials? Type1642 { get; set; } + public global::Vapi.AWSStsAssumeRoleUser? Type1642 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationSession? Type1643 { get; set; } + public global::Vapi.AWSStsCredentials? Type1643 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredential? Type1644 { get; set; } + public global::Vapi.AWSStsAuthenticationSession? Type1644 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredentialProvider? Type1645 { get; set; } + public global::Vapi.AnthropicBedrockCredential? Type1645 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredentialRegion? Type1646 { get; set; } + public global::Vapi.AnthropicBedrockCredentialProvider? Type1646 { get; set; } /// /// /// - public global::Vapi.AnyscaleCredential? Type1647 { get; set; } + public global::Vapi.AnthropicBedrockCredentialRegion? Type1647 { get; set; } /// /// /// - public global::Vapi.AnyscaleCredentialProvider? Type1648 { get; set; } + public global::Vapi.AnyscaleCredential? Type1648 { get; set; } /// /// /// - public global::Vapi.AssemblyAICredential? Type1649 { get; set; } + public global::Vapi.AnyscaleCredentialProvider? Type1649 { get; set; } /// /// /// - public global::Vapi.AssemblyAICredentialProvider? Type1650 { get; set; } + public global::Vapi.AssemblyAICredential? Type1650 { get; set; } /// /// /// - public global::Vapi.AzureCredential? Type1651 { get; set; } + public global::Vapi.AssemblyAICredentialProvider? Type1651 { get; set; } /// /// /// - public global::Vapi.AzureCredentialProvider? Type1652 { get; set; } + public global::Vapi.AzureCredential? Type1652 { get; set; } /// /// /// - public global::Vapi.AzureCredentialService? Type1653 { get; set; } + public global::Vapi.AzureCredentialProvider? Type1653 { get; set; } /// /// /// - public global::Vapi.AzureCredentialRegion? Type1654 { get; set; } + public global::Vapi.AzureCredentialService? Type1654 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredential? Type1655 { get; set; } + public global::Vapi.AzureCredentialRegion? Type1655 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialProvider? Type1656 { get; set; } + public global::Vapi.AzureOpenAICredential? Type1656 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialRegion? Type1657 { get; set; } + public global::Vapi.AzureOpenAICredentialProvider? Type1657 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1658 { get; set; } + public global::Vapi.AzureOpenAICredentialRegion? Type1658 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialModel? Type1659 { get; set; } + public global::System.Collections.Generic.IList? Type1659 { get; set; } /// /// /// - public global::Vapi.ByoSipTrunkCredential? Type1660 { get; set; } + public global::Vapi.AzureOpenAICredentialModel? Type1660 { get; set; } /// /// /// - public global::Vapi.ByoSipTrunkCredentialProvider? Type1661 { get; set; } + public global::Vapi.ByoSipTrunkCredential? Type1661 { get; set; } /// /// /// - public global::Vapi.CartesiaCredential? Type1662 { get; set; } + public global::Vapi.ByoSipTrunkCredentialProvider? Type1662 { get; set; } /// /// /// - public global::Vapi.CartesiaCredentialProvider? Type1663 { get; set; } + public global::Vapi.CartesiaCredential? Type1663 { get; set; } /// /// /// - public global::Vapi.CerebrasCredential? Type1664 { get; set; } + public global::Vapi.CartesiaCredentialProvider? Type1664 { get; set; } /// /// /// - public global::Vapi.CerebrasCredentialProvider? Type1665 { get; set; } + public global::Vapi.CerebrasCredential? Type1665 { get; set; } /// /// /// - public global::Vapi.CloudflareCredential? Type1666 { get; set; } + public global::Vapi.CerebrasCredentialProvider? Type1666 { get; set; } /// /// /// - public global::Vapi.CloudflareCredentialProvider? Type1667 { get; set; } + public global::Vapi.CloudflareCredential? Type1667 { get; set; } /// /// /// - public global::Vapi.Oauth2AuthenticationSession? Type1668 { get; set; } + public global::Vapi.CloudflareCredentialProvider? Type1668 { get; set; } /// /// /// - public global::Vapi.CustomLLMCredential? Type1669 { get; set; } + public global::Vapi.Oauth2AuthenticationSession? Type1669 { get; set; } /// /// /// - public global::Vapi.CustomLLMCredentialProvider? Type1670 { get; set; } + public global::Vapi.CustomLLMCredential? Type1670 { get; set; } /// /// /// - public global::Vapi.DeepgramCredential? Type1671 { get; set; } + public global::Vapi.CustomLLMCredentialProvider? Type1671 { get; set; } /// /// /// - public global::Vapi.DeepgramCredentialProvider? Type1672 { get; set; } + public global::Vapi.DeepgramCredential? Type1672 { get; set; } /// /// /// - public global::Vapi.DeepInfraCredential? Type1673 { get; set; } + public global::Vapi.DeepgramCredentialProvider? Type1673 { get; set; } /// /// /// - public global::Vapi.DeepInfraCredentialProvider? Type1674 { get; set; } + public global::Vapi.DeepInfraCredential? Type1674 { get; set; } /// /// /// - public global::Vapi.DeepSeekCredential? Type1675 { get; set; } + public global::Vapi.DeepInfraCredentialProvider? Type1675 { get; set; } /// /// /// - public global::Vapi.DeepSeekCredentialProvider? Type1676 { get; set; } + public global::Vapi.DeepSeekCredential? Type1676 { get; set; } /// /// /// - public global::Vapi.ElevenLabsCredential? Type1677 { get; set; } + public global::Vapi.DeepSeekCredentialProvider? Type1677 { get; set; } /// /// /// - public global::Vapi.ElevenLabsCredentialProvider? Type1678 { get; set; } + public global::Vapi.ElevenLabsCredential? Type1678 { get; set; } /// /// /// - public global::Vapi.GcpCredential? Type1679 { get; set; } + public global::Vapi.ElevenLabsCredentialProvider? Type1679 { get; set; } /// /// /// - public global::Vapi.GcpCredentialProvider? Type1680 { get; set; } + public global::Vapi.ElevenLabsCredentialBaseUrl? Type1680 { get; set; } /// /// /// - public global::Vapi.GladiaCredential? Type1681 { get; set; } + public global::Vapi.GcpCredential? Type1681 { get; set; } /// /// /// - public global::Vapi.GladiaCredentialProvider? Type1682 { get; set; } + public global::Vapi.GcpCredentialProvider? Type1682 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCredential? Type1683 { get; set; } + public global::Vapi.GladiaCredential? Type1683 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCredentialProvider? Type1684 { get; set; } + public global::Vapi.GladiaCredentialProvider? Type1684 { get; set; } /// /// /// - public global::Vapi.GoogleCredential? Type1685 { get; set; } + public global::Vapi.GoHighLevelCredential? Type1685 { get; set; } /// /// /// - public global::Vapi.GoogleCredentialProvider? Type1686 { get; set; } + public global::Vapi.GoHighLevelCredentialProvider? Type1686 { get; set; } /// /// /// - public global::Vapi.GroqCredential? Type1687 { get; set; } + public global::Vapi.GoogleCredential? Type1687 { get; set; } /// /// /// - public global::Vapi.GroqCredentialProvider? Type1688 { get; set; } + public global::Vapi.GoogleCredentialProvider? Type1688 { get; set; } /// /// /// - public global::Vapi.HumeCredential? Type1689 { get; set; } + public global::Vapi.GroqCredential? Type1689 { get; set; } /// /// /// - public global::Vapi.HumeCredentialProvider? Type1690 { get; set; } + public global::Vapi.GroqCredentialProvider? Type1690 { get; set; } /// /// /// - public global::Vapi.InflectionAICredential? Type1691 { get; set; } + public global::Vapi.HumeCredential? Type1691 { get; set; } /// /// /// - public global::Vapi.InflectionAICredentialProvider? Type1692 { get; set; } + public global::Vapi.HumeCredentialProvider? Type1692 { get; set; } /// /// /// - public global::Vapi.LangfuseCredential? Type1693 { get; set; } + public global::Vapi.InflectionAICredential? Type1693 { get; set; } /// /// /// - public global::Vapi.LangfuseCredentialProvider? Type1694 { get; set; } + public global::Vapi.InflectionAICredentialProvider? Type1694 { get; set; } /// /// /// - public global::Vapi.LmntCredential? Type1695 { get; set; } + public global::Vapi.LangfuseCredential? Type1695 { get; set; } /// /// /// - public global::Vapi.LmntCredentialProvider? Type1696 { get; set; } + public global::Vapi.LangfuseCredentialProvider? Type1696 { get; set; } /// /// /// - public global::Vapi.MakeCredential? Type1697 { get; set; } + public global::Vapi.LmntCredential? Type1697 { get; set; } /// /// /// - public global::Vapi.MakeCredentialProvider? Type1698 { get; set; } + public global::Vapi.LmntCredentialProvider? Type1698 { get; set; } /// /// /// - public global::Vapi.MicrosoftCredential? Type1699 { get; set; } + public global::Vapi.MakeCredential? Type1699 { get; set; } /// /// /// - public global::Vapi.MicrosoftCredentialProvider? Type1700 { get; set; } + public global::Vapi.MakeCredentialProvider? Type1700 { get; set; } /// /// /// - public global::Vapi.MistralCredential? Type1701 { get; set; } + public global::Vapi.MicrosoftCredential? Type1701 { get; set; } /// /// /// - public global::Vapi.MistralCredentialProvider? Type1702 { get; set; } + public global::Vapi.MicrosoftCredentialProvider? Type1702 { get; set; } /// /// /// - public global::Vapi.NeuphonicCredential? Type1703 { get; set; } + public global::Vapi.MistralCredential? Type1703 { get; set; } /// /// /// - public global::Vapi.NeuphonicCredentialProvider? Type1704 { get; set; } + public global::Vapi.MistralCredentialProvider? Type1704 { get; set; } /// /// /// - public global::Vapi.OpenAICredential? Type1705 { get; set; } + public global::Vapi.NeuphonicCredential? Type1705 { get; set; } /// /// /// - public global::Vapi.OpenAICredentialProvider? Type1706 { get; set; } + public global::Vapi.NeuphonicCredentialProvider? Type1706 { get; set; } /// /// /// - public global::Vapi.OpenRouterCredential? Type1707 { get; set; } + public global::Vapi.OpenAICredential? Type1707 { get; set; } /// /// /// - public global::Vapi.OpenRouterCredentialProvider? Type1708 { get; set; } + public global::Vapi.OpenAICredentialProvider? Type1708 { get; set; } /// /// /// - public global::Vapi.PerplexityAICredential? Type1709 { get; set; } + public global::Vapi.OpenRouterCredential? Type1709 { get; set; } /// /// /// - public global::Vapi.PerplexityAICredentialProvider? Type1710 { get; set; } + public global::Vapi.OpenRouterCredentialProvider? Type1710 { get; set; } /// /// /// - public global::Vapi.PlayHTCredential? Type1711 { get; set; } + public global::Vapi.PerplexityAICredential? Type1711 { get; set; } /// /// /// - public global::Vapi.PlayHTCredentialProvider? Type1712 { get; set; } + public global::Vapi.PerplexityAICredentialProvider? Type1712 { get; set; } /// /// /// - public global::Vapi.RimeAICredential? Type1713 { get; set; } + public global::Vapi.PlayHTCredential? Type1713 { get; set; } /// /// /// - public global::Vapi.RimeAICredentialProvider? Type1714 { get; set; } + public global::Vapi.PlayHTCredentialProvider? Type1714 { get; set; } /// /// /// - public global::Vapi.RunpodCredential? Type1715 { get; set; } + public global::Vapi.RimeAICredential? Type1715 { get; set; } /// /// /// - public global::Vapi.RunpodCredentialProvider? Type1716 { get; set; } + public global::Vapi.RimeAICredentialProvider? Type1716 { get; set; } /// /// /// - public global::Vapi.WellSaidCredential? Type1717 { get; set; } + public global::Vapi.RunpodCredential? Type1717 { get; set; } /// /// /// - public global::Vapi.WellSaidCredentialProvider? Type1718 { get; set; } + public global::Vapi.RunpodCredentialProvider? Type1718 { get; set; } /// /// /// - public global::Vapi.S3Credential? Type1719 { get; set; } + public global::Vapi.WellSaidCredential? Type1719 { get; set; } /// /// /// - public global::Vapi.S3CredentialProvider? Type1720 { get; set; } + public global::Vapi.WellSaidCredentialProvider? Type1720 { get; set; } /// /// /// - public global::Vapi.SmallestAICredential? Type1721 { get; set; } + public global::Vapi.S3Credential? Type1721 { get; set; } /// /// /// - public global::Vapi.SmallestAICredentialProvider? Type1722 { get; set; } + public global::Vapi.S3CredentialProvider? Type1722 { get; set; } /// /// /// - public global::Vapi.SonioxCredential? Type1723 { get; set; } + public global::Vapi.SmallestAICredential? Type1723 { get; set; } /// /// /// - public global::Vapi.SonioxCredentialProvider? Type1724 { get; set; } + public global::Vapi.SmallestAICredentialProvider? Type1724 { get; set; } /// /// /// - public global::Vapi.SpeechmaticsCredential? Type1725 { get; set; } + public global::Vapi.SonioxCredential? Type1725 { get; set; } /// /// /// - public global::Vapi.SpeechmaticsCredentialProvider? Type1726 { get; set; } + public global::Vapi.SonioxCredentialProvider? Type1726 { get; set; } /// /// /// - public global::Vapi.SupabaseCredential? Type1727 { get; set; } + public global::Vapi.SpeechmaticsCredential? Type1727 { get; set; } /// /// /// - public global::Vapi.SupabaseCredentialProvider? Type1728 { get; set; } + public global::Vapi.SpeechmaticsCredentialProvider? Type1728 { get; set; } /// /// /// - public global::Vapi.TavusCredential? Type1729 { get; set; } + public global::Vapi.SupabaseCredential? Type1729 { get; set; } /// /// /// - public global::Vapi.TavusCredentialProvider? Type1730 { get; set; } + public global::Vapi.SupabaseCredentialProvider? Type1730 { get; set; } /// /// /// - public global::Vapi.TogetherAICredential? Type1731 { get; set; } + public global::Vapi.TavusCredential? Type1731 { get; set; } /// /// /// - public global::Vapi.TogetherAICredentialProvider? Type1732 { get; set; } + public global::Vapi.TavusCredentialProvider? Type1732 { get; set; } /// /// /// - public global::Vapi.TwilioCredential? Type1733 { get; set; } + public global::Vapi.TogetherAICredential? Type1733 { get; set; } /// /// /// - public global::Vapi.TwilioCredentialProvider? Type1734 { get; set; } + public global::Vapi.TogetherAICredentialProvider? Type1734 { get; set; } /// /// /// - public global::Vapi.VonageCredential? Type1735 { get; set; } + public global::Vapi.TwilioCredential? Type1735 { get; set; } /// /// /// - public global::Vapi.VonageCredentialProvider? Type1736 { get; set; } + public global::Vapi.TwilioCredentialProvider? Type1736 { get; set; } /// /// /// - public global::Vapi.WebhookCredential? Type1737 { get; set; } + public global::Vapi.VonageCredential? Type1737 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialProvider? Type1738 { get; set; } + public global::Vapi.VonageCredentialProvider? Type1738 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan4? Type1739 { get; set; } + public global::Vapi.WebhookCredential? Type1739 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminator? Type1740 { get; set; } + public global::Vapi.WebhookCredentialProvider? Type1740 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminatorType? Type1741 { get; set; } + public global::Vapi.AuthenticationPlan4? Type1741 { get; set; } /// /// /// - public global::Vapi.SpkiPemPublicKeyConfig? Type1742 { get; set; } + public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminator? Type1742 { get; set; } /// /// /// - public global::Vapi.SpkiPemPublicKeyConfigFormat? Type1743 { get; set; } + public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminatorType? Type1743 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlan? Type1744 { get; set; } + public global::Vapi.SpkiPemPublicKeyConfig? Type1744 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanType? Type1745 { get; set; } + public global::Vapi.SpkiPemPublicKeyConfigFormat? Type1745 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanAlgorithm? Type1746 { get; set; } + public global::Vapi.PublicKeyEncryptionPlan? Type1746 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator? Type1747 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanType? Type1747 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat? Type1748 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanAlgorithm? Type1748 { get; set; } /// /// /// - public global::Vapi.CustomCredential? Type1749 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator? Type1749 { get; set; } /// /// /// - public global::Vapi.CustomCredentialProvider? Type1750 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat? Type1750 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan5? Type1751 { get; set; } + public global::Vapi.CustomCredential? Type1751 { get; set; } /// /// /// - public global::Vapi.CustomCredentialAuthenticationPlanDiscriminator? Type1752 { get; set; } + public global::Vapi.CustomCredentialProvider? Type1752 { get; set; } /// /// /// - public global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType? Type1753 { get; set; } + public global::Vapi.AuthenticationPlan5? Type1753 { get; set; } /// /// /// - public global::Vapi.CustomCredentialEncryptionPlanDiscriminator? Type1754 { get; set; } + public global::Vapi.CustomCredentialAuthenticationPlanDiscriminator? Type1754 { get; set; } /// /// /// - public global::Vapi.CustomCredentialEncryptionPlanDiscriminatorType? Type1755 { get; set; } + public global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType? Type1755 { get; set; } /// /// /// - public global::Vapi.XAiCredential? Type1756 { get; set; } + public global::Vapi.CustomCredentialEncryptionPlanDiscriminator? Type1756 { get; set; } /// /// /// - public global::Vapi.XAiCredentialProvider? Type1757 { get; set; } + public global::Vapi.CustomCredentialEncryptionPlanDiscriminatorType? Type1757 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2ClientCredential? Type1758 { get; set; } + public global::Vapi.XAiCredential? Type1758 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2ClientCredentialProvider? Type1759 { get; set; } + public global::Vapi.XAiCredentialProvider? Type1759 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2AuthorizationCredential? Type1760 { get; set; } + public global::Vapi.GoogleCalendarOAuth2ClientCredential? Type1760 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2AuthorizationCredentialProvider? Type1761 { get; set; } + public global::Vapi.GoogleCalendarOAuth2ClientCredentialProvider? Type1761 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsOAuth2AuthorizationCredential? Type1762 { get; set; } + public global::Vapi.GoogleCalendarOAuth2AuthorizationCredential? Type1762 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsOAuth2AuthorizationCredentialProvider? Type1763 { get; set; } + public global::Vapi.GoogleCalendarOAuth2AuthorizationCredentialProvider? Type1763 { get; set; } /// /// /// - public global::Vapi.SlackOAuth2AuthorizationCredential? Type1764 { get; set; } + public global::Vapi.GoogleSheetsOAuth2AuthorizationCredential? Type1764 { get; set; } /// /// /// - public global::Vapi.SlackOAuth2AuthorizationCredentialProvider? Type1765 { get; set; } + public global::Vapi.GoogleSheetsOAuth2AuthorizationCredentialProvider? Type1765 { get; set; } /// /// /// - public global::Vapi.GoHighLevelMCPCredential? Type1766 { get; set; } + public global::Vapi.SlackOAuth2AuthorizationCredential? Type1766 { get; set; } /// /// /// - public global::Vapi.GoHighLevelMCPCredentialProvider? Type1767 { get; set; } + public global::Vapi.SlackOAuth2AuthorizationCredentialProvider? Type1767 { get; set; } /// /// /// - public global::Vapi.InworldCredential? Type1768 { get; set; } + public global::Vapi.GoHighLevelMCPCredential? Type1768 { get; set; } /// /// /// - public global::Vapi.InworldCredentialProvider? Type1769 { get; set; } + public global::Vapi.GoHighLevelMCPCredentialProvider? Type1769 { get; set; } /// /// /// - public global::Vapi.EmailCredential? Type1770 { get; set; } + public global::Vapi.InworldCredential? Type1770 { get; set; } /// /// /// - public global::Vapi.EmailCredentialProvider? Type1771 { get; set; } + public global::Vapi.InworldCredentialProvider? Type1771 { get; set; } /// /// /// - public global::Vapi.SlackWebhookCredential? Type1772 { get; set; } + public global::Vapi.EmailCredential? Type1772 { get; set; } /// /// /// - public global::Vapi.SlackWebhookCredentialProvider? Type1773 { get; set; } + public global::Vapi.EmailCredentialProvider? Type1773 { get; set; } /// /// /// - public global::Vapi.CreateCerebrasCredentialDTOProvider? Type1774 { get; set; } + public global::Vapi.SlackWebhookCredential? Type1774 { get; set; } /// /// /// - public global::Vapi.CreateGoogleCredentialDTOProvider? Type1775 { get; set; } + public global::Vapi.SlackWebhookCredentialProvider? Type1775 { get; set; } /// /// /// - public global::Vapi.CreateHumeCredentialDTOProvider? Type1776 { get; set; } + public global::Vapi.CreateCerebrasCredentialDTOProvider? Type1776 { get; set; } /// /// /// - public global::Vapi.CreateInflectionAICredentialDTOProvider? Type1777 { get; set; } + public global::Vapi.CreateGoogleCredentialDTOProvider? Type1777 { get; set; } /// /// /// - public global::Vapi.CreateMicrosoftCredentialDTOProvider? Type1778 { get; set; } + public global::Vapi.CreateHumeCredentialDTOProvider? Type1778 { get; set; } /// /// /// - public global::Vapi.CreateMistralCredentialDTOProvider? Type1779 { get; set; } + public global::Vapi.CreateInflectionAICredentialDTOProvider? Type1779 { get; set; } /// /// /// - public global::Vapi.CreateNeuphonicCredentialDTOProvider? Type1780 { get; set; } + public global::Vapi.CreateMicrosoftCredentialDTOProvider? Type1780 { get; set; } /// /// /// - public global::Vapi.CreateWellSaidCredentialDTOProvider? Type1781 { get; set; } + public global::Vapi.CreateMistralCredentialDTOProvider? Type1781 { get; set; } /// /// /// - public global::Vapi.CreateSonioxCredentialDTOProvider? Type1782 { get; set; } + public global::Vapi.CreateNeuphonicCredentialDTOProvider? Type1782 { get; set; } /// /// /// - public global::Vapi.CreateSpeechmaticsCredentialDTOProvider? Type1783 { get; set; } + public global::Vapi.CreateWellSaidCredentialDTOProvider? Type1783 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOProvider? Type1784 { get; set; } + public global::Vapi.CreateSonioxCredentialDTOProvider? Type1784 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan6? Type1785 { get; set; } + public global::Vapi.CreateSpeechmaticsCredentialDTOProvider? Type1785 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1786 { get; set; } + public global::Vapi.CreateCustomCredentialDTOProvider? Type1786 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1787 { get; set; } + public global::Vapi.AuthenticationPlan6? Type1787 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminator? Type1788 { get; set; } + public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1788 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1789 { get; set; } + public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1789 { get; set; } /// /// /// - public global::Vapi.CreateGoHighLevelMCPCredentialDTOProvider? Type1790 { get; set; } + public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminator? Type1790 { get; set; } /// /// /// - public global::Vapi.CreateInworldCredentialDTOProvider? Type1791 { get; set; } + public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1791 { get; set; } /// /// /// - public global::Vapi.CreateEmailCredentialDTOProvider? Type1792 { get; set; } + public global::Vapi.CreateGoHighLevelMCPCredentialDTOProvider? Type1792 { get; set; } /// /// /// - public global::Vapi.CreateSlackWebhookCredentialDTOProvider? Type1793 { get; set; } + public global::Vapi.CreateInworldCredentialDTOProvider? Type1793 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicCredentialDTO? Type1794 { get; set; } + public global::Vapi.CreateEmailCredentialDTOProvider? Type1794 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicBedrockCredentialDTO? Type1795 { get; set; } + public global::Vapi.CreateSlackWebhookCredentialDTOProvider? Type1795 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicBedrockCredentialDTORegion? Type1796 { get; set; } + public global::Vapi.UpdateAnthropicCredentialDTO? Type1796 { get; set; } /// /// /// - public global::Vapi.UpdateAnyscaleCredentialDTO? Type1797 { get; set; } + public global::Vapi.UpdateAnthropicBedrockCredentialDTO? Type1797 { get; set; } /// /// /// - public global::Vapi.UpdateAssemblyAICredentialDTO? Type1798 { get; set; } + public global::Vapi.UpdateAnthropicBedrockCredentialDTORegion? Type1798 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTO? Type1799 { get; set; } + public global::Vapi.UpdateAnyscaleCredentialDTO? Type1799 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTOService? Type1800 { get; set; } + public global::Vapi.UpdateAssemblyAICredentialDTO? Type1800 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTORegion? Type1801 { get; set; } + public global::Vapi.UpdateAzureCredentialDTO? Type1801 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTO? Type1802 { get; set; } + public global::Vapi.UpdateAzureCredentialDTOService? Type1802 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTORegion? Type1803 { get; set; } + public global::Vapi.UpdateAzureCredentialDTORegion? Type1803 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1804 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTO? Type1804 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTOModel? Type1805 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTORegion? Type1805 { get; set; } /// /// /// - public global::Vapi.UpdateByoSipTrunkCredentialDTO? Type1806 { get; set; } + public global::System.Collections.Generic.IList? Type1806 { get; set; } /// /// /// - public global::Vapi.UpdateCartesiaCredentialDTO? Type1807 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTOModel? Type1807 { get; set; } /// /// /// - public global::Vapi.UpdateCerebrasCredentialDTO? Type1808 { get; set; } + public global::Vapi.UpdateByoSipTrunkCredentialDTO? Type1808 { get; set; } /// /// /// - public global::Vapi.UpdateCloudflareCredentialDTO? Type1809 { get; set; } + public global::Vapi.UpdateCartesiaCredentialDTO? Type1809 { get; set; } /// /// /// - public global::Vapi.UpdateCustomLLMCredentialDTO? Type1810 { get; set; } + public global::Vapi.UpdateCerebrasCredentialDTO? Type1810 { get; set; } /// /// /// - public global::Vapi.UpdateDeepgramCredentialDTO? Type1811 { get; set; } + public global::Vapi.UpdateCloudflareCredentialDTO? Type1811 { get; set; } /// /// /// - public global::Vapi.UpdateDeepInfraCredentialDTO? Type1812 { get; set; } + public global::Vapi.UpdateCustomLLMCredentialDTO? Type1812 { get; set; } /// /// /// - public global::Vapi.UpdateDeepSeekCredentialDTO? Type1813 { get; set; } + public global::Vapi.UpdateDeepgramCredentialDTO? Type1813 { get; set; } /// /// /// - public global::Vapi.UpdateElevenLabsCredentialDTO? Type1814 { get; set; } + public global::Vapi.UpdateDeepInfraCredentialDTO? Type1814 { get; set; } /// /// /// - public global::Vapi.UpdateGcpCredentialDTO? Type1815 { get; set; } + public global::Vapi.UpdateDeepSeekCredentialDTO? Type1815 { get; set; } /// /// /// - public global::Vapi.UpdateGladiaCredentialDTO? Type1816 { get; set; } + public global::Vapi.UpdateElevenLabsCredentialDTO? Type1816 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelCredentialDTO? Type1817 { get; set; } + public global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl? Type1817 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCredentialDTO? Type1818 { get; set; } + public global::Vapi.UpdateGcpCredentialDTO? Type1818 { get; set; } /// /// /// - public global::Vapi.UpdateGroqCredentialDTO? Type1819 { get; set; } + public global::Vapi.UpdateGladiaCredentialDTO? Type1819 { get; set; } /// /// /// - public global::Vapi.UpdateHumeCredentialDTO? Type1820 { get; set; } + public global::Vapi.UpdateGoHighLevelCredentialDTO? Type1820 { get; set; } /// /// /// - public global::Vapi.UpdateInflectionAICredentialDTO? Type1821 { get; set; } + public global::Vapi.UpdateGoogleCredentialDTO? Type1821 { get; set; } /// /// /// - public global::Vapi.UpdateLangfuseCredentialDTO? Type1822 { get; set; } + public global::Vapi.UpdateGroqCredentialDTO? Type1822 { get; set; } /// /// /// - public global::Vapi.UpdateLmntCredentialDTO? Type1823 { get; set; } + public global::Vapi.UpdateHumeCredentialDTO? Type1823 { get; set; } /// /// /// - public global::Vapi.UpdateMakeCredentialDTO? Type1824 { get; set; } + public global::Vapi.UpdateInflectionAICredentialDTO? Type1824 { get; set; } /// /// /// - public global::Vapi.UpdateMicrosoftCredentialDTO? Type1825 { get; set; } + public global::Vapi.UpdateLangfuseCredentialDTO? Type1825 { get; set; } /// /// /// - public global::Vapi.UpdateMistralCredentialDTO? Type1826 { get; set; } + public global::Vapi.UpdateLmntCredentialDTO? Type1826 { get; set; } /// /// /// - public global::Vapi.UpdateNeuphonicCredentialDTO? Type1827 { get; set; } + public global::Vapi.UpdateMakeCredentialDTO? Type1827 { get; set; } /// /// /// - public global::Vapi.UpdateOpenAICredentialDTO? Type1828 { get; set; } + public global::Vapi.UpdateMicrosoftCredentialDTO? Type1828 { get; set; } /// /// /// - public global::Vapi.UpdateOpenRouterCredentialDTO? Type1829 { get; set; } + public global::Vapi.UpdateMistralCredentialDTO? Type1829 { get; set; } /// /// /// - public global::Vapi.UpdatePerplexityAICredentialDTO? Type1830 { get; set; } + public global::Vapi.UpdateNeuphonicCredentialDTO? Type1830 { get; set; } /// /// /// - public global::Vapi.UpdatePlayHTCredentialDTO? Type1831 { get; set; } + public global::Vapi.UpdateOpenAICredentialDTO? Type1831 { get; set; } /// /// /// - public global::Vapi.UpdateRimeAICredentialDTO? Type1832 { get; set; } + public global::Vapi.UpdateOpenRouterCredentialDTO? Type1832 { get; set; } /// /// /// - public global::Vapi.UpdateRunpodCredentialDTO? Type1833 { get; set; } + public global::Vapi.UpdatePerplexityAICredentialDTO? Type1833 { get; set; } /// /// /// - public global::Vapi.UpdateWellSaidCredentialDTO? Type1834 { get; set; } + public global::Vapi.UpdatePlayHTCredentialDTO? Type1834 { get; set; } /// /// /// - public global::Vapi.UpdateS3CredentialDTO? Type1835 { get; set; } + public global::Vapi.UpdateRimeAICredentialDTO? Type1835 { get; set; } /// /// /// - public global::Vapi.UpdateTogetherAICredentialDTO? Type1836 { get; set; } + public global::Vapi.UpdateRunpodCredentialDTO? Type1836 { get; set; } /// /// /// - public global::Vapi.UpdateTwilioCredentialDTO? Type1837 { get; set; } + public global::Vapi.UpdateWellSaidCredentialDTO? Type1837 { get; set; } /// /// /// - public global::Vapi.UpdateVonageCredentialDTO? Type1838 { get; set; } + public global::Vapi.UpdateS3CredentialDTO? Type1838 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTO? Type1839 { get; set; } + public global::Vapi.UpdateTogetherAICredentialDTO? Type1839 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan8? Type1840 { get; set; } + public global::Vapi.UpdateTwilioCredentialDTO? Type1840 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type1841 { get; set; } + public global::Vapi.UpdateVonageCredentialDTO? Type1841 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type1842 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTO? Type1842 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTO? Type1843 { get; set; } + public global::Vapi.AuthenticationPlan8? Type1843 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan9? Type1844 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type1844 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1845 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type1845 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1846 { get; set; } + public global::Vapi.UpdateCustomCredentialDTO? Type1846 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminator? Type1847 { get; set; } + public global::Vapi.AuthenticationPlan9? Type1847 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1848 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1848 { get; set; } /// /// /// - public global::Vapi.UpdateXAiCredentialDTO? Type1849 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1849 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTO? Type1850 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminator? Type1850 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTO? Type1851 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1851 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTO? Type1852 { get; set; } + public global::Vapi.UpdateXAiCredentialDTO? Type1852 { get; set; } /// /// /// - public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO? Type1853 { get; set; } + public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTO? Type1853 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelMCPCredentialDTO? Type1854 { get; set; } + public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTO? Type1854 { get; set; } /// /// /// - public global::Vapi.UpdateInworldCredentialDTO? Type1855 { get; set; } + public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTO? Type1855 { get; set; } /// /// /// - public global::Vapi.UpdateEmailCredentialDTO? Type1856 { get; set; } + public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO? Type1856 { get; set; } /// /// /// - public global::Vapi.UpdateSlackWebhookCredentialDTO? Type1857 { get; set; } + public global::Vapi.UpdateGoHighLevelMCPCredentialDTO? Type1857 { get; set; } /// /// /// - public global::Vapi.UpdateSonioxCredentialDTO? Type1858 { get; set; } + public global::Vapi.UpdateInworldCredentialDTO? Type1858 { get; set; } /// /// /// - public global::Vapi.CredentialSessionResponse? Type1859 { get; set; } + public global::Vapi.UpdateEmailCredentialDTO? Type1859 { get; set; } /// /// /// - public global::Vapi.CredentialEndUser? Type1860 { get; set; } + public global::Vapi.UpdateSlackWebhookCredentialDTO? Type1860 { get; set; } /// /// /// - public global::Vapi.CredentialSessionError? Type1861 { get; set; } + public global::Vapi.UpdateSonioxCredentialDTO? Type1861 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTO? Type1862 { get; set; } + public global::Vapi.CredentialSessionResponse? Type1862 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOType? Type1863 { get; set; } + public global::Vapi.CredentialEndUser? Type1863 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOOperation? Type1864 { get; set; } + public global::Vapi.CredentialSessionError? Type1864 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOAuthMode? Type1865 { get; set; } + public global::Vapi.CredentialWebhookDTO? Type1865 { get; set; } /// /// /// - public global::Vapi.CredentialActionRequest? Type1866 { get; set; } + public global::Vapi.CredentialWebhookDTOType? Type1866 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanType? Type1867 { get; set; } + public global::Vapi.CredentialWebhookDTOOperation? Type1867 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanAlgorithm? Type1868 { get; set; } + public global::Vapi.CredentialWebhookDTOAuthMode? Type1868 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanSignatureEncoding? Type1869 { get; set; } + public global::Vapi.CredentialActionRequest? Type1869 { get; set; } /// /// /// - public global::Vapi.BearerAuthenticationPlanType? Type1870 { get; set; } + public global::Vapi.HMACAuthenticationPlanType? Type1870 { get; set; } /// /// /// - public global::Vapi.AWSIAMCredentialsAuthenticationPlanType? Type1871 { get; set; } + public global::Vapi.HMACAuthenticationPlanAlgorithm? Type1871 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationPlanType? Type1872 { get; set; } + public global::Vapi.HMACAuthenticationPlanSignatureEncoding? Type1872 { get; set; } /// /// /// - public global::Vapi.ToolTemplateSetup? Type1873 { get; set; } + public global::Vapi.BearerAuthenticationPlanType? Type1873 { get; set; } /// /// /// - public global::Vapi.MakeToolProviderDetails? Type1874 { get; set; } + public global::Vapi.AWSIAMCredentialsAuthenticationPlanType? Type1874 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1875 { get; set; } + public global::Vapi.AWSStsAuthenticationPlanType? Type1875 { get; set; } /// /// /// - public global::Vapi.MakeToolProviderDetailsType? Type1876 { get; set; } + public global::Vapi.ToolTemplateSetup? Type1876 { get; set; } /// /// /// - public global::Vapi.GhlToolProviderDetails? Type1877 { get; set; } + public global::Vapi.MakeToolProviderDetails? Type1877 { get; set; } /// /// /// - public global::Vapi.GhlToolProviderDetailsType? Type1878 { get; set; } + public global::System.Collections.Generic.IList? Type1878 { get; set; } /// /// /// - public global::Vapi.FunctionToolProviderDetails? Type1879 { get; set; } + public global::Vapi.MakeToolProviderDetailsType? Type1879 { get; set; } /// /// /// - public global::Vapi.FunctionToolProviderDetailsType? Type1880 { get; set; } + public global::Vapi.GhlToolProviderDetails? Type1880 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolProviderDetails? Type1881 { get; set; } + public global::Vapi.GhlToolProviderDetailsType? Type1881 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolProviderDetailsType? Type1882 { get; set; } + public global::Vapi.FunctionToolProviderDetails? Type1882 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolProviderDetails? Type1883 { get; set; } + public global::Vapi.FunctionToolProviderDetailsType? Type1883 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolProviderDetailsType? Type1884 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolProviderDetails? Type1884 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetails? Type1885 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolProviderDetailsType? Type1885 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetailsType? Type1886 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolProviderDetails? Type1886 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetails? Type1887 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolProviderDetailsType? Type1887 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetailsType? Type1888 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetails? Type1888 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolProviderDetails? Type1889 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetailsType? Type1889 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolProviderDetailsType? Type1890 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetails? Type1890 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolProviderDetails? Type1891 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetailsType? Type1891 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolProviderDetailsType? Type1892 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolProviderDetails? Type1892 { get; set; } /// /// /// - public global::Vapi.ToolTemplateMetadata? Type1893 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolProviderDetailsType? Type1893 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTO? Type1894 { get; set; } + public global::Vapi.GoHighLevelContactGetToolProviderDetails? Type1894 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOVisibility? Type1895 { get; set; } + public global::Vapi.GoHighLevelContactGetToolProviderDetailsType? Type1895 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOType? Type1896 { get; set; } + public global::Vapi.ToolTemplateMetadata? Type1896 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOProvider? Type1897 { get; set; } + public global::Vapi.CreateToolTemplateDTO? Type1897 { get; set; } /// /// /// - public global::Vapi.Template? Type1898 { get; set; } + public global::Vapi.CreateToolTemplateDTOVisibility? Type1898 { get; set; } /// /// /// - public global::Vapi.TemplateVisibility? Type1899 { get; set; } + public global::Vapi.CreateToolTemplateDTOType? Type1899 { get; set; } /// /// /// - public global::Vapi.TemplateType? Type1900 { get; set; } + public global::Vapi.CreateToolTemplateDTOProvider? Type1900 { get; set; } /// /// /// - public global::Vapi.TemplateProvider? Type1901 { get; set; } + public global::Vapi.Template? Type1901 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTO? Type1902 { get; set; } + public global::Vapi.TemplateVisibility? Type1902 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOVisibility? Type1903 { get; set; } + public global::Vapi.TemplateType? Type1903 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOType? Type1904 { get; set; } + public global::Vapi.TemplateProvider? Type1904 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOProvider? Type1905 { get; set; } + public global::Vapi.UpdateToolTemplateDTO? Type1905 { get; set; } /// /// /// - public global::Vapi.VoiceLibrary? Type1906 { get; set; } + public global::Vapi.UpdateToolTemplateDTOVisibility? Type1906 { get; set; } /// /// /// - public global::Vapi.VoiceLibraryGender? Type1907 { get; set; } + public global::Vapi.UpdateToolTemplateDTOType? Type1907 { get; set; } /// /// /// - public global::Vapi.SyncVoiceLibraryDTO? Type1908 { get; set; } + public global::Vapi.UpdateToolTemplateDTOProvider? Type1908 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1909 { get; set; } + public global::Vapi.VoiceLibrary? Type1909 { get; set; } /// /// /// - public global::Vapi.SyncVoiceLibraryDTOProvider? Type1910 { get; set; } + public global::Vapi.VoiceLibraryGender? Type1910 { get; set; } /// /// /// - public global::Vapi.CreateSesameVoiceDTO? Type1911 { get; set; } + public global::Vapi.SyncVoiceLibraryDTO? Type1911 { get; set; } /// /// /// - public global::Vapi.CartesiaPronunciationDictItem? Type1912 { get; set; } + public global::System.Collections.Generic.IList? Type1912 { get; set; } /// /// /// - public global::Vapi.CartesiaPronunciationDictionary? Type1913 { get; set; } + public global::Vapi.SyncVoiceLibraryDTOProvider? Type1913 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1914 { get; set; } + public global::Vapi.CreateSesameVoiceDTO? Type1914 { get; set; } /// /// /// - public global::Vapi.ElevenLabsPronunciationDictionary? Type1915 { get; set; } + public global::Vapi.CartesiaPronunciationDictItem? Type1915 { get; set; } /// /// /// - public global::Vapi.ElevenLabsPronunciationDictionaryPermissionOnResource? Type1916 { get; set; } + public global::Vapi.CartesiaPronunciationDictionary? Type1916 { get; set; } /// /// /// - public global::Vapi.ProviderResource? Type1917 { get; set; } + public global::System.Collections.Generic.IList? Type1917 { get; set; } /// /// /// - public global::Vapi.ProviderResourceProvider? Type1918 { get; set; } + public global::Vapi.ElevenLabsPronunciationDictionary? Type1918 { get; set; } /// /// /// - public global::Vapi.ProviderResourceResourceName? Type1919 { get; set; } + public global::Vapi.ElevenLabsPronunciationDictionaryPermissionOnResource? Type1919 { get; set; } /// /// /// - public global::Vapi.ProviderResourcePaginatedResponse? Type1920 { get; set; } + public global::Vapi.ProviderResource? Type1920 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1921 { get; set; } + public global::Vapi.ProviderResourceProvider? Type1921 { get; set; } /// /// /// - public global::Vapi.VoiceLibraryVoiceResponse? Type1922 { get; set; } + public global::Vapi.ProviderResourceResourceName? Type1922 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1923 { get; set; } + public global::Vapi.ProviderResourcePaginatedResponse? Type1923 { get; set; } /// /// /// - public global::Vapi.AddVoiceToProviderDTO? Type1924 { get; set; } + public global::System.Collections.Generic.IList? Type1924 { get; set; } /// /// /// - public global::Vapi.CloneVoiceDTO? Type1925 { get; set; } + public global::Vapi.VoiceLibraryVoiceResponse? Type1925 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1926 { get; set; } + public global::Vapi.OneOf? Type1926 { get; set; } /// /// /// - public global::Vapi.VariableValueGroupBy? Type1927 { get; set; } + public global::Vapi.AddVoiceToProviderDTO? Type1927 { get; set; } /// /// /// - public global::Vapi.TimeRange? Type1928 { get; set; } + public global::Vapi.CloneVoiceDTO? Type1928 { get; set; } /// /// /// - public global::Vapi.TimeRangeStep? Type1929 { get; set; } + public global::System.Collections.Generic.IList? Type1929 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperation? Type1930 { get; set; } + public global::Vapi.VariableValueGroupBy? Type1930 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperationOperation? Type1931 { get; set; } + public global::Vapi.TimeRange? Type1931 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperationColumn? Type1932 { get; set; } + public global::Vapi.TimeRangeStep? Type1932 { get; set; } /// /// /// - public global::Vapi.AnalyticsQuery? Type1933 { get; set; } + public global::Vapi.AnalyticsOperation? Type1933 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryTable? Type1934 { get; set; } + public global::Vapi.AnalyticsOperationOperation? Type1934 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1935 { get; set; } + public global::Vapi.AnalyticsOperationColumn? Type1935 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryGroupByItem? Type1936 { get; set; } + public global::Vapi.AnalyticsQuery? Type1936 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1937 { get; set; } + public global::Vapi.AnalyticsQueryTable? Type1937 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1938 { get; set; } + public global::System.Collections.Generic.IList? Type1938 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryDTO? Type1939 { get; set; } + public global::Vapi.AnalyticsQueryGroupByItem? Type1939 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1940 { get; set; } + public global::System.Collections.Generic.IList? Type1940 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryResult? Type1941 { get; set; } + public global::System.Collections.Generic.IList? Type1941 { get; set; } /// /// /// - public global::Vapi.ClientMessageWorkflowNodeStarted? Type1942 { get; set; } + public global::Vapi.AnalyticsQueryDTO? Type1942 { get; set; } /// /// /// - public global::Vapi.ClientMessageWorkflowNodeStartedType? Type1943 { get; set; } + public global::System.Collections.Generic.IList? Type1943 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantStarted? Type1944 { get; set; } + public global::Vapi.AnalyticsQueryResult? Type1944 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantStartedType? Type1945 { get; set; } + public global::Vapi.ClientMessageWorkflowNodeStarted? Type1945 { get; set; } /// /// /// - public global::Vapi.ClientMessageConversationUpdate? Type1946 { get; set; } + public global::Vapi.ClientMessageWorkflowNodeStartedType? Type1946 { get; set; } /// /// /// - public global::Vapi.ClientMessageConversationUpdateType? Type1947 { get; set; } + public global::Vapi.ClientMessageAssistantStarted? Type1947 { get; set; } /// /// /// - public global::Vapi.ClientMessageHang? Type1948 { get; set; } + public global::Vapi.ClientMessageAssistantStartedType? Type1948 { get; set; } /// /// /// - public global::Vapi.ClientMessageHangType? Type1949 { get; set; } + public global::Vapi.ClientMessageConversationUpdate? Type1949 { get; set; } /// /// /// - public global::Vapi.ClientMessageMetadata? Type1950 { get; set; } + public global::Vapi.ClientMessageConversationUpdateType? Type1950 { get; set; } /// /// /// - public global::Vapi.ClientMessageMetadataType? Type1951 { get; set; } + public global::Vapi.ClientMessageHang? Type1951 { get; set; } /// /// /// - public global::Vapi.ClientMessageModelOutput? Type1952 { get; set; } + public global::Vapi.ClientMessageHangType? Type1952 { get; set; } /// /// /// - public global::Vapi.ClientMessageModelOutputType? Type1953 { get; set; } + public global::Vapi.ClientMessageMetadata? Type1953 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdate? Type1954 { get; set; } + public global::Vapi.ClientMessageMetadataType? Type1954 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateType? Type1955 { get; set; } + public global::Vapi.ClientMessageModelOutput? Type1955 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateStatus? Type1956 { get; set; } + public global::Vapi.ClientMessageModelOutputType? Type1956 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateRole? Type1957 { get; set; } + public global::Vapi.ClientMessageSpeechUpdate? Type1957 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscript? Type1958 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateType? Type1958 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptType? Type1959 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateStatus? Type1959 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptRole? Type1960 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateRole? Type1960 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptTranscriptType? Type1961 { get; set; } + public global::Vapi.ClientMessageTranscript? Type1961 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCalls? Type1962 { get; set; } + public global::Vapi.ClientMessageTranscriptType? Type1962 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsType? Type1963 { get; set; } + public global::Vapi.ClientMessageTranscriptRole? Type1963 { get; set; } /// /// /// - public global::Vapi.FunctionToolWithToolCall? Type1964 { get; set; } + public global::Vapi.ClientMessageTranscriptTranscriptType? Type1964 { get; set; } /// /// /// - public global::Vapi.GhlToolWithToolCall? Type1965 { get; set; } + public global::Vapi.ClientMessageToolCalls? Type1965 { get; set; } /// /// /// - public global::Vapi.MakeToolWithToolCall? Type1966 { get; set; } + public global::Vapi.ClientMessageToolCallsType? Type1966 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCall? Type1967 { get; set; } + public global::Vapi.FunctionToolWithToolCall? Type1967 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCall? Type1968 { get; set; } + public global::Vapi.GhlToolWithToolCall? Type1968 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCall? Type1969 { get; set; } + public global::Vapi.MakeToolWithToolCall? Type1969 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolWithToolCall? Type1970 { get; set; } + public global::Vapi.BashToolWithToolCall? Type1970 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsResult? Type1971 { get; set; } + public global::Vapi.ComputerToolWithToolCall? Type1971 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsResultType? Type1972 { get; set; } + public global::Vapi.TextEditorToolWithToolCall? Type1972 { get; set; } /// /// /// - public global::Vapi.ClientMessageTransferUpdate? Type1973 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolWithToolCall? Type1973 { get; set; } /// /// /// - public global::Vapi.ClientMessageTransferUpdateType? Type1974 { get; set; } + public global::Vapi.ClientMessageToolCallsResult? Type1974 { get; set; } /// /// /// - public global::Vapi.ClientMessageUserInterrupted? Type1975 { get; set; } + public global::Vapi.ClientMessageToolCallsResultType? Type1975 { get; set; } /// /// /// - public global::Vapi.ClientMessageUserInterruptedType? Type1976 { get; set; } + public global::Vapi.ClientMessageTransferUpdate? Type1976 { get; set; } /// /// /// - public global::Vapi.ClientMessageLanguageChangeDetected? Type1977 { get; set; } + public global::Vapi.ClientMessageTransferUpdateType? Type1977 { get; set; } /// /// /// - public global::Vapi.ClientMessageLanguageChangeDetectedType? Type1978 { get; set; } + public global::Vapi.ClientMessageUserInterrupted? Type1978 { get; set; } /// /// /// - public global::Vapi.ClientMessageVoiceInput? Type1979 { get; set; } + public global::Vapi.ClientMessageUserInterruptedType? Type1979 { get; set; } /// /// /// - public global::Vapi.ClientMessageVoiceInputType? Type1980 { get; set; } + public global::Vapi.ClientMessageLanguageChangeDetected? Type1980 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeech? Type1981 { get; set; } + public global::Vapi.ClientMessageLanguageChangeDetectedType? Type1981 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechType? Type1982 { get; set; } + public global::Vapi.ClientMessageVoiceInput? Type1982 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechSource? Type1983 { get; set; } + public global::Vapi.ClientMessageVoiceInputType? Type1983 { get; set; } /// /// /// - public global::Vapi.Timing? Type1984 { get; set; } + public global::Vapi.ClientMessageAssistantSpeech? Type1984 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminator? Type1985 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechType? Type1985 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminatorType? Type1986 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechSource? Type1986 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatCreated? Type1987 { get; set; } + public global::Vapi.Timing? Type1987 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatCreatedType? Type1988 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminator? Type1988 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatDeleted? Type1989 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminatorType? Type1989 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatDeletedType? Type1990 { get; set; } + public global::Vapi.ClientMessageChatCreated? Type1990 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionCreated? Type1991 { get; set; } + public global::Vapi.ClientMessageChatCreatedType? Type1991 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionCreatedType? Type1992 { get; set; } + public global::Vapi.ClientMessageChatDeleted? Type1992 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionUpdated? Type1993 { get; set; } + public global::Vapi.ClientMessageChatDeletedType? Type1993 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionUpdatedType? Type1994 { get; set; } + public global::Vapi.ClientMessageSessionCreated? Type1994 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionDeleted? Type1995 { get; set; } + public global::Vapi.ClientMessageSessionCreatedType? Type1995 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionDeletedType? Type1996 { get; set; } + public global::Vapi.ClientMessageSessionUpdated? Type1996 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleted? Type1997 { get; set; } + public global::Vapi.ClientMessageSessionUpdatedType? Type1997 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeletedType? Type1998 { get; set; } + public global::Vapi.ClientMessageSessionDeleted? Type1998 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleteFailed? Type1999 { get; set; } + public global::Vapi.ClientMessageSessionDeletedType? Type1999 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleteFailedType? Type2000 { get; set; } + public global::Vapi.ClientMessageCallDeleted? Type2000 { get; set; } /// /// /// - public global::Vapi.ClientMessage? Type2001 { get; set; } + public global::Vapi.ClientMessageCallDeletedType? Type2001 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantRequest? Type2002 { get; set; } + public global::Vapi.ClientMessageCallDeleteFailed? Type2002 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantRequestType? Type2003 { get; set; } + public global::Vapi.ClientMessageCallDeleteFailedType? Type2003 { get; set; } /// /// /// - public global::Vapi.ServerMessageConversationUpdate? Type2004 { get; set; } + public global::Vapi.ClientMessage? Type2004 { get; set; } /// /// /// - public global::Vapi.ServerMessageConversationUpdateType? Type2005 { get; set; } + public global::Vapi.ServerMessageAssistantRequest? Type2005 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReport? Type2006 { get; set; } + public global::Vapi.ServerMessageAssistantRequestType? Type2006 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReportType? Type2007 { get; set; } + public global::Vapi.ServerMessageConversationUpdate? Type2007 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReportEndedReason? Type2008 { get; set; } + public global::Vapi.ServerMessageConversationUpdateType? Type2008 { get; set; } /// /// /// - public global::Vapi.ServerMessageHandoffDestinationRequest? Type2009 { get; set; } + public global::Vapi.ServerMessageEndOfCallReport? Type2009 { get; set; } /// /// /// - public global::Vapi.ServerMessageHandoffDestinationRequestType? Type2010 { get; set; } + public global::Vapi.ServerMessageEndOfCallReportType? Type2010 { get; set; } /// /// /// - public global::Vapi.ServerMessageHang? Type2011 { get; set; } + public global::Vapi.ServerMessageEndOfCallReportEndedReason? Type2011 { get; set; } /// /// /// - public global::Vapi.ServerMessageHangType? Type2012 { get; set; } + public global::Vapi.ServerMessageHandoffDestinationRequest? Type2012 { get; set; } /// /// /// - public global::Vapi.ServerMessageKnowledgeBaseRequest? Type2013 { get; set; } + public global::Vapi.ServerMessageHandoffDestinationRequestType? Type2013 { get; set; } /// /// /// - public global::Vapi.ServerMessageKnowledgeBaseRequestType? Type2014 { get; set; } + public global::Vapi.ServerMessageHang? Type2014 { get; set; } /// /// /// - public global::Vapi.ServerMessageModelOutput? Type2015 { get; set; } + public global::Vapi.ServerMessageHangType? Type2015 { get; set; } /// /// /// - public global::Vapi.ServerMessageModelOutputType? Type2016 { get; set; } + public global::Vapi.ServerMessageKnowledgeBaseRequest? Type2016 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControl? Type2017 { get; set; } + public global::Vapi.ServerMessageKnowledgeBaseRequestType? Type2017 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControlType? Type2018 { get; set; } + public global::Vapi.ServerMessageModelOutput? Type2018 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControlRequest? Type2019 { get; set; } + public global::Vapi.ServerMessageModelOutputType? Type2019 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdate? Type2020 { get; set; } + public global::Vapi.ServerMessagePhoneCallControl? Type2020 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateType? Type2021 { get; set; } + public global::Vapi.ServerMessagePhoneCallControlType? Type2021 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateStatus? Type2022 { get; set; } + public global::Vapi.ServerMessagePhoneCallControlRequest? Type2022 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateRole? Type2023 { get; set; } + public global::Vapi.ServerMessageSpeechUpdate? Type2023 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdate? Type2024 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateType? Type2024 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateType? Type2025 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateStatus? Type2025 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateStatus? Type2026 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateRole? Type2026 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateEndedReason? Type2027 { get; set; } + public global::Vapi.ServerMessageStatusUpdate? Type2027 { get; set; } /// /// /// - public global::Vapi.ServerMessageToolCalls? Type2028 { get; set; } + public global::Vapi.ServerMessageStatusUpdateType? Type2028 { get; set; } /// /// /// - public global::Vapi.ServerMessageToolCallsType? Type2029 { get; set; } + public global::Vapi.ServerMessageStatusUpdateStatus? Type2029 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferDestinationRequest? Type2030 { get; set; } + public global::Vapi.ServerMessageStatusUpdateEndedReason? Type2030 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferDestinationRequestType? Type2031 { get; set; } + public global::Vapi.ServerMessageToolCalls? Type2031 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferUpdate? Type2032 { get; set; } + public global::Vapi.ServerMessageToolCallsType? Type2032 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferUpdateType? Type2033 { get; set; } + public global::Vapi.ServerMessageTransferDestinationRequest? Type2033 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscript? Type2034 { get; set; } + public global::Vapi.ServerMessageTransferDestinationRequestType? Type2034 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptType? Type2035 { get; set; } + public global::Vapi.ServerMessageTransferUpdate? Type2035 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptRole? Type2036 { get; set; } + public global::Vapi.ServerMessageTransferUpdateType? Type2036 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptTranscriptType? Type2037 { get; set; } + public global::Vapi.ServerMessageTranscript? Type2037 { get; set; } /// /// /// - public global::Vapi.ServerMessageUserInterrupted? Type2038 { get; set; } + public global::Vapi.ServerMessageTranscriptType? Type2038 { get; set; } /// /// /// - public global::Vapi.ServerMessageUserInterruptedType? Type2039 { get; set; } + public global::Vapi.ServerMessageTranscriptRole? Type2039 { get; set; } /// /// /// - public global::Vapi.ServerMessageLanguageChangeDetected? Type2040 { get; set; } + public global::Vapi.ServerMessageTranscriptTranscriptType? Type2040 { get; set; } /// /// /// - public global::Vapi.ServerMessageLanguageChangeDetectedType? Type2041 { get; set; } + public global::Vapi.ServerMessageUserInterrupted? Type2041 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceInput? Type2042 { get; set; } + public global::Vapi.ServerMessageUserInterruptedType? Type2042 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceInputType? Type2043 { get; set; } + public global::Vapi.ServerMessageLanguageChangeDetected? Type2043 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeech? Type2044 { get; set; } + public global::Vapi.ServerMessageLanguageChangeDetectedType? Type2044 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechType? Type2045 { get; set; } + public global::Vapi.ServerMessageVoiceInput? Type2045 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechSource? Type2046 { get; set; } + public global::Vapi.ServerMessageVoiceInputType? Type2046 { get; set; } /// /// /// - public global::Vapi.Timing2? Type2047 { get; set; } + public global::Vapi.ServerMessageAssistantSpeech? Type2047 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminator? Type2048 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechType? Type2048 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminatorType? Type2049 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechSource? Type2049 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceRequest? Type2050 { get; set; } + public global::Vapi.Timing2? Type2050 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceRequestType? Type2051 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminator? Type2051 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallEndpointingRequest? Type2052 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminatorType? Type2052 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallEndpointingRequestType? Type2053 { get; set; } + public global::Vapi.ServerMessageVoiceRequest? Type2053 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatCreated? Type2054 { get; set; } + public global::Vapi.ServerMessageVoiceRequestType? Type2054 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatCreatedType? Type2055 { get; set; } + public global::Vapi.ServerMessageCallEndpointingRequest? Type2055 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatDeleted? Type2056 { get; set; } + public global::Vapi.ServerMessageCallEndpointingRequestType? Type2056 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatDeletedType? Type2057 { get; set; } + public global::Vapi.ServerMessageChatCreated? Type2057 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionCreated? Type2058 { get; set; } + public global::Vapi.ServerMessageChatCreatedType? Type2058 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionCreatedType? Type2059 { get; set; } + public global::Vapi.ServerMessageChatDeleted? Type2059 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionUpdated? Type2060 { get; set; } + public global::Vapi.ServerMessageChatDeletedType? Type2060 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionUpdatedType? Type2061 { get; set; } + public global::Vapi.ServerMessageSessionCreated? Type2061 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionDeleted? Type2062 { get; set; } + public global::Vapi.ServerMessageSessionCreatedType? Type2062 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionDeletedType? Type2063 { get; set; } + public global::Vapi.ServerMessageSessionUpdated? Type2063 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleted? Type2064 { get; set; } + public global::Vapi.ServerMessageSessionUpdatedType? Type2064 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeletedType? Type2065 { get; set; } + public global::Vapi.ServerMessageSessionDeleted? Type2065 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleteFailed? Type2066 { get; set; } + public global::Vapi.ServerMessageSessionDeletedType? Type2066 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleteFailedType? Type2067 { get; set; } + public global::Vapi.ServerMessageCallDeleted? Type2067 { get; set; } /// /// /// - public global::Vapi.ServerMessage? Type2068 { get; set; } + public global::Vapi.ServerMessageCallDeletedType? Type2068 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseAssistantRequest? Type2069 { get; set; } + public global::Vapi.ServerMessageCallDeleteFailed? Type2069 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseHandoffDestinationRequest? Type2070 { get; set; } + public global::Vapi.ServerMessageCallDeleteFailedType? Type2070 { get; set; } /// /// /// - public global::Vapi.KnowledgeBaseResponseDocument? Type2071 { get; set; } + public global::Vapi.ServerMessage? Type2071 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseKnowledgeBaseRequest? Type2072 { get; set; } + public global::Vapi.ServerMessageResponseAssistantRequest? Type2072 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2073 { get; set; } + public global::Vapi.ServerMessageResponseHandoffDestinationRequest? Type2073 { get; set; } /// /// /// - public global::Vapi.ToolCallResult? Type2074 { get; set; } + public global::Vapi.KnowledgeBaseResponseDocument? Type2074 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2075 { get; set; } + public global::Vapi.ServerMessageResponseKnowledgeBaseRequest? Type2075 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseToolCalls? Type2076 { get; set; } + public global::System.Collections.Generic.IList? Type2076 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2077 { get; set; } + public global::Vapi.ToolCallResult? Type2077 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseTransferDestinationRequest? Type2078 { get; set; } + public global::Vapi.OneOf? Type2078 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseVoiceRequest? Type2079 { get; set; } + public global::Vapi.ServerMessageResponseToolCalls? Type2079 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseCallEndpointingRequest? Type2080 { get; set; } + public global::System.Collections.Generic.IList? Type2080 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponse? Type2081 { get; set; } + public global::Vapi.ServerMessageResponseTransferDestinationRequest? Type2081 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageAddMessage? Type2082 { get; set; } + public global::Vapi.ServerMessageResponseVoiceRequest? Type2082 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageAddMessageType? Type2083 { get; set; } + public global::Vapi.ServerMessageResponseCallEndpointingRequest? Type2083 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControl? Type2084 { get; set; } + public global::Vapi.ServerMessageResponse? Type2084 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControlType? Type2085 { get; set; } + public global::Vapi.ClientInboundMessageAddMessage? Type2085 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControlControl? Type2086 { get; set; } + public global::Vapi.ClientInboundMessageAddMessageType? Type2086 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSay? Type2087 { get; set; } + public global::Vapi.ClientInboundMessageControl? Type2087 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSayType? Type2088 { get; set; } + public global::Vapi.ClientInboundMessageControlType? Type2088 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageEndCall? Type2089 { get; set; } + public global::Vapi.ClientInboundMessageControlControl? Type2089 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageEndCallType? Type2090 { get; set; } + public global::Vapi.ClientInboundMessageSay? Type2090 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageTransfer? Type2091 { get; set; } + public global::Vapi.ClientInboundMessageSayType? Type2091 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageTransferType? Type2092 { get; set; } + public global::Vapi.ClientInboundMessageEndCall? Type2092 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSendTransportMessage? Type2093 { get; set; } + public global::Vapi.ClientInboundMessageEndCallType? Type2093 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSendTransportMessageType? Type2094 { get; set; } + public global::Vapi.ClientInboundMessageTransfer? Type2094 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2095 { get; set; } + public global::Vapi.ClientInboundMessageTransferType? Type2095 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessage? Type2096 { get; set; } + public global::Vapi.ClientInboundMessageSendTransportMessage? Type2096 { get; set; } /// /// /// - public global::Vapi.TwilioTransportMessage? Type2097 { get; set; } + public global::Vapi.ClientInboundMessageSendTransportMessageType? Type2097 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessage? Type2098 { get; set; } + public global::Vapi.OneOf? Type2098 { get; set; } /// /// /// - public global::Vapi.KnowledgeBaseCostType? Type2099 { get; set; } + public global::Vapi.VapiSipTransportMessage? Type2099 { get; set; } /// /// /// - public global::Vapi.SessionCostType? Type2100 { get; set; } + public global::Vapi.TwilioTransportMessage? Type2100 { get; set; } /// /// /// - public global::Vapi.FunctionToolWithToolCallType? Type2101 { get; set; } + public global::Vapi.ClientInboundMessage? Type2101 { get; set; } /// /// /// - public global::Vapi.GhlToolWithToolCallType? Type2102 { get; set; } + public global::Vapi.KnowledgeBaseCostType? Type2102 { get; set; } /// /// /// - public global::Vapi.MakeToolWithToolCallType? Type2103 { get; set; } + public global::Vapi.SessionCostType? Type2103 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallType? Type2104 { get; set; } + public global::Vapi.FunctionToolWithToolCallType? Type2104 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallSubType? Type2105 { get; set; } + public global::Vapi.GhlToolWithToolCallType? Type2105 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallName? Type2106 { get; set; } + public global::Vapi.MakeToolWithToolCallType? Type2106 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallType? Type2107 { get; set; } + public global::Vapi.BashToolWithToolCallType? Type2107 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallSubType? Type2108 { get; set; } + public global::Vapi.BashToolWithToolCallSubType? Type2108 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallName? Type2109 { get; set; } + public global::Vapi.BashToolWithToolCallName? Type2109 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallType? Type2110 { get; set; } + public global::Vapi.ComputerToolWithToolCallType? Type2110 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallSubType? Type2111 { get; set; } + public global::Vapi.ComputerToolWithToolCallSubType? Type2111 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallName? Type2112 { get; set; } + public global::Vapi.ComputerToolWithToolCallName? Type2112 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolWithToolCallType? Type2113 { get; set; } + public global::Vapi.TextEditorToolWithToolCallType? Type2113 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolWithToolCall? Type2114 { get; set; } + public global::Vapi.TextEditorToolWithToolCallSubType? Type2114 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolWithToolCallType? Type2115 { get; set; } + public global::Vapi.TextEditorToolWithToolCallName? Type2115 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCall? Type2116 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolWithToolCallType? Type2116 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCallType? Type2117 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolWithToolCall? Type2117 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCall? Type2118 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolWithToolCallType? Type2118 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCallType? Type2119 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCall? Type2119 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolWithToolCall? Type2120 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCallType? Type2120 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolWithToolCallType? Type2121 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCall? Type2121 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolWithToolCall? Type2122 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCallType? Type2122 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolWithToolCallType? Type2123 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolWithToolCall? Type2123 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessageTransport? Type2124 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolWithToolCallType? Type2124 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessageSipVerb? Type2125 { get; set; } + public global::Vapi.GoHighLevelContactGetToolWithToolCall? Type2125 { get; set; } /// /// /// - public global::Vapi.TwilioTransportMessageTransport? Type2126 { get; set; } + public global::Vapi.GoHighLevelContactGetToolWithToolCallType? Type2126 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequest? Type2127 { get; set; } + public global::Vapi.VapiSipTransportMessageTransport? Type2127 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequestDiscriminator? Type2128 { get; set; } + public global::Vapi.VapiSipTransportMessageSipVerb? Type2128 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequestDiscriminatorProvider? Type2129 { get; set; } + public global::Vapi.TwilioTransportMessageTransport? Type2129 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequest? Type2130 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequest? Type2130 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminator? Type2131 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequestDiscriminator? Type2131 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminatorProvider? Type2132 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequestDiscriminatorProvider? Type2132 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequest? Type2133 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequest? Type2133 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequestDiscriminator? Type2134 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminator? Type2134 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequestDiscriminatorType? Type2135 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminatorProvider? Type2135 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequest? Type2136 { get; set; } + public global::Vapi.ToolControllerCreateRequest? Type2136 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequestDiscriminator? Type2137 { get; set; } + public global::Vapi.ToolControllerCreateRequestDiscriminator? Type2137 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequestDiscriminatorType? Type2138 { get; set; } + public global::Vapi.ToolControllerCreateRequestDiscriminatorType? Type2138 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequest? Type2139 { get; set; } + public global::Vapi.ToolControllerUpdateRequest? Type2139 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequestDiscriminator? Type2140 { get; set; } + public global::Vapi.ToolControllerUpdateRequestDiscriminator? Type2140 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequestDiscriminatorType? Type2141 { get; set; } + public global::Vapi.ToolControllerUpdateRequestDiscriminatorType? Type2141 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequest? Type2142 { get; set; } + public global::Vapi.InsightControllerCreateRequest? Type2142 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequestDiscriminator? Type2143 { get; set; } + public global::Vapi.InsightControllerCreateRequestDiscriminator? Type2143 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequestDiscriminatorType? Type2144 { get; set; } + public global::Vapi.InsightControllerCreateRequestDiscriminatorType? Type2144 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequest? Type2145 { get; set; } + public global::Vapi.InsightControllerUpdateRequest? Type2145 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequestDiscriminator? Type2146 { get; set; } + public global::Vapi.InsightControllerUpdateRequestDiscriminator? Type2146 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequestDiscriminatorType? Type2147 { get; set; } + public global::Vapi.InsightControllerUpdateRequestDiscriminatorType? Type2147 { get; set; } /// /// /// - public global::Vapi.ChatControllerListChatsSortOrder? Type2148 { get; set; } + public global::Vapi.InsightControllerPreviewRequest? Type2148 { get; set; } /// /// /// - public global::Vapi.ChatControllerListChatsSortBy? Type2149 { get; set; } + public global::Vapi.InsightControllerPreviewRequestDiscriminator? Type2149 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllStatus? Type2150 { get; set; } + public global::Vapi.InsightControllerPreviewRequestDiscriminatorType? Type2150 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllSortOrder? Type2151 { get; set; } + public global::Vapi.ChatControllerListChatsSortOrder? Type2151 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllSortBy? Type2152 { get; set; } + public global::Vapi.ChatControllerListChatsSortBy? Type2152 { get; set; } /// /// /// - public global::Vapi.SessionControllerFindAllPaginatedSortOrder? Type2153 { get; set; } + public global::Vapi.CampaignControllerFindAllStatus? Type2153 { get; set; } /// /// /// - public global::Vapi.SessionControllerFindAllPaginatedSortBy? Type2154 { get; set; } + public global::Vapi.CampaignControllerFindAllSortOrder? Type2154 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllPaginatedSortOrder? Type2155 { get; set; } + public global::Vapi.CampaignControllerFindAllSortBy? Type2155 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy? Type2156 { get; set; } + public global::Vapi.SessionControllerFindAllPaginatedSortOrder? Type2156 { get; set; } /// /// /// - public global::Vapi.StructuredOutputControllerFindAllSortOrder? Type2157 { get; set; } + public global::Vapi.SessionControllerFindAllPaginatedSortBy? Type2157 { get; set; } /// /// /// - public global::Vapi.StructuredOutputControllerFindAllSortBy? Type2158 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllPaginatedSortOrder? Type2158 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindAllSortOrder? Type2159 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy? Type2159 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindAllSortBy? Type2160 { get; set; } + public global::Vapi.StructuredOutputControllerFindAllSortOrder? Type2160 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetPaginatedSortOrder? Type2161 { get; set; } + public global::Vapi.StructuredOutputControllerFindAllSortBy? Type2161 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetPaginatedSortBy? Type2162 { get; set; } + public global::Vapi.InsightControllerFindAllSortOrder? Type2162 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetRunsPaginatedSortOrder? Type2163 { get; set; } + public global::Vapi.InsightControllerFindAllSortBy? Type2163 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetRunsPaginatedSortBy? Type2164 { get; set; } + public global::Vapi.EvalControllerGetPaginatedSortOrder? Type2164 { get; set; } /// /// /// - public global::Vapi.ScorecardControllerGetPaginatedSortOrder? Type2165 { get; set; } + public global::Vapi.EvalControllerGetPaginatedSortBy? Type2165 { get; set; } /// /// /// - public global::Vapi.ScorecardControllerGetPaginatedSortBy? Type2166 { get; set; } + public global::Vapi.EvalControllerGetRunsPaginatedSortOrder? Type2166 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerCreateProviderResourceProvider? Type2167 { get; set; } + public global::Vapi.EvalControllerGetRunsPaginatedSortBy? Type2167 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerCreateProviderResourceResourceName? Type2168 { get; set; } + public global::Vapi.ScorecardControllerGetPaginatedSortOrder? Type2168 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedProvider? Type2169 { get; set; } + public global::Vapi.ScorecardControllerGetPaginatedSortBy? Type2169 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedResourceName? Type2170 { get; set; } + public global::Vapi.ProviderResourceControllerCreateProviderResourceProvider? Type2170 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortOrder? Type2171 { get; set; } + public global::Vapi.ProviderResourceControllerCreateProviderResourceResourceName? Type2171 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortBy? Type2172 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedProvider? Type2172 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourceProvider? Type2173 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedResourceName? Type2173 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourceResourceName? Type2174 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortOrder? Type2174 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerDeleteProviderResourceProvider? Type2175 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortBy? Type2175 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerDeleteProviderResourceResourceName? Type2176 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourceProvider? Type2176 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider? Type2177 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourceResourceName? Type2177 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName? Type2178 { get; set; } + public global::Vapi.ProviderResourceControllerDeleteProviderResourceProvider? Type2178 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2179 { get; set; } + public global::Vapi.ProviderResourceControllerDeleteProviderResourceResourceName? Type2179 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2180 { get; set; } + public global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider? Type2180 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2181 { get; set; } + public global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName? Type2181 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2182 { get; set; } + public global::System.Collections.Generic.IList? Type2182 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponse? Type2183 { get; set; } + public global::Vapi.OneOf? Type2183 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponseDiscriminator? Type2184 { get; set; } + public global::Vapi.OneOf? Type2184 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider? Type2185 { get; set; } + public global::Vapi.OneOf? Type2185 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2186 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponse? Type2186 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItem? Type2187 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponseDiscriminator? Type2187 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminator? Type2188 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider? Type2188 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminatorProvider? Type2189 { get; set; } + public global::System.Collections.Generic.IList? Type2189 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponse? Type2190 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItem? Type2190 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminator? Type2191 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminator? Type2191 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminatorProvider? Type2192 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminatorProvider? Type2192 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponse? Type2193 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponse? Type2193 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminator? Type2194 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminator? Type2194 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminatorProvider? Type2195 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminatorProvider? Type2195 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponse? Type2196 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponse? Type2196 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminator? Type2197 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminator? Type2197 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminatorProvider? Type2198 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminatorProvider? Type2198 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponse? Type2199 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponse? Type2199 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponseDiscriminator? Type2200 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminator? Type2200 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponseDiscriminatorType? Type2201 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminatorProvider? Type2201 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2202 { get; set; } + public global::Vapi.ToolControllerCreateResponse? Type2202 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItem? Type2203 { get; set; } + public global::Vapi.ToolControllerCreateResponseDiscriminator? Type2203 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItemDiscriminator? Type2204 { get; set; } + public global::Vapi.ToolControllerCreateResponseDiscriminatorType? Type2204 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItemDiscriminatorType? Type2205 { get; set; } + public global::System.Collections.Generic.IList? Type2205 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponse? Type2206 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItem? Type2206 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponseDiscriminator? Type2207 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItemDiscriminator? Type2207 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponseDiscriminatorType? Type2208 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItemDiscriminatorType? Type2208 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponse? Type2209 { get; set; } + public global::Vapi.ToolControllerFindOneResponse? Type2209 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponseDiscriminator? Type2210 { get; set; } + public global::Vapi.ToolControllerFindOneResponseDiscriminator? Type2210 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponseDiscriminatorType? Type2211 { get; set; } + public global::Vapi.ToolControllerFindOneResponseDiscriminatorType? Type2211 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponse? Type2212 { get; set; } + public global::Vapi.ToolControllerUpdateResponse? Type2212 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponseDiscriminator? Type2213 { get; set; } + public global::Vapi.ToolControllerUpdateResponseDiscriminator? Type2213 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponseDiscriminatorType? Type2214 { get; set; } + public global::Vapi.ToolControllerUpdateResponseDiscriminatorType? Type2214 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2215 { get; set; } + public global::Vapi.ToolControllerRemoveResponse? Type2215 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponse? Type2216 { get; set; } + public global::Vapi.ToolControllerRemoveResponseDiscriminator? Type2216 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponseDiscriminator? Type2217 { get; set; } + public global::Vapi.ToolControllerRemoveResponseDiscriminatorType? Type2217 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponseDiscriminatorType? Type2218 { get; set; } + public global::System.Collections.Generic.IList? Type2218 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponse? Type2219 { get; set; } + public global::Vapi.InsightControllerCreateResponse? Type2219 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponseDiscriminator? Type2220 { get; set; } + public global::Vapi.InsightControllerCreateResponseDiscriminator? Type2220 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponseDiscriminatorType? Type2221 { get; set; } + public global::Vapi.InsightControllerCreateResponseDiscriminatorType? Type2221 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponse? Type2222 { get; set; } + public global::Vapi.InsightControllerUpdateResponse? Type2222 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponseDiscriminator? Type2223 { get; set; } + public global::Vapi.InsightControllerUpdateResponseDiscriminator? Type2223 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponseDiscriminatorType? Type2224 { get; set; } + public global::Vapi.InsightControllerUpdateResponseDiscriminatorType? Type2224 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponse? Type2225 { get; set; } + public global::Vapi.InsightControllerFindOneResponse? Type2225 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponseDiscriminator? Type2226 { get; set; } + public global::Vapi.InsightControllerFindOneResponseDiscriminator? Type2226 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponseDiscriminatorType? Type2227 { get; set; } + public global::Vapi.InsightControllerFindOneResponseDiscriminatorType? Type2227 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2228 { get; set; } + public global::Vapi.InsightControllerRemoveResponse? Type2228 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerRemoveResponseDiscriminator? Type2229 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerRemoveResponseDiscriminatorType? Type2230 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.IList? Type2231 { get; set; } /// /// diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTO.g.cs index 79263a2e..c4097426 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTO.g.cs @@ -22,6 +22,14 @@ public sealed partial class CreateElevenLabsCredentialDTO [global::System.Text.Json.Serialization.JsonRequired] public required string ApiKey { get; set; } + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("baseUrl")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.CreateElevenLabsCredentialDTOBaseUrlJsonConverter))] + public global::Vapi.CreateElevenLabsCredentialDTOBaseUrl? BaseUrl { get; set; } + /// /// This is the name of credential. This is just for your reference. /// @@ -41,6 +49,10 @@ public sealed partial class CreateElevenLabsCredentialDTO /// This is not returned in the API. /// /// + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + /// /// /// This is the name of credential. This is just for your reference. /// @@ -50,10 +62,12 @@ public sealed partial class CreateElevenLabsCredentialDTO public CreateElevenLabsCredentialDTO( string apiKey, global::Vapi.CreateElevenLabsCredentialDTOProvider provider, + global::Vapi.CreateElevenLabsCredentialDTOBaseUrl? baseUrl, string? name) { this.Provider = provider; this.ApiKey = apiKey ?? throw new global::System.ArgumentNullException(nameof(apiKey)); + this.BaseUrl = baseUrl; this.Name = name; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTOBaseUrl.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTOBaseUrl.g.cs new file mode 100644 index 00000000..9dbf9e8d --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateElevenLabsCredentialDTOBaseUrl.g.cs @@ -0,0 +1,52 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + ///
+ public enum CreateElevenLabsCredentialDTOBaseUrl + { + /// + /// + /// + Https_ApiElevenlabsIo, + /// + /// + /// + Https_ApiEuResidencyElevenlabsIo, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class CreateElevenLabsCredentialDTOBaseUrlExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this CreateElevenLabsCredentialDTOBaseUrl value) + { + return value switch + { + CreateElevenLabsCredentialDTOBaseUrl.Https_ApiElevenlabsIo => "https://api.elevenlabs.io", + CreateElevenLabsCredentialDTOBaseUrl.Https_ApiEuResidencyElevenlabsIo => "https://api.eu.residency.elevenlabs.io", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static CreateElevenLabsCredentialDTOBaseUrl? ToEnum(string value) + { + return value switch + { + "https://api.elevenlabs.io" => CreateElevenLabsCredentialDTOBaseUrl.Https_ApiElevenlabsIo, + "https://api.eu.residency.elevenlabs.io" => CreateElevenLabsCredentialDTOBaseUrl.Https_ApiEuResidencyElevenlabsIo, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.CreateMicrosoftCredentialDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CreateMicrosoftCredentialDTO.g.cs index 2ce41a1b..147dd8ad 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.CreateMicrosoftCredentialDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.CreateMicrosoftCredentialDTO.g.cs @@ -23,7 +23,7 @@ public sealed partial class CreateMicrosoftCredentialDTO public required string ApiKey { get; set; } /// - /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.
+ /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.
/// Example: eastus ///
/// eastus @@ -50,7 +50,7 @@ public sealed partial class CreateMicrosoftCredentialDTO /// /// /// - /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.
+ /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.
/// Example: eastus /// /// diff --git a/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredential.g.cs b/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredential.g.cs index 3f7db169..8352d7fd 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredential.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredential.g.cs @@ -22,6 +22,14 @@ public sealed partial class ElevenLabsCredential [global::System.Text.Json.Serialization.JsonRequired] public required string ApiKey { get; set; } + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("baseUrl")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.ElevenLabsCredentialBaseUrlJsonConverter))] + public global::Vapi.ElevenLabsCredentialBaseUrl? BaseUrl { get; set; } + /// /// This is the unique identifier for the credential. /// @@ -81,6 +89,10 @@ public sealed partial class ElevenLabsCredential /// This is the ISO 8601 date-time string of when the assistant was last updated. /// /// + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + /// /// /// This is the name of credential. This is just for your reference. /// @@ -94,10 +106,12 @@ public ElevenLabsCredential( global::System.DateTime createdAt, global::System.DateTime updatedAt, global::Vapi.ElevenLabsCredentialProvider provider, + global::Vapi.ElevenLabsCredentialBaseUrl? baseUrl, string? name) { this.Provider = provider; this.ApiKey = apiKey ?? throw new global::System.ArgumentNullException(nameof(apiKey)); + this.BaseUrl = baseUrl; this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id)); this.OrgId = orgId ?? throw new global::System.ArgumentNullException(nameof(orgId)); this.CreatedAt = createdAt; diff --git a/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredentialBaseUrl.g.cs b/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredentialBaseUrl.g.cs new file mode 100644 index 00000000..b8334afa --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.ElevenLabsCredentialBaseUrl.g.cs @@ -0,0 +1,52 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + ///
+ public enum ElevenLabsCredentialBaseUrl + { + /// + /// + /// + Https_ApiElevenlabsIo, + /// + /// + /// + Https_ApiEuResidencyElevenlabsIo, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class ElevenLabsCredentialBaseUrlExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this ElevenLabsCredentialBaseUrl value) + { + return value switch + { + ElevenLabsCredentialBaseUrl.Https_ApiElevenlabsIo => "https://api.elevenlabs.io", + ElevenLabsCredentialBaseUrl.Https_ApiEuResidencyElevenlabsIo => "https://api.eu.residency.elevenlabs.io", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static ElevenLabsCredentialBaseUrl? ToEnum(string value) + { + return value switch + { + "https://api.elevenlabs.io" => ElevenLabsCredentialBaseUrl.Https_ApiElevenlabsIo, + "https://api.eu.residency.elevenlabs.io" => ElevenLabsCredentialBaseUrl.Https_ApiEuResidencyElevenlabsIo, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.EvalGoogleModelModel.g.cs b/src/libs/Vapi/Generated/Vapi.Models.EvalGoogleModelModel.g.cs index 285dac18..724c1d49 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.EvalGoogleModelModel.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.EvalGoogleModelModel.g.cs @@ -68,6 +68,14 @@ public enum EvalGoogleModelModel /// ///
Gemini3FlashPreview, + /// + /// + /// + Gemini31FlashLite, + /// + /// + /// + Gemini35Flash, } /// @@ -97,6 +105,8 @@ public static string ToValueString(this EvalGoogleModelModel value) EvalGoogleModelModel.Gemini25FlashLite => "gemini-2.5-flash-lite", EvalGoogleModelModel.Gemini25Pro => "gemini-2.5-pro", EvalGoogleModelModel.Gemini3FlashPreview => "gemini-3-flash-preview", + EvalGoogleModelModel.Gemini31FlashLite => "gemini-3.1-flash-lite", + EvalGoogleModelModel.Gemini35Flash => "gemini-3.5-flash", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -122,6 +132,8 @@ public static string ToValueString(this EvalGoogleModelModel value) "gemini-2.5-flash-lite" => EvalGoogleModelModel.Gemini25FlashLite, "gemini-2.5-pro" => EvalGoogleModelModel.Gemini25Pro, "gemini-3-flash-preview" => EvalGoogleModelModel.Gemini3FlashPreview, + "gemini-3.1-flash-lite" => EvalGoogleModelModel.Gemini31FlashLite, + "gemini-3.5-flash" => EvalGoogleModelModel.Gemini35Flash, _ => null, }; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.FallbackGoogleTranscriberModel.g.cs b/src/libs/Vapi/Generated/Vapi.Models.FallbackGoogleTranscriberModel.g.cs index b4e6204f..e0e098bc 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.FallbackGoogleTranscriberModel.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.FallbackGoogleTranscriberModel.g.cs @@ -68,6 +68,14 @@ public enum FallbackGoogleTranscriberModel /// /// Gemini3FlashPreview, + /// + /// + /// + Gemini31FlashLite, + /// + /// + /// + Gemini35Flash, } /// @@ -97,6 +105,8 @@ public static string ToValueString(this FallbackGoogleTranscriberModel value) FallbackGoogleTranscriberModel.Gemini25FlashLite => "gemini-2.5-flash-lite", FallbackGoogleTranscriberModel.Gemini25Pro => "gemini-2.5-pro", FallbackGoogleTranscriberModel.Gemini3FlashPreview => "gemini-3-flash-preview", + FallbackGoogleTranscriberModel.Gemini31FlashLite => "gemini-3.1-flash-lite", + FallbackGoogleTranscriberModel.Gemini35Flash => "gemini-3.5-flash", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -122,6 +132,8 @@ public static string ToValueString(this FallbackGoogleTranscriberModel value) "gemini-2.5-flash-lite" => FallbackGoogleTranscriberModel.Gemini25FlashLite, "gemini-2.5-pro" => FallbackGoogleTranscriberModel.Gemini25Pro, "gemini-3-flash-preview" => FallbackGoogleTranscriberModel.Gemini3FlashPreview, + "gemini-3.1-flash-lite" => FallbackGoogleTranscriberModel.Gemini31FlashLite, + "gemini-3.5-flash" => FallbackGoogleTranscriberModel.Gemini35Flash, _ => null, }; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoice.g.cs b/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoice.g.cs index fcaceaea..fc10d026 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoice.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoice.g.cs @@ -25,10 +25,10 @@ public sealed partial class FallbackMicrosoftVoice public global::Vapi.FallbackMicrosoftVoiceProvider Provider { get; set; } /// - /// MAI-Voice-1 voice ID. Built-in voices listed in enum.
- /// Example: en-us-Jasper:MAI-Voice-1 + /// MAI-Voice-2 voice ID. Built-in voices listed in enum.
+ /// Example: en-US-Ethan:MAI-Voice-2 ///
- /// en-us-Jasper:MAI-Voice-1 + /// en-US-Ethan:MAI-Voice-2 [global::System.Text.Json.Serialization.JsonPropertyName("voiceId")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.FallbackMicrosoftVoiceVoiceIdJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] @@ -36,9 +36,9 @@ public sealed partial class FallbackMicrosoftVoice /// /// Speaking style applied via mstts:express-as on every request. Unknown styles are ignored by Azure and fall back to neutral.
- /// Example: chat + /// Example: happy ///
- /// chat + /// happy [global::System.Text.Json.Serialization.JsonPropertyName("style")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.FallbackMicrosoftVoiceStyleJsonConverter))] public global::Vapi.FallbackMicrosoftVoiceStyle? Style { get; set; } @@ -81,8 +81,8 @@ public sealed partial class FallbackMicrosoftVoice /// Initializes a new instance of the class. ///
/// - /// MAI-Voice-1 voice ID. Built-in voices listed in enum.
- /// Example: en-us-Jasper:MAI-Voice-1 + /// MAI-Voice-2 voice ID. Built-in voices listed in enum.
+ /// Example: en-US-Ethan:MAI-Voice-2 /// /// /// This is the flag to toggle voice caching for the assistant.
@@ -94,7 +94,7 @@ public sealed partial class FallbackMicrosoftVoice /// /// /// Speaking style applied via mstts:express-as on every request. Unknown styles are ignored by Azure and fall back to neutral.
- /// Example: chat + /// Example: happy /// /// /// Style intensity (0.01–2). Default 1 = the predefined style strength. Only applies when `style` is set.
diff --git a/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoiceStyle.g.cs b/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoiceStyle.g.cs index 65c2a9a5..24c8dff1 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoiceStyle.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoiceStyle.g.cs @@ -5,18 +5,14 @@ namespace Vapi { /// /// Speaking style applied via mstts:express-as on every request. Unknown styles are ignored by Azure and fall back to neutral.
- /// Example: chat + /// Example: happy ///
public enum FallbackMicrosoftVoiceStyle { /// /// /// - AdvertisementUpbeat, - /// - /// - /// - Affectionate, + Adventurous, /// /// /// @@ -24,35 +20,31 @@ public enum FallbackMicrosoftVoiceStyle /// /// /// - Assistant, + Caring, /// /// /// - Calm, - /// - /// - /// - Chat, + Cheerful, /// /// /// - Cheerful, + Confused, /// /// /// - Customerservice, + Curious, /// /// /// - Depressed, + Determined, /// /// /// - Disgruntled, + Disappointed, /// /// /// - DocumentaryNarration, + Disgusted, /// /// /// @@ -60,11 +52,11 @@ public enum FallbackMicrosoftVoiceStyle /// /// /// - Empathetic, + Empathy, /// /// /// - Envious, + Encouraging, /// /// /// @@ -80,7 +72,7 @@ public enum FallbackMicrosoftVoiceStyle /// /// /// - Gentle, + Happy, /// /// /// @@ -88,31 +80,27 @@ public enum FallbackMicrosoftVoiceStyle /// /// /// - Lyrical, + Jealous, /// /// /// - NarrationProfessional, + Joyful, /// /// /// - NarrationRelaxed, + Nostalgic, /// /// /// - Newscast, + Reflective, /// /// /// - NewscastCasual, + Regretful, /// /// /// - NewscastFormal, - /// - /// - /// - PoetryReading, + Relieved, /// /// /// @@ -128,19 +116,11 @@ public enum FallbackMicrosoftVoiceStyle /// /// /// - SportsCommentary, - /// - /// - /// - SportsCommentaryExcited, - /// - /// - /// - Terrified, + Softvoice, /// /// /// - Unfriendly, + Surprised, /// /// /// @@ -159,39 +139,34 @@ public static string ToValueString(this FallbackMicrosoftVoiceStyle value) { return value switch { - FallbackMicrosoftVoiceStyle.AdvertisementUpbeat => "advertisement_upbeat", - FallbackMicrosoftVoiceStyle.Affectionate => "affectionate", + FallbackMicrosoftVoiceStyle.Adventurous => "adventurous", FallbackMicrosoftVoiceStyle.Angry => "angry", - FallbackMicrosoftVoiceStyle.Assistant => "assistant", - FallbackMicrosoftVoiceStyle.Calm => "calm", - FallbackMicrosoftVoiceStyle.Chat => "chat", + FallbackMicrosoftVoiceStyle.Caring => "caring", FallbackMicrosoftVoiceStyle.Cheerful => "cheerful", - FallbackMicrosoftVoiceStyle.Customerservice => "customerservice", - FallbackMicrosoftVoiceStyle.Depressed => "depressed", - FallbackMicrosoftVoiceStyle.Disgruntled => "disgruntled", - FallbackMicrosoftVoiceStyle.DocumentaryNarration => "documentary-narration", + FallbackMicrosoftVoiceStyle.Confused => "confused", + FallbackMicrosoftVoiceStyle.Curious => "curious", + FallbackMicrosoftVoiceStyle.Determined => "determined", + FallbackMicrosoftVoiceStyle.Disappointed => "disappointed", + FallbackMicrosoftVoiceStyle.Disgusted => "disgusted", FallbackMicrosoftVoiceStyle.Embarrassed => "embarrassed", - FallbackMicrosoftVoiceStyle.Empathetic => "empathetic", - FallbackMicrosoftVoiceStyle.Envious => "envious", + FallbackMicrosoftVoiceStyle.Empathy => "empathy", + FallbackMicrosoftVoiceStyle.Encouraging => "encouraging", FallbackMicrosoftVoiceStyle.Excited => "excited", FallbackMicrosoftVoiceStyle.Fearful => "fearful", FallbackMicrosoftVoiceStyle.Friendly => "friendly", - FallbackMicrosoftVoiceStyle.Gentle => "gentle", + FallbackMicrosoftVoiceStyle.Happy => "happy", FallbackMicrosoftVoiceStyle.Hopeful => "hopeful", - FallbackMicrosoftVoiceStyle.Lyrical => "lyrical", - FallbackMicrosoftVoiceStyle.NarrationProfessional => "narration-professional", - FallbackMicrosoftVoiceStyle.NarrationRelaxed => "narration-relaxed", - FallbackMicrosoftVoiceStyle.Newscast => "newscast", - FallbackMicrosoftVoiceStyle.NewscastCasual => "newscast-casual", - FallbackMicrosoftVoiceStyle.NewscastFormal => "newscast-formal", - FallbackMicrosoftVoiceStyle.PoetryReading => "poetry-reading", + FallbackMicrosoftVoiceStyle.Jealous => "jealous", + FallbackMicrosoftVoiceStyle.Joyful => "joyful", + FallbackMicrosoftVoiceStyle.Nostalgic => "nostalgic", + FallbackMicrosoftVoiceStyle.Reflective => "reflective", + FallbackMicrosoftVoiceStyle.Regretful => "regretful", + FallbackMicrosoftVoiceStyle.Relieved => "relieved", FallbackMicrosoftVoiceStyle.Sad => "sad", FallbackMicrosoftVoiceStyle.Serious => "serious", FallbackMicrosoftVoiceStyle.Shouting => "shouting", - FallbackMicrosoftVoiceStyle.SportsCommentary => "sports_commentary", - FallbackMicrosoftVoiceStyle.SportsCommentaryExcited => "sports_commentary_excited", - FallbackMicrosoftVoiceStyle.Terrified => "terrified", - FallbackMicrosoftVoiceStyle.Unfriendly => "unfriendly", + FallbackMicrosoftVoiceStyle.Softvoice => "softvoice", + FallbackMicrosoftVoiceStyle.Surprised => "surprised", FallbackMicrosoftVoiceStyle.Whispering => "whispering", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -203,39 +178,34 @@ public static string ToValueString(this FallbackMicrosoftVoiceStyle value) { return value switch { - "advertisement_upbeat" => FallbackMicrosoftVoiceStyle.AdvertisementUpbeat, - "affectionate" => FallbackMicrosoftVoiceStyle.Affectionate, + "adventurous" => FallbackMicrosoftVoiceStyle.Adventurous, "angry" => FallbackMicrosoftVoiceStyle.Angry, - "assistant" => FallbackMicrosoftVoiceStyle.Assistant, - "calm" => FallbackMicrosoftVoiceStyle.Calm, - "chat" => FallbackMicrosoftVoiceStyle.Chat, + "caring" => FallbackMicrosoftVoiceStyle.Caring, "cheerful" => FallbackMicrosoftVoiceStyle.Cheerful, - "customerservice" => FallbackMicrosoftVoiceStyle.Customerservice, - "depressed" => FallbackMicrosoftVoiceStyle.Depressed, - "disgruntled" => FallbackMicrosoftVoiceStyle.Disgruntled, - "documentary-narration" => FallbackMicrosoftVoiceStyle.DocumentaryNarration, + "confused" => FallbackMicrosoftVoiceStyle.Confused, + "curious" => FallbackMicrosoftVoiceStyle.Curious, + "determined" => FallbackMicrosoftVoiceStyle.Determined, + "disappointed" => FallbackMicrosoftVoiceStyle.Disappointed, + "disgusted" => FallbackMicrosoftVoiceStyle.Disgusted, "embarrassed" => FallbackMicrosoftVoiceStyle.Embarrassed, - "empathetic" => FallbackMicrosoftVoiceStyle.Empathetic, - "envious" => FallbackMicrosoftVoiceStyle.Envious, + "empathy" => FallbackMicrosoftVoiceStyle.Empathy, + "encouraging" => FallbackMicrosoftVoiceStyle.Encouraging, "excited" => FallbackMicrosoftVoiceStyle.Excited, "fearful" => FallbackMicrosoftVoiceStyle.Fearful, "friendly" => FallbackMicrosoftVoiceStyle.Friendly, - "gentle" => FallbackMicrosoftVoiceStyle.Gentle, + "happy" => FallbackMicrosoftVoiceStyle.Happy, "hopeful" => FallbackMicrosoftVoiceStyle.Hopeful, - "lyrical" => FallbackMicrosoftVoiceStyle.Lyrical, - "narration-professional" => FallbackMicrosoftVoiceStyle.NarrationProfessional, - "narration-relaxed" => FallbackMicrosoftVoiceStyle.NarrationRelaxed, - "newscast" => FallbackMicrosoftVoiceStyle.Newscast, - "newscast-casual" => FallbackMicrosoftVoiceStyle.NewscastCasual, - "newscast-formal" => FallbackMicrosoftVoiceStyle.NewscastFormal, - "poetry-reading" => FallbackMicrosoftVoiceStyle.PoetryReading, + "jealous" => FallbackMicrosoftVoiceStyle.Jealous, + "joyful" => FallbackMicrosoftVoiceStyle.Joyful, + "nostalgic" => FallbackMicrosoftVoiceStyle.Nostalgic, + "reflective" => FallbackMicrosoftVoiceStyle.Reflective, + "regretful" => FallbackMicrosoftVoiceStyle.Regretful, + "relieved" => FallbackMicrosoftVoiceStyle.Relieved, "sad" => FallbackMicrosoftVoiceStyle.Sad, "serious" => FallbackMicrosoftVoiceStyle.Serious, "shouting" => FallbackMicrosoftVoiceStyle.Shouting, - "sports_commentary" => FallbackMicrosoftVoiceStyle.SportsCommentary, - "sports_commentary_excited" => FallbackMicrosoftVoiceStyle.SportsCommentaryExcited, - "terrified" => FallbackMicrosoftVoiceStyle.Terrified, - "unfriendly" => FallbackMicrosoftVoiceStyle.Unfriendly, + "softvoice" => FallbackMicrosoftVoiceStyle.Softvoice, + "surprised" => FallbackMicrosoftVoiceStyle.Surprised, "whispering" => FallbackMicrosoftVoiceStyle.Whispering, _ => null, }; diff --git a/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoiceVoiceId.g.cs b/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoiceVoiceId.g.cs index a51fa3cc..66d6f375 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoiceVoiceId.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.FallbackMicrosoftVoiceVoiceId.g.cs @@ -4,35 +4,195 @@ namespace Vapi { /// - /// MAI-Voice-1 voice ID. Built-in voices listed in enum.
- /// Example: en-us-Jasper:MAI-Voice-1 + /// MAI-Voice-2 voice ID. Built-in voices listed in enum.
+ /// Example: en-US-Ethan:MAI-Voice-2 ///
public enum FallbackMicrosoftVoiceVoiceId { /// /// /// - EnUsGrant_MAIVoice1, + DeDeKlaus_MAIVoice2, /// /// /// - EnUsIris_MAIVoice1, + DeDeMia_MAIVoice2, /// /// /// - EnUsJasper_MAIVoice1, + EnAuLisa_MAIVoice2, /// /// /// - EnUsJoy_MAIVoice1, + EnUsEthan_MAIVoice2, /// /// /// - EnUsJune_MAIVoice1, + EnUsGrant_MAIVoice2, /// /// /// - EnUsReed_MAIVoice1, + EnUsHarper_MAIVoice2, + /// + /// + /// + EnUsIris_MAIVoice2, + /// + /// + /// + EnUsJasper_MAIVoice2, + /// + /// + /// + EnUsOlivia_MAIVoice2, + /// + /// + /// + EsEsMarta_MAIVoice2, + /// + /// + /// + EsMxAlejo_MAIVoice2, + /// + /// + /// + EsMxValeria_MAIVoice2, + /// + /// + /// + FrFrMarc_MAIVoice2, + /// + /// + /// + FrFrSoleil_MAIVoice2, + /// + /// + /// + HiInArjun_MAIVoice2, + /// + /// + /// + HiInDhruv_MAIVoice2, + /// + /// + /// + HiInKavya_MAIVoice2, + /// + /// + /// + HiInPriya_MAIVoice2, + /// + /// + /// + HuHuBence_MAIVoice2, + /// + /// + /// + HuHuLevente_MAIVoice2, + /// + /// + /// + HuHuLilla_MAIVoice2, + /// + /// + /// + HuHuRéka_MAIVoice2, + /// + /// + /// + ItItLuca_MAIVoice2, + /// + /// + /// + ItItRosa_MAIVoice2, + /// + /// + /// + KoKrHana_MAIVoice2, + /// + /// + /// + KoKrJunho_MAIVoice2, + /// + /// + /// + NlNlFleur_MAIVoice2, + /// + /// + /// + NlNlSander_MAIVoice2, + /// + /// + /// + PtBrCaio_MAIVoice2, + /// + /// + /// + PtBrLuana_MAIVoice2, + /// + /// + /// + PtBrPedro_MAIVoice2, + /// + /// + /// + PtBrRafael_MAIVoice2, + /// + /// + /// + PtPtRui_MAIVoice2, + /// + /// + /// + RoRoAndrei_MAIVoice2, + /// + /// + /// + RoRoElena_MAIVoice2, + /// + /// + /// + RoRoIoana_MAIVoice2, + /// + /// + /// + RoRoRadu_MAIVoice2, + /// + /// + /// + RuRuLev_MAIVoice2, + /// + /// + /// + RuRuMasha_MAIVoice2, + /// + /// + /// + ThThKrit_MAIVoice2, + /// + /// + /// + ThThNattapong_MAIVoice2, + /// + /// + /// + TrTrAydin_MAIVoice2, + /// + /// + /// + TrTrElif_MAIVoice2, + /// + /// + /// + ZhCnBo_MAIVoice2, + /// + /// + /// + ZhCnLan_MAIVoice2, + /// + /// + /// + ZhCnMei_MAIVoice2, } /// @@ -47,12 +207,52 @@ public static string ToValueString(this FallbackMicrosoftVoiceVoiceId value) { return value switch { - FallbackMicrosoftVoiceVoiceId.EnUsGrant_MAIVoice1 => "en-us-Grant:MAI-Voice-1", - FallbackMicrosoftVoiceVoiceId.EnUsIris_MAIVoice1 => "en-us-Iris:MAI-Voice-1", - FallbackMicrosoftVoiceVoiceId.EnUsJasper_MAIVoice1 => "en-us-Jasper:MAI-Voice-1", - FallbackMicrosoftVoiceVoiceId.EnUsJoy_MAIVoice1 => "en-us-Joy:MAI-Voice-1", - FallbackMicrosoftVoiceVoiceId.EnUsJune_MAIVoice1 => "en-us-June:MAI-Voice-1", - FallbackMicrosoftVoiceVoiceId.EnUsReed_MAIVoice1 => "en-us-Reed:MAI-Voice-1", + FallbackMicrosoftVoiceVoiceId.DeDeKlaus_MAIVoice2 => "de-DE-Klaus:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.DeDeMia_MAIVoice2 => "de-DE-Mia:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EnAuLisa_MAIVoice2 => "en-AU-Lisa:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EnUsEthan_MAIVoice2 => "en-US-Ethan:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EnUsGrant_MAIVoice2 => "en-US-Grant:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EnUsHarper_MAIVoice2 => "en-US-Harper:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EnUsIris_MAIVoice2 => "en-US-Iris:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EnUsJasper_MAIVoice2 => "en-US-Jasper:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EnUsOlivia_MAIVoice2 => "en-US-Olivia:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EsEsMarta_MAIVoice2 => "es-ES-Marta:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EsMxAlejo_MAIVoice2 => "es-MX-Alejo:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.EsMxValeria_MAIVoice2 => "es-MX-Valeria:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.FrFrMarc_MAIVoice2 => "fr-FR-Marc:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.FrFrSoleil_MAIVoice2 => "fr-FR-Soleil:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.HiInArjun_MAIVoice2 => "hi-IN-Arjun:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.HiInDhruv_MAIVoice2 => "hi-IN-Dhruv:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.HiInKavya_MAIVoice2 => "hi-IN-Kavya:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.HiInPriya_MAIVoice2 => "hi-IN-Priya:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.HuHuBence_MAIVoice2 => "hu-HU-Bence:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.HuHuLevente_MAIVoice2 => "hu-HU-Levente:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.HuHuLilla_MAIVoice2 => "hu-HU-Lilla:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.HuHuRéka_MAIVoice2 => "hu-HU-Réka:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.ItItLuca_MAIVoice2 => "it-IT-Luca:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.ItItRosa_MAIVoice2 => "it-IT-Rosa:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.KoKrHana_MAIVoice2 => "ko-KR-Hana:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.KoKrJunho_MAIVoice2 => "ko-KR-Junho:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.NlNlFleur_MAIVoice2 => "nl-NL-Fleur:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.NlNlSander_MAIVoice2 => "nl-NL-Sander:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.PtBrCaio_MAIVoice2 => "pt-BR-Caio:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.PtBrLuana_MAIVoice2 => "pt-BR-Luana:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.PtBrPedro_MAIVoice2 => "pt-BR-Pedro:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.PtBrRafael_MAIVoice2 => "pt-BR-Rafael:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.PtPtRui_MAIVoice2 => "pt-PT-Rui:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.RoRoAndrei_MAIVoice2 => "ro-RO-Andrei:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.RoRoElena_MAIVoice2 => "ro-RO-Elena:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.RoRoIoana_MAIVoice2 => "ro-RO-Ioana:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.RoRoRadu_MAIVoice2 => "ro-RO-Radu:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.RuRuLev_MAIVoice2 => "ru-RU-Lev:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.RuRuMasha_MAIVoice2 => "ru-RU-Masha:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.ThThKrit_MAIVoice2 => "th-TH-Krit:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.ThThNattapong_MAIVoice2 => "th-TH-Nattapong:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.TrTrAydin_MAIVoice2 => "tr-TR-Aydin:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.TrTrElif_MAIVoice2 => "tr-TR-Elif:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.ZhCnBo_MAIVoice2 => "zh-CN-Bo:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.ZhCnLan_MAIVoice2 => "zh-CN-Lan:MAI-Voice-2", + FallbackMicrosoftVoiceVoiceId.ZhCnMei_MAIVoice2 => "zh-CN-Mei:MAI-Voice-2", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -63,12 +263,52 @@ public static string ToValueString(this FallbackMicrosoftVoiceVoiceId value) { return value switch { - "en-us-Grant:MAI-Voice-1" => FallbackMicrosoftVoiceVoiceId.EnUsGrant_MAIVoice1, - "en-us-Iris:MAI-Voice-1" => FallbackMicrosoftVoiceVoiceId.EnUsIris_MAIVoice1, - "en-us-Jasper:MAI-Voice-1" => FallbackMicrosoftVoiceVoiceId.EnUsJasper_MAIVoice1, - "en-us-Joy:MAI-Voice-1" => FallbackMicrosoftVoiceVoiceId.EnUsJoy_MAIVoice1, - "en-us-June:MAI-Voice-1" => FallbackMicrosoftVoiceVoiceId.EnUsJune_MAIVoice1, - "en-us-Reed:MAI-Voice-1" => FallbackMicrosoftVoiceVoiceId.EnUsReed_MAIVoice1, + "de-DE-Klaus:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.DeDeKlaus_MAIVoice2, + "de-DE-Mia:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.DeDeMia_MAIVoice2, + "en-AU-Lisa:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EnAuLisa_MAIVoice2, + "en-US-Ethan:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EnUsEthan_MAIVoice2, + "en-US-Grant:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EnUsGrant_MAIVoice2, + "en-US-Harper:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EnUsHarper_MAIVoice2, + "en-US-Iris:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EnUsIris_MAIVoice2, + "en-US-Jasper:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EnUsJasper_MAIVoice2, + "en-US-Olivia:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EnUsOlivia_MAIVoice2, + "es-ES-Marta:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EsEsMarta_MAIVoice2, + "es-MX-Alejo:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EsMxAlejo_MAIVoice2, + "es-MX-Valeria:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.EsMxValeria_MAIVoice2, + "fr-FR-Marc:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.FrFrMarc_MAIVoice2, + "fr-FR-Soleil:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.FrFrSoleil_MAIVoice2, + "hi-IN-Arjun:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.HiInArjun_MAIVoice2, + "hi-IN-Dhruv:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.HiInDhruv_MAIVoice2, + "hi-IN-Kavya:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.HiInKavya_MAIVoice2, + "hi-IN-Priya:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.HiInPriya_MAIVoice2, + "hu-HU-Bence:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.HuHuBence_MAIVoice2, + "hu-HU-Levente:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.HuHuLevente_MAIVoice2, + "hu-HU-Lilla:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.HuHuLilla_MAIVoice2, + "hu-HU-Réka:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.HuHuRéka_MAIVoice2, + "it-IT-Luca:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.ItItLuca_MAIVoice2, + "it-IT-Rosa:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.ItItRosa_MAIVoice2, + "ko-KR-Hana:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.KoKrHana_MAIVoice2, + "ko-KR-Junho:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.KoKrJunho_MAIVoice2, + "nl-NL-Fleur:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.NlNlFleur_MAIVoice2, + "nl-NL-Sander:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.NlNlSander_MAIVoice2, + "pt-BR-Caio:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.PtBrCaio_MAIVoice2, + "pt-BR-Luana:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.PtBrLuana_MAIVoice2, + "pt-BR-Pedro:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.PtBrPedro_MAIVoice2, + "pt-BR-Rafael:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.PtBrRafael_MAIVoice2, + "pt-PT-Rui:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.PtPtRui_MAIVoice2, + "ro-RO-Andrei:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.RoRoAndrei_MAIVoice2, + "ro-RO-Elena:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.RoRoElena_MAIVoice2, + "ro-RO-Ioana:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.RoRoIoana_MAIVoice2, + "ro-RO-Radu:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.RoRoRadu_MAIVoice2, + "ru-RU-Lev:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.RuRuLev_MAIVoice2, + "ru-RU-Masha:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.RuRuMasha_MAIVoice2, + "th-TH-Krit:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.ThThKrit_MAIVoice2, + "th-TH-Nattapong:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.ThThNattapong_MAIVoice2, + "tr-TR-Aydin:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.TrTrAydin_MAIVoice2, + "tr-TR-Elif:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.TrTrElif_MAIVoice2, + "zh-CN-Bo:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.ZhCnBo_MAIVoice2, + "zh-CN-Lan:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.ZhCnLan_MAIVoice2, + "zh-CN-Mei:MAI-Voice-2" => FallbackMicrosoftVoiceVoiceId.ZhCnMei_MAIVoice2, _ => null, }; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.GoogleModelModel.g.cs b/src/libs/Vapi/Generated/Vapi.Models.GoogleModelModel.g.cs index 40782a3b..345788ee 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.GoogleModelModel.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.GoogleModelModel.g.cs @@ -68,6 +68,14 @@ public enum GoogleModelModel /// /// Gemini3FlashPreview, + /// + /// + /// + Gemini31FlashLite, + /// + /// + /// + Gemini35Flash, } /// @@ -97,6 +105,8 @@ public static string ToValueString(this GoogleModelModel value) GoogleModelModel.Gemini25FlashLite => "gemini-2.5-flash-lite", GoogleModelModel.Gemini25Pro => "gemini-2.5-pro", GoogleModelModel.Gemini3FlashPreview => "gemini-3-flash-preview", + GoogleModelModel.Gemini31FlashLite => "gemini-3.1-flash-lite", + GoogleModelModel.Gemini35Flash => "gemini-3.5-flash", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -122,6 +132,8 @@ public static string ToValueString(this GoogleModelModel value) "gemini-2.5-flash-lite" => GoogleModelModel.Gemini25FlashLite, "gemini-2.5-pro" => GoogleModelModel.Gemini25Pro, "gemini-3-flash-preview" => GoogleModelModel.Gemini3FlashPreview, + "gemini-3.1-flash-lite" => GoogleModelModel.Gemini31FlashLite, + "gemini-3.5-flash" => GoogleModelModel.Gemini35Flash, _ => null, }; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.GoogleTranscriberModel.g.cs b/src/libs/Vapi/Generated/Vapi.Models.GoogleTranscriberModel.g.cs index 4d50ce54..45e826d5 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.GoogleTranscriberModel.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.GoogleTranscriberModel.g.cs @@ -68,6 +68,14 @@ public enum GoogleTranscriberModel /// /// Gemini3FlashPreview, + /// + /// + /// + Gemini31FlashLite, + /// + /// + /// + Gemini35Flash, } /// @@ -97,6 +105,8 @@ public static string ToValueString(this GoogleTranscriberModel value) GoogleTranscriberModel.Gemini25FlashLite => "gemini-2.5-flash-lite", GoogleTranscriberModel.Gemini25Pro => "gemini-2.5-pro", GoogleTranscriberModel.Gemini3FlashPreview => "gemini-3-flash-preview", + GoogleTranscriberModel.Gemini31FlashLite => "gemini-3.1-flash-lite", + GoogleTranscriberModel.Gemini35Flash => "gemini-3.5-flash", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -122,6 +132,8 @@ public static string ToValueString(this GoogleTranscriberModel value) "gemini-2.5-flash-lite" => GoogleTranscriberModel.Gemini25FlashLite, "gemini-2.5-pro" => GoogleTranscriberModel.Gemini25Pro, "gemini-3-flash-preview" => GoogleTranscriberModel.Gemini3FlashPreview, + "gemini-3.1-flash-lite" => GoogleTranscriberModel.Gemini31FlashLite, + "gemini-3.5-flash" => GoogleTranscriberModel.Gemini35Flash, _ => null, }; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.KnowledgeBaseModel.g.cs b/src/libs/Vapi/Generated/Vapi.Models.KnowledgeBaseModel.g.cs index 4acf2794..da4af385 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.KnowledgeBaseModel.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.KnowledgeBaseModel.g.cs @@ -68,6 +68,14 @@ public enum KnowledgeBaseModel /// /// Gemini3FlashPreview, + /// + /// + /// + Gemini31FlashLite, + /// + /// + /// + Gemini35Flash, } /// @@ -97,6 +105,8 @@ public static string ToValueString(this KnowledgeBaseModel value) KnowledgeBaseModel.Gemini25FlashLite => "gemini-2.5-flash-lite", KnowledgeBaseModel.Gemini25Pro => "gemini-2.5-pro", KnowledgeBaseModel.Gemini3FlashPreview => "gemini-3-flash-preview", + KnowledgeBaseModel.Gemini31FlashLite => "gemini-3.1-flash-lite", + KnowledgeBaseModel.Gemini35Flash => "gemini-3.5-flash", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -122,6 +132,8 @@ public static string ToValueString(this KnowledgeBaseModel value) "gemini-2.5-flash-lite" => KnowledgeBaseModel.Gemini25FlashLite, "gemini-2.5-pro" => KnowledgeBaseModel.Gemini25Pro, "gemini-3-flash-preview" => KnowledgeBaseModel.Gemini3FlashPreview, + "gemini-3.1-flash-lite" => KnowledgeBaseModel.Gemini31FlashLite, + "gemini-3.5-flash" => KnowledgeBaseModel.Gemini35Flash, _ => null, }; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.MicrosoftCredential.g.cs b/src/libs/Vapi/Generated/Vapi.Models.MicrosoftCredential.g.cs index b2a9fd7a..db31fb54 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.MicrosoftCredential.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.MicrosoftCredential.g.cs @@ -23,7 +23,7 @@ public sealed partial class MicrosoftCredential public required string ApiKey { get; set; } /// - /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.
+ /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.
/// Example: eastus ///
/// eastus @@ -90,7 +90,7 @@ public sealed partial class MicrosoftCredential /// /// /// - /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.
+ /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.
/// Example: eastus /// /// diff --git a/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoice.g.cs b/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoice.g.cs index 1a52b193..d2d337cf 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoice.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoice.g.cs @@ -25,10 +25,10 @@ public sealed partial class MicrosoftVoice public global::Vapi.MicrosoftVoiceProvider Provider { get; set; } /// - /// MAI-Voice-1 voice ID. Built-in voices listed in enum.
- /// Example: en-us-Jasper:MAI-Voice-1 + /// MAI-Voice-2 voice ID. Built-in voices listed in enum.
+ /// Example: en-US-Ethan:MAI-Voice-2 ///
- /// en-us-Jasper:MAI-Voice-1 + /// en-US-Ethan:MAI-Voice-2 [global::System.Text.Json.Serialization.JsonPropertyName("voiceId")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.MicrosoftVoiceVoiceIdJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] @@ -36,9 +36,9 @@ public sealed partial class MicrosoftVoice /// /// Speaking style applied via mstts:express-as on every request. Unknown styles are ignored by Azure and fall back to neutral.
- /// Example: chat + /// Example: happy ///
- /// chat + /// happy [global::System.Text.Json.Serialization.JsonPropertyName("style")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.MicrosoftVoiceStyleJsonConverter))] public global::Vapi.MicrosoftVoiceStyle? Style { get; set; } @@ -87,8 +87,8 @@ public sealed partial class MicrosoftVoice /// Initializes a new instance of the class. ///
/// - /// MAI-Voice-1 voice ID. Built-in voices listed in enum.
- /// Example: en-us-Jasper:MAI-Voice-1 + /// MAI-Voice-2 voice ID. Built-in voices listed in enum.
+ /// Example: en-US-Ethan:MAI-Voice-2 /// /// /// This is the flag to toggle voice caching for the assistant.
@@ -100,7 +100,7 @@ public sealed partial class MicrosoftVoice /// /// /// Speaking style applied via mstts:express-as on every request. Unknown styles are ignored by Azure and fall back to neutral.
- /// Example: chat + /// Example: happy /// /// /// Style intensity (0.01–2). Default 1 = the predefined style strength. Only applies when `style` is set.
diff --git a/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoiceStyle.g.cs b/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoiceStyle.g.cs index 460fbded..45d3886b 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoiceStyle.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoiceStyle.g.cs @@ -5,18 +5,14 @@ namespace Vapi { /// /// Speaking style applied via mstts:express-as on every request. Unknown styles are ignored by Azure and fall back to neutral.
- /// Example: chat + /// Example: happy ///
public enum MicrosoftVoiceStyle { /// /// /// - AdvertisementUpbeat, - /// - /// - /// - Affectionate, + Adventurous, /// /// /// @@ -24,35 +20,31 @@ public enum MicrosoftVoiceStyle /// /// /// - Assistant, + Caring, /// /// /// - Calm, - /// - /// - /// - Chat, + Cheerful, /// /// /// - Cheerful, + Confused, /// /// /// - Customerservice, + Curious, /// /// /// - Depressed, + Determined, /// /// /// - Disgruntled, + Disappointed, /// /// /// - DocumentaryNarration, + Disgusted, /// /// /// @@ -60,11 +52,11 @@ public enum MicrosoftVoiceStyle /// /// /// - Empathetic, + Empathy, /// /// /// - Envious, + Encouraging, /// /// /// @@ -80,7 +72,7 @@ public enum MicrosoftVoiceStyle /// /// /// - Gentle, + Happy, /// /// /// @@ -88,31 +80,27 @@ public enum MicrosoftVoiceStyle /// /// /// - Lyrical, + Jealous, /// /// /// - NarrationProfessional, + Joyful, /// /// /// - NarrationRelaxed, + Nostalgic, /// /// /// - Newscast, + Reflective, /// /// /// - NewscastCasual, + Regretful, /// /// /// - NewscastFormal, - /// - /// - /// - PoetryReading, + Relieved, /// /// /// @@ -128,19 +116,11 @@ public enum MicrosoftVoiceStyle /// /// /// - SportsCommentary, - /// - /// - /// - SportsCommentaryExcited, - /// - /// - /// - Terrified, + Softvoice, /// /// /// - Unfriendly, + Surprised, /// /// /// @@ -159,39 +139,34 @@ public static string ToValueString(this MicrosoftVoiceStyle value) { return value switch { - MicrosoftVoiceStyle.AdvertisementUpbeat => "advertisement_upbeat", - MicrosoftVoiceStyle.Affectionate => "affectionate", + MicrosoftVoiceStyle.Adventurous => "adventurous", MicrosoftVoiceStyle.Angry => "angry", - MicrosoftVoiceStyle.Assistant => "assistant", - MicrosoftVoiceStyle.Calm => "calm", - MicrosoftVoiceStyle.Chat => "chat", + MicrosoftVoiceStyle.Caring => "caring", MicrosoftVoiceStyle.Cheerful => "cheerful", - MicrosoftVoiceStyle.Customerservice => "customerservice", - MicrosoftVoiceStyle.Depressed => "depressed", - MicrosoftVoiceStyle.Disgruntled => "disgruntled", - MicrosoftVoiceStyle.DocumentaryNarration => "documentary-narration", + MicrosoftVoiceStyle.Confused => "confused", + MicrosoftVoiceStyle.Curious => "curious", + MicrosoftVoiceStyle.Determined => "determined", + MicrosoftVoiceStyle.Disappointed => "disappointed", + MicrosoftVoiceStyle.Disgusted => "disgusted", MicrosoftVoiceStyle.Embarrassed => "embarrassed", - MicrosoftVoiceStyle.Empathetic => "empathetic", - MicrosoftVoiceStyle.Envious => "envious", + MicrosoftVoiceStyle.Empathy => "empathy", + MicrosoftVoiceStyle.Encouraging => "encouraging", MicrosoftVoiceStyle.Excited => "excited", MicrosoftVoiceStyle.Fearful => "fearful", MicrosoftVoiceStyle.Friendly => "friendly", - MicrosoftVoiceStyle.Gentle => "gentle", + MicrosoftVoiceStyle.Happy => "happy", MicrosoftVoiceStyle.Hopeful => "hopeful", - MicrosoftVoiceStyle.Lyrical => "lyrical", - MicrosoftVoiceStyle.NarrationProfessional => "narration-professional", - MicrosoftVoiceStyle.NarrationRelaxed => "narration-relaxed", - MicrosoftVoiceStyle.Newscast => "newscast", - MicrosoftVoiceStyle.NewscastCasual => "newscast-casual", - MicrosoftVoiceStyle.NewscastFormal => "newscast-formal", - MicrosoftVoiceStyle.PoetryReading => "poetry-reading", + MicrosoftVoiceStyle.Jealous => "jealous", + MicrosoftVoiceStyle.Joyful => "joyful", + MicrosoftVoiceStyle.Nostalgic => "nostalgic", + MicrosoftVoiceStyle.Reflective => "reflective", + MicrosoftVoiceStyle.Regretful => "regretful", + MicrosoftVoiceStyle.Relieved => "relieved", MicrosoftVoiceStyle.Sad => "sad", MicrosoftVoiceStyle.Serious => "serious", MicrosoftVoiceStyle.Shouting => "shouting", - MicrosoftVoiceStyle.SportsCommentary => "sports_commentary", - MicrosoftVoiceStyle.SportsCommentaryExcited => "sports_commentary_excited", - MicrosoftVoiceStyle.Terrified => "terrified", - MicrosoftVoiceStyle.Unfriendly => "unfriendly", + MicrosoftVoiceStyle.Softvoice => "softvoice", + MicrosoftVoiceStyle.Surprised => "surprised", MicrosoftVoiceStyle.Whispering => "whispering", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; @@ -203,39 +178,34 @@ public static string ToValueString(this MicrosoftVoiceStyle value) { return value switch { - "advertisement_upbeat" => MicrosoftVoiceStyle.AdvertisementUpbeat, - "affectionate" => MicrosoftVoiceStyle.Affectionate, + "adventurous" => MicrosoftVoiceStyle.Adventurous, "angry" => MicrosoftVoiceStyle.Angry, - "assistant" => MicrosoftVoiceStyle.Assistant, - "calm" => MicrosoftVoiceStyle.Calm, - "chat" => MicrosoftVoiceStyle.Chat, + "caring" => MicrosoftVoiceStyle.Caring, "cheerful" => MicrosoftVoiceStyle.Cheerful, - "customerservice" => MicrosoftVoiceStyle.Customerservice, - "depressed" => MicrosoftVoiceStyle.Depressed, - "disgruntled" => MicrosoftVoiceStyle.Disgruntled, - "documentary-narration" => MicrosoftVoiceStyle.DocumentaryNarration, + "confused" => MicrosoftVoiceStyle.Confused, + "curious" => MicrosoftVoiceStyle.Curious, + "determined" => MicrosoftVoiceStyle.Determined, + "disappointed" => MicrosoftVoiceStyle.Disappointed, + "disgusted" => MicrosoftVoiceStyle.Disgusted, "embarrassed" => MicrosoftVoiceStyle.Embarrassed, - "empathetic" => MicrosoftVoiceStyle.Empathetic, - "envious" => MicrosoftVoiceStyle.Envious, + "empathy" => MicrosoftVoiceStyle.Empathy, + "encouraging" => MicrosoftVoiceStyle.Encouraging, "excited" => MicrosoftVoiceStyle.Excited, "fearful" => MicrosoftVoiceStyle.Fearful, "friendly" => MicrosoftVoiceStyle.Friendly, - "gentle" => MicrosoftVoiceStyle.Gentle, + "happy" => MicrosoftVoiceStyle.Happy, "hopeful" => MicrosoftVoiceStyle.Hopeful, - "lyrical" => MicrosoftVoiceStyle.Lyrical, - "narration-professional" => MicrosoftVoiceStyle.NarrationProfessional, - "narration-relaxed" => MicrosoftVoiceStyle.NarrationRelaxed, - "newscast" => MicrosoftVoiceStyle.Newscast, - "newscast-casual" => MicrosoftVoiceStyle.NewscastCasual, - "newscast-formal" => MicrosoftVoiceStyle.NewscastFormal, - "poetry-reading" => MicrosoftVoiceStyle.PoetryReading, + "jealous" => MicrosoftVoiceStyle.Jealous, + "joyful" => MicrosoftVoiceStyle.Joyful, + "nostalgic" => MicrosoftVoiceStyle.Nostalgic, + "reflective" => MicrosoftVoiceStyle.Reflective, + "regretful" => MicrosoftVoiceStyle.Regretful, + "relieved" => MicrosoftVoiceStyle.Relieved, "sad" => MicrosoftVoiceStyle.Sad, "serious" => MicrosoftVoiceStyle.Serious, "shouting" => MicrosoftVoiceStyle.Shouting, - "sports_commentary" => MicrosoftVoiceStyle.SportsCommentary, - "sports_commentary_excited" => MicrosoftVoiceStyle.SportsCommentaryExcited, - "terrified" => MicrosoftVoiceStyle.Terrified, - "unfriendly" => MicrosoftVoiceStyle.Unfriendly, + "softvoice" => MicrosoftVoiceStyle.Softvoice, + "surprised" => MicrosoftVoiceStyle.Surprised, "whispering" => MicrosoftVoiceStyle.Whispering, _ => null, }; diff --git a/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoiceVoiceId.g.cs b/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoiceVoiceId.g.cs index e8023f4a..1614c91e 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoiceVoiceId.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.MicrosoftVoiceVoiceId.g.cs @@ -4,35 +4,195 @@ namespace Vapi { /// - /// MAI-Voice-1 voice ID. Built-in voices listed in enum.
- /// Example: en-us-Jasper:MAI-Voice-1 + /// MAI-Voice-2 voice ID. Built-in voices listed in enum.
+ /// Example: en-US-Ethan:MAI-Voice-2 ///
public enum MicrosoftVoiceVoiceId { /// /// /// - EnUsGrant_MAIVoice1, + DeDeKlaus_MAIVoice2, /// /// /// - EnUsIris_MAIVoice1, + DeDeMia_MAIVoice2, /// /// /// - EnUsJasper_MAIVoice1, + EnAuLisa_MAIVoice2, /// /// /// - EnUsJoy_MAIVoice1, + EnUsEthan_MAIVoice2, /// /// /// - EnUsJune_MAIVoice1, + EnUsGrant_MAIVoice2, /// /// /// - EnUsReed_MAIVoice1, + EnUsHarper_MAIVoice2, + /// + /// + /// + EnUsIris_MAIVoice2, + /// + /// + /// + EnUsJasper_MAIVoice2, + /// + /// + /// + EnUsOlivia_MAIVoice2, + /// + /// + /// + EsEsMarta_MAIVoice2, + /// + /// + /// + EsMxAlejo_MAIVoice2, + /// + /// + /// + EsMxValeria_MAIVoice2, + /// + /// + /// + FrFrMarc_MAIVoice2, + /// + /// + /// + FrFrSoleil_MAIVoice2, + /// + /// + /// + HiInArjun_MAIVoice2, + /// + /// + /// + HiInDhruv_MAIVoice2, + /// + /// + /// + HiInKavya_MAIVoice2, + /// + /// + /// + HiInPriya_MAIVoice2, + /// + /// + /// + HuHuBence_MAIVoice2, + /// + /// + /// + HuHuLevente_MAIVoice2, + /// + /// + /// + HuHuLilla_MAIVoice2, + /// + /// + /// + HuHuRéka_MAIVoice2, + /// + /// + /// + ItItLuca_MAIVoice2, + /// + /// + /// + ItItRosa_MAIVoice2, + /// + /// + /// + KoKrHana_MAIVoice2, + /// + /// + /// + KoKrJunho_MAIVoice2, + /// + /// + /// + NlNlFleur_MAIVoice2, + /// + /// + /// + NlNlSander_MAIVoice2, + /// + /// + /// + PtBrCaio_MAIVoice2, + /// + /// + /// + PtBrLuana_MAIVoice2, + /// + /// + /// + PtBrPedro_MAIVoice2, + /// + /// + /// + PtBrRafael_MAIVoice2, + /// + /// + /// + PtPtRui_MAIVoice2, + /// + /// + /// + RoRoAndrei_MAIVoice2, + /// + /// + /// + RoRoElena_MAIVoice2, + /// + /// + /// + RoRoIoana_MAIVoice2, + /// + /// + /// + RoRoRadu_MAIVoice2, + /// + /// + /// + RuRuLev_MAIVoice2, + /// + /// + /// + RuRuMasha_MAIVoice2, + /// + /// + /// + ThThKrit_MAIVoice2, + /// + /// + /// + ThThNattapong_MAIVoice2, + /// + /// + /// + TrTrAydin_MAIVoice2, + /// + /// + /// + TrTrElif_MAIVoice2, + /// + /// + /// + ZhCnBo_MAIVoice2, + /// + /// + /// + ZhCnLan_MAIVoice2, + /// + /// + /// + ZhCnMei_MAIVoice2, } /// @@ -47,12 +207,52 @@ public static string ToValueString(this MicrosoftVoiceVoiceId value) { return value switch { - MicrosoftVoiceVoiceId.EnUsGrant_MAIVoice1 => "en-us-Grant:MAI-Voice-1", - MicrosoftVoiceVoiceId.EnUsIris_MAIVoice1 => "en-us-Iris:MAI-Voice-1", - MicrosoftVoiceVoiceId.EnUsJasper_MAIVoice1 => "en-us-Jasper:MAI-Voice-1", - MicrosoftVoiceVoiceId.EnUsJoy_MAIVoice1 => "en-us-Joy:MAI-Voice-1", - MicrosoftVoiceVoiceId.EnUsJune_MAIVoice1 => "en-us-June:MAI-Voice-1", - MicrosoftVoiceVoiceId.EnUsReed_MAIVoice1 => "en-us-Reed:MAI-Voice-1", + MicrosoftVoiceVoiceId.DeDeKlaus_MAIVoice2 => "de-DE-Klaus:MAI-Voice-2", + MicrosoftVoiceVoiceId.DeDeMia_MAIVoice2 => "de-DE-Mia:MAI-Voice-2", + MicrosoftVoiceVoiceId.EnAuLisa_MAIVoice2 => "en-AU-Lisa:MAI-Voice-2", + MicrosoftVoiceVoiceId.EnUsEthan_MAIVoice2 => "en-US-Ethan:MAI-Voice-2", + MicrosoftVoiceVoiceId.EnUsGrant_MAIVoice2 => "en-US-Grant:MAI-Voice-2", + MicrosoftVoiceVoiceId.EnUsHarper_MAIVoice2 => "en-US-Harper:MAI-Voice-2", + MicrosoftVoiceVoiceId.EnUsIris_MAIVoice2 => "en-US-Iris:MAI-Voice-2", + MicrosoftVoiceVoiceId.EnUsJasper_MAIVoice2 => "en-US-Jasper:MAI-Voice-2", + MicrosoftVoiceVoiceId.EnUsOlivia_MAIVoice2 => "en-US-Olivia:MAI-Voice-2", + MicrosoftVoiceVoiceId.EsEsMarta_MAIVoice2 => "es-ES-Marta:MAI-Voice-2", + MicrosoftVoiceVoiceId.EsMxAlejo_MAIVoice2 => "es-MX-Alejo:MAI-Voice-2", + MicrosoftVoiceVoiceId.EsMxValeria_MAIVoice2 => "es-MX-Valeria:MAI-Voice-2", + MicrosoftVoiceVoiceId.FrFrMarc_MAIVoice2 => "fr-FR-Marc:MAI-Voice-2", + MicrosoftVoiceVoiceId.FrFrSoleil_MAIVoice2 => "fr-FR-Soleil:MAI-Voice-2", + MicrosoftVoiceVoiceId.HiInArjun_MAIVoice2 => "hi-IN-Arjun:MAI-Voice-2", + MicrosoftVoiceVoiceId.HiInDhruv_MAIVoice2 => "hi-IN-Dhruv:MAI-Voice-2", + MicrosoftVoiceVoiceId.HiInKavya_MAIVoice2 => "hi-IN-Kavya:MAI-Voice-2", + MicrosoftVoiceVoiceId.HiInPriya_MAIVoice2 => "hi-IN-Priya:MAI-Voice-2", + MicrosoftVoiceVoiceId.HuHuBence_MAIVoice2 => "hu-HU-Bence:MAI-Voice-2", + MicrosoftVoiceVoiceId.HuHuLevente_MAIVoice2 => "hu-HU-Levente:MAI-Voice-2", + MicrosoftVoiceVoiceId.HuHuLilla_MAIVoice2 => "hu-HU-Lilla:MAI-Voice-2", + MicrosoftVoiceVoiceId.HuHuRéka_MAIVoice2 => "hu-HU-Réka:MAI-Voice-2", + MicrosoftVoiceVoiceId.ItItLuca_MAIVoice2 => "it-IT-Luca:MAI-Voice-2", + MicrosoftVoiceVoiceId.ItItRosa_MAIVoice2 => "it-IT-Rosa:MAI-Voice-2", + MicrosoftVoiceVoiceId.KoKrHana_MAIVoice2 => "ko-KR-Hana:MAI-Voice-2", + MicrosoftVoiceVoiceId.KoKrJunho_MAIVoice2 => "ko-KR-Junho:MAI-Voice-2", + MicrosoftVoiceVoiceId.NlNlFleur_MAIVoice2 => "nl-NL-Fleur:MAI-Voice-2", + MicrosoftVoiceVoiceId.NlNlSander_MAIVoice2 => "nl-NL-Sander:MAI-Voice-2", + MicrosoftVoiceVoiceId.PtBrCaio_MAIVoice2 => "pt-BR-Caio:MAI-Voice-2", + MicrosoftVoiceVoiceId.PtBrLuana_MAIVoice2 => "pt-BR-Luana:MAI-Voice-2", + MicrosoftVoiceVoiceId.PtBrPedro_MAIVoice2 => "pt-BR-Pedro:MAI-Voice-2", + MicrosoftVoiceVoiceId.PtBrRafael_MAIVoice2 => "pt-BR-Rafael:MAI-Voice-2", + MicrosoftVoiceVoiceId.PtPtRui_MAIVoice2 => "pt-PT-Rui:MAI-Voice-2", + MicrosoftVoiceVoiceId.RoRoAndrei_MAIVoice2 => "ro-RO-Andrei:MAI-Voice-2", + MicrosoftVoiceVoiceId.RoRoElena_MAIVoice2 => "ro-RO-Elena:MAI-Voice-2", + MicrosoftVoiceVoiceId.RoRoIoana_MAIVoice2 => "ro-RO-Ioana:MAI-Voice-2", + MicrosoftVoiceVoiceId.RoRoRadu_MAIVoice2 => "ro-RO-Radu:MAI-Voice-2", + MicrosoftVoiceVoiceId.RuRuLev_MAIVoice2 => "ru-RU-Lev:MAI-Voice-2", + MicrosoftVoiceVoiceId.RuRuMasha_MAIVoice2 => "ru-RU-Masha:MAI-Voice-2", + MicrosoftVoiceVoiceId.ThThKrit_MAIVoice2 => "th-TH-Krit:MAI-Voice-2", + MicrosoftVoiceVoiceId.ThThNattapong_MAIVoice2 => "th-TH-Nattapong:MAI-Voice-2", + MicrosoftVoiceVoiceId.TrTrAydin_MAIVoice2 => "tr-TR-Aydin:MAI-Voice-2", + MicrosoftVoiceVoiceId.TrTrElif_MAIVoice2 => "tr-TR-Elif:MAI-Voice-2", + MicrosoftVoiceVoiceId.ZhCnBo_MAIVoice2 => "zh-CN-Bo:MAI-Voice-2", + MicrosoftVoiceVoiceId.ZhCnLan_MAIVoice2 => "zh-CN-Lan:MAI-Voice-2", + MicrosoftVoiceVoiceId.ZhCnMei_MAIVoice2 => "zh-CN-Mei:MAI-Voice-2", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -63,12 +263,52 @@ public static string ToValueString(this MicrosoftVoiceVoiceId value) { return value switch { - "en-us-Grant:MAI-Voice-1" => MicrosoftVoiceVoiceId.EnUsGrant_MAIVoice1, - "en-us-Iris:MAI-Voice-1" => MicrosoftVoiceVoiceId.EnUsIris_MAIVoice1, - "en-us-Jasper:MAI-Voice-1" => MicrosoftVoiceVoiceId.EnUsJasper_MAIVoice1, - "en-us-Joy:MAI-Voice-1" => MicrosoftVoiceVoiceId.EnUsJoy_MAIVoice1, - "en-us-June:MAI-Voice-1" => MicrosoftVoiceVoiceId.EnUsJune_MAIVoice1, - "en-us-Reed:MAI-Voice-1" => MicrosoftVoiceVoiceId.EnUsReed_MAIVoice1, + "de-DE-Klaus:MAI-Voice-2" => MicrosoftVoiceVoiceId.DeDeKlaus_MAIVoice2, + "de-DE-Mia:MAI-Voice-2" => MicrosoftVoiceVoiceId.DeDeMia_MAIVoice2, + "en-AU-Lisa:MAI-Voice-2" => MicrosoftVoiceVoiceId.EnAuLisa_MAIVoice2, + "en-US-Ethan:MAI-Voice-2" => MicrosoftVoiceVoiceId.EnUsEthan_MAIVoice2, + "en-US-Grant:MAI-Voice-2" => MicrosoftVoiceVoiceId.EnUsGrant_MAIVoice2, + "en-US-Harper:MAI-Voice-2" => MicrosoftVoiceVoiceId.EnUsHarper_MAIVoice2, + "en-US-Iris:MAI-Voice-2" => MicrosoftVoiceVoiceId.EnUsIris_MAIVoice2, + "en-US-Jasper:MAI-Voice-2" => MicrosoftVoiceVoiceId.EnUsJasper_MAIVoice2, + "en-US-Olivia:MAI-Voice-2" => MicrosoftVoiceVoiceId.EnUsOlivia_MAIVoice2, + "es-ES-Marta:MAI-Voice-2" => MicrosoftVoiceVoiceId.EsEsMarta_MAIVoice2, + "es-MX-Alejo:MAI-Voice-2" => MicrosoftVoiceVoiceId.EsMxAlejo_MAIVoice2, + "es-MX-Valeria:MAI-Voice-2" => MicrosoftVoiceVoiceId.EsMxValeria_MAIVoice2, + "fr-FR-Marc:MAI-Voice-2" => MicrosoftVoiceVoiceId.FrFrMarc_MAIVoice2, + "fr-FR-Soleil:MAI-Voice-2" => MicrosoftVoiceVoiceId.FrFrSoleil_MAIVoice2, + "hi-IN-Arjun:MAI-Voice-2" => MicrosoftVoiceVoiceId.HiInArjun_MAIVoice2, + "hi-IN-Dhruv:MAI-Voice-2" => MicrosoftVoiceVoiceId.HiInDhruv_MAIVoice2, + "hi-IN-Kavya:MAI-Voice-2" => MicrosoftVoiceVoiceId.HiInKavya_MAIVoice2, + "hi-IN-Priya:MAI-Voice-2" => MicrosoftVoiceVoiceId.HiInPriya_MAIVoice2, + "hu-HU-Bence:MAI-Voice-2" => MicrosoftVoiceVoiceId.HuHuBence_MAIVoice2, + "hu-HU-Levente:MAI-Voice-2" => MicrosoftVoiceVoiceId.HuHuLevente_MAIVoice2, + "hu-HU-Lilla:MAI-Voice-2" => MicrosoftVoiceVoiceId.HuHuLilla_MAIVoice2, + "hu-HU-Réka:MAI-Voice-2" => MicrosoftVoiceVoiceId.HuHuRéka_MAIVoice2, + "it-IT-Luca:MAI-Voice-2" => MicrosoftVoiceVoiceId.ItItLuca_MAIVoice2, + "it-IT-Rosa:MAI-Voice-2" => MicrosoftVoiceVoiceId.ItItRosa_MAIVoice2, + "ko-KR-Hana:MAI-Voice-2" => MicrosoftVoiceVoiceId.KoKrHana_MAIVoice2, + "ko-KR-Junho:MAI-Voice-2" => MicrosoftVoiceVoiceId.KoKrJunho_MAIVoice2, + "nl-NL-Fleur:MAI-Voice-2" => MicrosoftVoiceVoiceId.NlNlFleur_MAIVoice2, + "nl-NL-Sander:MAI-Voice-2" => MicrosoftVoiceVoiceId.NlNlSander_MAIVoice2, + "pt-BR-Caio:MAI-Voice-2" => MicrosoftVoiceVoiceId.PtBrCaio_MAIVoice2, + "pt-BR-Luana:MAI-Voice-2" => MicrosoftVoiceVoiceId.PtBrLuana_MAIVoice2, + "pt-BR-Pedro:MAI-Voice-2" => MicrosoftVoiceVoiceId.PtBrPedro_MAIVoice2, + "pt-BR-Rafael:MAI-Voice-2" => MicrosoftVoiceVoiceId.PtBrRafael_MAIVoice2, + "pt-PT-Rui:MAI-Voice-2" => MicrosoftVoiceVoiceId.PtPtRui_MAIVoice2, + "ro-RO-Andrei:MAI-Voice-2" => MicrosoftVoiceVoiceId.RoRoAndrei_MAIVoice2, + "ro-RO-Elena:MAI-Voice-2" => MicrosoftVoiceVoiceId.RoRoElena_MAIVoice2, + "ro-RO-Ioana:MAI-Voice-2" => MicrosoftVoiceVoiceId.RoRoIoana_MAIVoice2, + "ro-RO-Radu:MAI-Voice-2" => MicrosoftVoiceVoiceId.RoRoRadu_MAIVoice2, + "ru-RU-Lev:MAI-Voice-2" => MicrosoftVoiceVoiceId.RuRuLev_MAIVoice2, + "ru-RU-Masha:MAI-Voice-2" => MicrosoftVoiceVoiceId.RuRuMasha_MAIVoice2, + "th-TH-Krit:MAI-Voice-2" => MicrosoftVoiceVoiceId.ThThKrit_MAIVoice2, + "th-TH-Nattapong:MAI-Voice-2" => MicrosoftVoiceVoiceId.ThThNattapong_MAIVoice2, + "tr-TR-Aydin:MAI-Voice-2" => MicrosoftVoiceVoiceId.TrTrAydin_MAIVoice2, + "tr-TR-Elif:MAI-Voice-2" => MicrosoftVoiceVoiceId.TrTrElif_MAIVoice2, + "zh-CN-Bo:MAI-Voice-2" => MicrosoftVoiceVoiceId.ZhCnBo_MAIVoice2, + "zh-CN-Lan:MAI-Voice-2" => MicrosoftVoiceVoiceId.ZhCnLan_MAIVoice2, + "zh-CN-Mei:MAI-Voice-2" => MicrosoftVoiceVoiceId.ZhCnMei_MAIVoice2, _ => null, }; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTO.g.cs index 5d059c80..1a2d9e09 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTO.g.cs @@ -14,6 +14,14 @@ public sealed partial class UpdateElevenLabsCredentialDTO [global::System.Text.Json.Serialization.JsonPropertyName("apiKey")] public string? ApiKey { get; set; } + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("baseUrl")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.UpdateElevenLabsCredentialDTOBaseUrlJsonConverter))] + public global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl? BaseUrl { get; set; } + /// /// This is the name of credential. This is just for your reference. /// @@ -32,6 +40,10 @@ public sealed partial class UpdateElevenLabsCredentialDTO /// /// This is not returned in the API. /// + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + /// /// /// This is the name of credential. This is just for your reference. /// @@ -40,9 +52,11 @@ public sealed partial class UpdateElevenLabsCredentialDTO #endif public UpdateElevenLabsCredentialDTO( string? apiKey, + global::Vapi.UpdateElevenLabsCredentialDTOBaseUrl? baseUrl, string? name) { this.ApiKey = apiKey; + this.BaseUrl = baseUrl; this.Name = name; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTOBaseUrl.g.cs b/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTOBaseUrl.g.cs new file mode 100644 index 00000000..7b73efe8 --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.UpdateElevenLabsCredentialDTOBaseUrl.g.cs @@ -0,0 +1,52 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.
+ /// Included only in responses + ///
+ public enum UpdateElevenLabsCredentialDTOBaseUrl + { + /// + /// + /// + Https_ApiElevenlabsIo, + /// + /// + /// + Https_ApiEuResidencyElevenlabsIo, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class UpdateElevenLabsCredentialDTOBaseUrlExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this UpdateElevenLabsCredentialDTOBaseUrl value) + { + return value switch + { + UpdateElevenLabsCredentialDTOBaseUrl.Https_ApiElevenlabsIo => "https://api.elevenlabs.io", + UpdateElevenLabsCredentialDTOBaseUrl.Https_ApiEuResidencyElevenlabsIo => "https://api.eu.residency.elevenlabs.io", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static UpdateElevenLabsCredentialDTOBaseUrl? ToEnum(string value) + { + return value switch + { + "https://api.elevenlabs.io" => UpdateElevenLabsCredentialDTOBaseUrl.Https_ApiElevenlabsIo, + "https://api.eu.residency.elevenlabs.io" => UpdateElevenLabsCredentialDTOBaseUrl.Https_ApiEuResidencyElevenlabsIo, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.UpdateMicrosoftCredentialDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.UpdateMicrosoftCredentialDTO.g.cs index 2c8cdccd..d66c1cf4 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.UpdateMicrosoftCredentialDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.UpdateMicrosoftCredentialDTO.g.cs @@ -15,7 +15,7 @@ public sealed partial class UpdateMicrosoftCredentialDTO public string? ApiKey { get; set; } /// - /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.
+ /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.
/// Example: eastus ///
/// eastus @@ -41,7 +41,7 @@ public sealed partial class UpdateMicrosoftCredentialDTO /// This is not returned in the API. /// /// - /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.
+ /// Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.
/// Example: eastus /// /// diff --git a/src/libs/Vapi/Generated/Vapi.Models.WorkflowGoogleModelModel.g.cs b/src/libs/Vapi/Generated/Vapi.Models.WorkflowGoogleModelModel.g.cs index 1dcf0a07..f67d5ada 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.WorkflowGoogleModelModel.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.WorkflowGoogleModelModel.g.cs @@ -68,6 +68,14 @@ public enum WorkflowGoogleModelModel /// ///
Gemini3FlashPreview, + /// + /// + /// + Gemini31FlashLite, + /// + /// + /// + Gemini35Flash, } /// @@ -97,6 +105,8 @@ public static string ToValueString(this WorkflowGoogleModelModel value) WorkflowGoogleModelModel.Gemini25FlashLite => "gemini-2.5-flash-lite", WorkflowGoogleModelModel.Gemini25Pro => "gemini-2.5-pro", WorkflowGoogleModelModel.Gemini3FlashPreview => "gemini-3-flash-preview", + WorkflowGoogleModelModel.Gemini31FlashLite => "gemini-3.1-flash-lite", + WorkflowGoogleModelModel.Gemini35Flash => "gemini-3.5-flash", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -122,6 +132,8 @@ public static string ToValueString(this WorkflowGoogleModelModel value) "gemini-2.5-flash-lite" => WorkflowGoogleModelModel.Gemini25FlashLite, "gemini-2.5-pro" => WorkflowGoogleModelModel.Gemini25Pro, "gemini-3-flash-preview" => WorkflowGoogleModelModel.Gemini3FlashPreview, + "gemini-3.1-flash-lite" => WorkflowGoogleModelModel.Gemini31FlashLite, + "gemini-3.5-flash" => WorkflowGoogleModelModel.Gemini35Flash, _ => null, }; } diff --git a/src/libs/Vapi/openapi.yaml b/src/libs/Vapi/openapi.yaml index 5995c841..4e0efcf3 100644 --- a/src/libs/Vapi/openapi.yaml +++ b/src/libs/Vapi/openapi.yaml @@ -9174,7 +9174,9 @@ "gemini-2.5-flash", "gemini-2.5-flash-lite", "gemini-2.5-pro", - "gemini-3-flash-preview" + "gemini-3-flash-preview", + "gemini-3.1-flash-lite", + "gemini-3.5-flash" ] }, "language": { @@ -11524,7 +11526,9 @@ "gemini-2.5-flash", "gemini-2.5-flash-lite", "gemini-2.5-pro", - "gemini-3-flash-preview" + "gemini-3-flash-preview", + "gemini-3.1-flash-lite", + "gemini-3.5-flash" ] }, "language": { @@ -14520,7 +14524,9 @@ "gemini-2.5-flash", "gemini-2.5-flash-lite", "gemini-2.5-pro", - "gemini-3-flash-preview" + "gemini-3-flash-preview", + "gemini-3.1-flash-lite", + "gemini-3.5-flash" ] }, "description": { @@ -16579,7 +16585,9 @@ "gemini-2.5-flash", "gemini-2.5-flash-lite", "gemini-2.5-pro", - "gemini-3-flash-preview" + "gemini-3-flash-preview", + "gemini-3.1-flash-lite", + "gemini-3.5-flash" ] }, "provider": { @@ -18388,7 +18396,9 @@ "gemini-2.5-flash", "gemini-2.5-flash-lite", "gemini-2.5-pro", - "gemini-3-flash-preview" + "gemini-3-flash-preview", + "gemini-3.1-flash-lite", + "gemini-3.5-flash" ] }, "temperature": { @@ -24737,57 +24747,92 @@ }, "voiceId": { "type": "string", - "description": "MAI-Voice-1 voice ID. Built-in voices listed in enum.", - "enum": [ - "en-us-Grant:MAI-Voice-1", - "en-us-Iris:MAI-Voice-1", - "en-us-Jasper:MAI-Voice-1", - "en-us-Joy:MAI-Voice-1", - "en-us-June:MAI-Voice-1", - "en-us-Reed:MAI-Voice-1" + "description": "MAI-Voice-2 voice ID. Built-in voices listed in enum.", + "enum": [ + "de-DE-Klaus:MAI-Voice-2", + "de-DE-Mia:MAI-Voice-2", + "en-AU-Lisa:MAI-Voice-2", + "en-US-Ethan:MAI-Voice-2", + "en-US-Grant:MAI-Voice-2", + "en-US-Harper:MAI-Voice-2", + "en-US-Iris:MAI-Voice-2", + "en-US-Jasper:MAI-Voice-2", + "en-US-Olivia:MAI-Voice-2", + "es-ES-Marta:MAI-Voice-2", + "es-MX-Alejo:MAI-Voice-2", + "es-MX-Valeria:MAI-Voice-2", + "fr-FR-Marc:MAI-Voice-2", + "fr-FR-Soleil:MAI-Voice-2", + "hi-IN-Arjun:MAI-Voice-2", + "hi-IN-Dhruv:MAI-Voice-2", + "hi-IN-Kavya:MAI-Voice-2", + "hi-IN-Priya:MAI-Voice-2", + "hu-HU-Bence:MAI-Voice-2", + "hu-HU-Levente:MAI-Voice-2", + "hu-HU-Lilla:MAI-Voice-2", + "hu-HU-Réka:MAI-Voice-2", + "it-IT-Luca:MAI-Voice-2", + "it-IT-Rosa:MAI-Voice-2", + "ko-KR-Hana:MAI-Voice-2", + "ko-KR-Junho:MAI-Voice-2", + "nl-NL-Fleur:MAI-Voice-2", + "nl-NL-Sander:MAI-Voice-2", + "pt-BR-Caio:MAI-Voice-2", + "pt-BR-Luana:MAI-Voice-2", + "pt-BR-Pedro:MAI-Voice-2", + "pt-BR-Rafael:MAI-Voice-2", + "pt-PT-Rui:MAI-Voice-2", + "ro-RO-Andrei:MAI-Voice-2", + "ro-RO-Elena:MAI-Voice-2", + "ro-RO-Ioana:MAI-Voice-2", + "ro-RO-Radu:MAI-Voice-2", + "ru-RU-Lev:MAI-Voice-2", + "ru-RU-Masha:MAI-Voice-2", + "th-TH-Krit:MAI-Voice-2", + "th-TH-Nattapong:MAI-Voice-2", + "tr-TR-Aydin:MAI-Voice-2", + "tr-TR-Elif:MAI-Voice-2", + "zh-CN-Bo:MAI-Voice-2", + "zh-CN-Lan:MAI-Voice-2", + "zh-CN-Mei:MAI-Voice-2" ], - "example": "en-us-Jasper:MAI-Voice-1" + "example": "en-US-Ethan:MAI-Voice-2" }, "style": { "type": "string", "description": "Speaking style applied via mstts:express-as on every request. Unknown styles are ignored by Azure and fall back to neutral.", "enum": [ - "advertisement_upbeat", - "affectionate", + "adventurous", "angry", - "assistant", - "calm", - "chat", + "caring", "cheerful", - "customerservice", - "depressed", - "disgruntled", - "documentary-narration", + "confused", + "curious", + "determined", + "disappointed", + "disgusted", "embarrassed", - "empathetic", - "envious", + "empathy", + "encouraging", "excited", "fearful", "friendly", - "gentle", + "happy", "hopeful", - "lyrical", - "narration-professional", - "narration-relaxed", - "newscast", - "newscast-casual", - "newscast-formal", - "poetry-reading", + "jealous", + "joyful", + "nostalgic", + "reflective", + "regretful", + "relieved", "sad", "serious", "shouting", - "sports_commentary", - "sports_commentary_excited", - "terrified", - "unfriendly", + "softvoice", + "surprised", "whispering" ], - "example": "chat" + "example": "happy" }, "styleDegree": { "type": "number", @@ -26688,57 +26733,92 @@ }, "voiceId": { "type": "string", - "description": "MAI-Voice-1 voice ID. Built-in voices listed in enum.", - "enum": [ - "en-us-Grant:MAI-Voice-1", - "en-us-Iris:MAI-Voice-1", - "en-us-Jasper:MAI-Voice-1", - "en-us-Joy:MAI-Voice-1", - "en-us-June:MAI-Voice-1", - "en-us-Reed:MAI-Voice-1" + "description": "MAI-Voice-2 voice ID. Built-in voices listed in enum.", + "enum": [ + "de-DE-Klaus:MAI-Voice-2", + "de-DE-Mia:MAI-Voice-2", + "en-AU-Lisa:MAI-Voice-2", + "en-US-Ethan:MAI-Voice-2", + "en-US-Grant:MAI-Voice-2", + "en-US-Harper:MAI-Voice-2", + "en-US-Iris:MAI-Voice-2", + "en-US-Jasper:MAI-Voice-2", + "en-US-Olivia:MAI-Voice-2", + "es-ES-Marta:MAI-Voice-2", + "es-MX-Alejo:MAI-Voice-2", + "es-MX-Valeria:MAI-Voice-2", + "fr-FR-Marc:MAI-Voice-2", + "fr-FR-Soleil:MAI-Voice-2", + "hi-IN-Arjun:MAI-Voice-2", + "hi-IN-Dhruv:MAI-Voice-2", + "hi-IN-Kavya:MAI-Voice-2", + "hi-IN-Priya:MAI-Voice-2", + "hu-HU-Bence:MAI-Voice-2", + "hu-HU-Levente:MAI-Voice-2", + "hu-HU-Lilla:MAI-Voice-2", + "hu-HU-Réka:MAI-Voice-2", + "it-IT-Luca:MAI-Voice-2", + "it-IT-Rosa:MAI-Voice-2", + "ko-KR-Hana:MAI-Voice-2", + "ko-KR-Junho:MAI-Voice-2", + "nl-NL-Fleur:MAI-Voice-2", + "nl-NL-Sander:MAI-Voice-2", + "pt-BR-Caio:MAI-Voice-2", + "pt-BR-Luana:MAI-Voice-2", + "pt-BR-Pedro:MAI-Voice-2", + "pt-BR-Rafael:MAI-Voice-2", + "pt-PT-Rui:MAI-Voice-2", + "ro-RO-Andrei:MAI-Voice-2", + "ro-RO-Elena:MAI-Voice-2", + "ro-RO-Ioana:MAI-Voice-2", + "ro-RO-Radu:MAI-Voice-2", + "ru-RU-Lev:MAI-Voice-2", + "ru-RU-Masha:MAI-Voice-2", + "th-TH-Krit:MAI-Voice-2", + "th-TH-Nattapong:MAI-Voice-2", + "tr-TR-Aydin:MAI-Voice-2", + "tr-TR-Elif:MAI-Voice-2", + "zh-CN-Bo:MAI-Voice-2", + "zh-CN-Lan:MAI-Voice-2", + "zh-CN-Mei:MAI-Voice-2" ], - "example": "en-us-Jasper:MAI-Voice-1" + "example": "en-US-Ethan:MAI-Voice-2" }, "style": { "type": "string", "description": "Speaking style applied via mstts:express-as on every request. Unknown styles are ignored by Azure and fall back to neutral.", "enum": [ - "advertisement_upbeat", - "affectionate", + "adventurous", "angry", - "assistant", - "calm", - "chat", + "caring", "cheerful", - "customerservice", - "depressed", - "disgruntled", - "documentary-narration", + "confused", + "curious", + "determined", + "disappointed", + "disgusted", "embarrassed", - "empathetic", - "envious", + "empathy", + "encouraging", "excited", "fearful", "friendly", - "gentle", + "happy", "hopeful", - "lyrical", - "narration-professional", - "narration-relaxed", - "newscast", - "newscast-casual", - "newscast-formal", - "poetry-reading", + "jealous", + "joyful", + "nostalgic", + "reflective", + "regretful", + "relieved", "sad", "serious", "shouting", - "sports_commentary", - "sports_commentary_excited", - "terrified", - "unfriendly", + "softvoice", + "surprised", "whispering" ], - "example": "chat" + "example": "happy" }, "styleDegree": { "type": "number", @@ -27574,6 +27654,15 @@ "maxLength": 10000, "description": "This is not returned in the API." }, + "baseUrl": { + "type": "string", + "enum": [ + "https://api.elevenlabs.io", + "https://api.eu.residency.elevenlabs.io" + ], + "description": "This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.", + "readOnly": true + }, "name": { "type": "string", "description": "This is the name of credential. This is just for your reference.", @@ -51768,7 +51857,9 @@ "gemini-2.5-flash", "gemini-2.5-flash-lite", "gemini-2.5-pro", - "gemini-3-flash-preview" + "gemini-3-flash-preview", + "gemini-3.1-flash-lite", + "gemini-3.5-flash" ] }, "temperature": { @@ -54505,6 +54596,15 @@ "maxLength": 10000, "description": "This is not returned in the API." }, + "baseUrl": { + "type": "string", + "enum": [ + "https://api.elevenlabs.io", + "https://api.eu.residency.elevenlabs.io" + ], + "description": "This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.", + "readOnly": true + }, "id": { "type": "string", "description": "This is the unique identifier for the credential." @@ -55067,7 +55167,7 @@ }, "region": { "type": "string", - "description": "Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.", + "description": "Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.", "maxLength": 64, "example": "eastus" }, @@ -56800,7 +56900,7 @@ }, "region": { "type": "string", - "description": "Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.", + "description": "Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.", "maxLength": 64, "example": "eastus" }, @@ -57580,6 +57680,15 @@ "maxLength": 10000, "description": "This is not returned in the API." }, + "baseUrl": { + "type": "string", + "enum": [ + "https://api.elevenlabs.io", + "https://api.eu.residency.elevenlabs.io" + ], + "description": "This is the ElevenLabs API environment the key belongs to — the global endpoint or the EU data residency endpoint. It is detected automatically while validating the key and is not honored from the request, so a rotated key is always re-homed to the environment that actually accepts it.", + "readOnly": true + }, "name": { "type": "string", "description": "This is the name of credential. This is just for your reference.", @@ -57784,7 +57893,7 @@ }, "region": { "type": "string", - "description": "Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-1 is preview and region-limited.", + "description": "Azure region for the Speech resource. Defaults to `eastus` when omitted. MAI-Voice-2 is preview and region-limited.", "maxLength": 64, "example": "eastus" },