From 976c41495d776dbeca587abe65d41f043579485d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 30 May 2026 08:35:07 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- ...nConverters.FallbackVapiVoiceLanguage.g.cs | 53 + ...ers.FallbackVapiVoiceLanguageNullable.g.cs | 60 + ...Vapi.JsonConverters.VapiVoiceLanguage.g.cs | 53 + ...nConverters.VapiVoiceLanguageNullable.g.cs | 60 + .../Generated/Vapi.JsonSerializerContext.g.cs | 106 +- .../Vapi.JsonSerializerContextTypes.g.cs | 3038 +++++++++-------- .../Vapi.Models.CallEndedReason.g.cs | 6 + .../Vapi.Models.FallbackVapiVoice.g.cs | 23 + ...Vapi.Models.FallbackVapiVoiceLanguage.g.cs | 381 +++ .../Vapi.Models.FallbackXaiVoice.g.cs | 13 + .../Generated/Vapi.Models.InviteUserDTO.g.cs | 6 +- ...rverMessageEndOfCallReportEndedReason.g.cs | 6 + ....ServerMessageStatusUpdateEndedReason.g.cs | 6 + .../Vapi.Models.UpdateUserRoleDTO.g.cs | 6 +- .../Vapi/Generated/Vapi.Models.VapiVoice.g.cs | 23 + .../Vapi.Models.VapiVoiceLanguage.g.cs | 381 +++ .../Vapi/Generated/Vapi.Models.XaiVoice.g.cs | 13 + src/libs/Vapi/openapi.yaml | 201 +- 18 files changed, 2894 insertions(+), 1541 deletions(-) create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.FallbackVapiVoiceLanguage.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.FallbackVapiVoiceLanguageNullable.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.VapiVoiceLanguage.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.JsonConverters.VapiVoiceLanguageNullable.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.FallbackVapiVoiceLanguage.g.cs create mode 100644 src/libs/Vapi/Generated/Vapi.Models.VapiVoiceLanguage.g.cs diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.FallbackVapiVoiceLanguage.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.FallbackVapiVoiceLanguage.g.cs new file mode 100644 index 00000000..4661198f --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.FallbackVapiVoiceLanguage.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class FallbackVapiVoiceLanguageJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.FallbackVapiVoiceLanguage 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.FallbackVapiVoiceLanguageExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.FallbackVapiVoiceLanguage)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.FallbackVapiVoiceLanguage); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.FallbackVapiVoiceLanguage value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Vapi.FallbackVapiVoiceLanguageExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.FallbackVapiVoiceLanguageNullable.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.FallbackVapiVoiceLanguageNullable.g.cs new file mode 100644 index 00000000..45b8785f --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.FallbackVapiVoiceLanguageNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class FallbackVapiVoiceLanguageNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.FallbackVapiVoiceLanguage? 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.FallbackVapiVoiceLanguageExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.FallbackVapiVoiceLanguage)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.FallbackVapiVoiceLanguage?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.FallbackVapiVoiceLanguage? 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.FallbackVapiVoiceLanguageExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.VapiVoiceLanguage.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.VapiVoiceLanguage.g.cs new file mode 100644 index 00000000..88d0e4da --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.VapiVoiceLanguage.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class VapiVoiceLanguageJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.VapiVoiceLanguage 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.VapiVoiceLanguageExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.VapiVoiceLanguage)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.VapiVoiceLanguage); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.VapiVoiceLanguage value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::Vapi.VapiVoiceLanguageExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonConverters.VapiVoiceLanguageNullable.g.cs b/src/libs/Vapi/Generated/Vapi.JsonConverters.VapiVoiceLanguageNullable.g.cs new file mode 100644 index 00000000..aca92f9b --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.JsonConverters.VapiVoiceLanguageNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace Vapi.JsonConverters +{ + /// + public sealed class VapiVoiceLanguageNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::Vapi.VapiVoiceLanguage? 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.VapiVoiceLanguageExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::Vapi.VapiVoiceLanguage)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::Vapi.VapiVoiceLanguage?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::Vapi.VapiVoiceLanguage? 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.VapiVoiceLanguageExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs b/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs index 393a22ea..83e28bb3 100644 --- a/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs +++ b/src/libs/Vapi/Generated/Vapi.JsonSerializerContext.g.cs @@ -1145,6 +1145,10 @@ namespace Vapi typeof(global::Vapi.JsonConverters.VapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.InworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.InworldVoiceProviderNullableJsonConverter), @@ -1381,6 +1385,10 @@ namespace Vapi typeof(global::Vapi.JsonConverters.FallbackVapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderNullableJsonConverter), @@ -4719,6 +4727,10 @@ namespace Vapi typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -6554,6 +6566,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Vapi.JsonConverters.VapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.InworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.InworldVoiceProviderNullableJsonConverter), @@ -6790,6 +6806,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Vapi.JsonConverters.FallbackVapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderNullableJsonConverter), @@ -10128,6 +10148,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -10642,6 +10666,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.VapiPronunciationDictionaryLocator))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.VapiVoiceProvider), TypeInfoPropertyName = "VapiVoiceProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.VapiVoiceVoiceId), TypeInfoPropertyName = "VapiVoiceVoiceId2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.VapiVoiceLanguage), TypeInfoPropertyName = "VapiVoiceLanguage2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InworldVoiceProvider), TypeInfoPropertyName = "InworldVoiceProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InworldVoiceVoiceId), TypeInfoPropertyName = "InworldVoiceVoiceId2")] @@ -10711,6 +10736,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FallbackTavusVoiceVoiceId), TypeInfoPropertyName = "FallbackTavusVoiceVoiceId2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FallbackVapiVoiceProvider), TypeInfoPropertyName = "FallbackVapiVoiceProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FallbackVapiVoiceVoiceId), TypeInfoPropertyName = "FallbackVapiVoiceVoiceId2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FallbackVapiVoiceLanguage), TypeInfoPropertyName = "FallbackVapiVoiceLanguage2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FallbackInworldVoiceProvider), TypeInfoPropertyName = "FallbackInworldVoiceProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FallbackInworldVoiceVoiceId), TypeInfoPropertyName = "FallbackInworldVoiceVoiceId2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.FallbackInworldVoiceModel), TypeInfoPropertyName = "FallbackInworldVoiceModel2")] @@ -10818,8 +10844,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CredentialsItem2), TypeInfoPropertyName = "CredentialsItem22")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AssistantOverridesCredentialDiscriminator))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AssistantOverridesCredentialDiscriminatorProvider), TypeInfoPropertyName = "AssistantOverridesCredentialDiscriminatorProvider2")] internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -11963,6 +11987,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Vapi.JsonConverters.VapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.InworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.InworldVoiceProviderNullableJsonConverter), @@ -12199,6 +12227,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Vapi.JsonConverters.FallbackVapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderNullableJsonConverter), @@ -15537,6 +15569,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -15806,6 +15842,8 @@ 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.AssistantOverridesCredentialDiscriminator))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AssistantOverridesCredentialDiscriminatorProvider), TypeInfoPropertyName = "AssistantOverridesCredentialDiscriminatorProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateAssistantDTOFirstMessageMode), TypeInfoPropertyName = "CreateAssistantDTOFirstMessageMode2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateAssistantDTOVoicemailDetection), TypeInfoPropertyName = "CreateAssistantDTOVoicemailDetection2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] @@ -16227,8 +16265,6 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TestSuitePhoneNumber))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TestSuitePhoneNumberProvider), TypeInfoPropertyName = "TestSuitePhoneNumberProvider2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TargetPlan))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TestSuite))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TestSuitesPaginatedResponse))] internal sealed partial class SourceGenerationContextChunk2 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -17372,6 +17408,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Vapi.JsonConverters.VapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.InworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.InworldVoiceProviderNullableJsonConverter), @@ -17608,6 +17648,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Vapi.JsonConverters.FallbackVapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderNullableJsonConverter), @@ -20946,6 +20990,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -21215,6 +21263,8 @@ 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.TestSuite))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TestSuitesPaginatedResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CreateTestSuiteDto))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateTestSuiteDto))] @@ -21515,8 +21565,10 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateOrgDTOChannel), TypeInfoPropertyName = "UpdateOrgDTOChannel2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.User))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InviteUserDTO))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfInviteUserDTORoleString2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InviteUserDTORole), TypeInfoPropertyName = "InviteUserDTORole2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateUserRoleDTO))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.OneOf), TypeInfoPropertyName = "OneOfUpdateUserRoleDTORoleString2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.UpdateUserRoleDTORole), TypeInfoPropertyName = "UpdateUserRoleDTORole2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.JwtResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.TokenRestrictions))] @@ -21634,10 +21686,6 @@ internal sealed partial class SourceGenerationContextChunk2 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PublicKeyEncryptionPlanType), TypeInfoPropertyName = "PublicKeyEncryptionPlanType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PublicKeyEncryptionPlanAlgorithm), TypeInfoPropertyName = "PublicKeyEncryptionPlanAlgorithm2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat), TypeInfoPropertyName = "PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CustomCredential))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CustomCredentialProvider), TypeInfoPropertyName = "CustomCredentialProvider2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AuthenticationPlan5), TypeInfoPropertyName = "AuthenticationPlan52")] internal sealed partial class SourceGenerationContextChunk3 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -22781,6 +22829,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::Vapi.JsonConverters.VapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.InworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.InworldVoiceProviderNullableJsonConverter), @@ -23017,6 +23069,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::Vapi.JsonConverters.FallbackVapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderNullableJsonConverter), @@ -26355,6 +26411,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -26624,6 +26684,10 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat), TypeInfoPropertyName = "PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CustomCredential))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CustomCredentialProvider), TypeInfoPropertyName = "CustomCredentialProvider2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.AuthenticationPlan5), TypeInfoPropertyName = "AuthenticationPlan52")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CustomCredentialAuthenticationPlanDiscriminator))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType), TypeInfoPropertyName = "CustomCredentialAuthenticationPlanDiscriminatorType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.CustomCredentialEncryptionPlanDiscriminator))] @@ -27043,10 +27107,6 @@ internal sealed partial class SourceGenerationContextChunk3 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy), TypeInfoPropertyName = "PhoneNumberControllerFindAllPaginatedSortBy2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.StructuredOutputControllerFindAllSortOrder), TypeInfoPropertyName = "StructuredOutputControllerFindAllSortOrder2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.StructuredOutputControllerFindAllSortBy), TypeInfoPropertyName = "StructuredOutputControllerFindAllSortBy2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InsightControllerFindAllSortOrder), TypeInfoPropertyName = "InsightControllerFindAllSortOrder2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InsightControllerFindAllSortBy), TypeInfoPropertyName = "InsightControllerFindAllSortBy2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EvalControllerGetPaginatedSortOrder), TypeInfoPropertyName = "EvalControllerGetPaginatedSortOrder2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EvalControllerGetPaginatedSortBy), TypeInfoPropertyName = "EvalControllerGetPaginatedSortBy2")] internal sealed partial class SourceGenerationContextChunk4 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -28190,6 +28250,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::Vapi.JsonConverters.VapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.VapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.InworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.InworldVoiceProviderNullableJsonConverter), @@ -28426,6 +28490,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::Vapi.JsonConverters.FallbackVapiVoiceVoiceIdNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageJsonConverter), + + typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageNullableJsonConverter), + typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderJsonConverter), typeof(global::Vapi.JsonConverters.FallbackInworldVoiceProviderNullableJsonConverter), @@ -31764,6 +31832,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), + typeof(global::Vapi.JsonConverters.OneOfJsonConverter), typeof(global::Vapi.JsonConverters.OneOfJsonConverter), @@ -32033,6 +32105,10 @@ internal sealed partial class SourceGenerationContextChunk4 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "FilterStructuredOutputColumnOnCallTable_514172078c50ed6e")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "ChatEvalAssistantMessageEvaluation_e520bbe5e5889e56")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List>), TypeInfoPropertyName = "GoogleCalendarCreateEventToolWithToolCall_4ee6ec9da9c1f25a")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InsightControllerFindAllSortOrder), TypeInfoPropertyName = "InsightControllerFindAllSortOrder2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.InsightControllerFindAllSortBy), TypeInfoPropertyName = "InsightControllerFindAllSortBy2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EvalControllerGetPaginatedSortOrder), TypeInfoPropertyName = "EvalControllerGetPaginatedSortOrder2")] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EvalControllerGetPaginatedSortBy), TypeInfoPropertyName = "EvalControllerGetPaginatedSortBy2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EvalControllerGetRunsPaginatedSortOrder), TypeInfoPropertyName = "EvalControllerGetRunsPaginatedSortOrder2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.EvalControllerGetRunsPaginatedSortBy), TypeInfoPropertyName = "EvalControllerGetRunsPaginatedSortBy2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Vapi.ScorecardControllerGetPaginatedSortOrder), TypeInfoPropertyName = "ScorecardControllerGetPaginatedSortOrder2")] @@ -32853,6 +32929,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Vapi.JsonConverters.VapiVoiceProviderNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.VapiVoiceVoiceIdJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.VapiVoiceVoiceIdNullableJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.VapiVoiceLanguageJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.VapiVoiceLanguageNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.InworldVoiceProviderJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.InworldVoiceProviderNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.InworldVoiceVoiceIdJsonConverter()); @@ -32971,6 +33049,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Vapi.JsonConverters.FallbackVapiVoiceProviderNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.FallbackVapiVoiceVoiceIdJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.FallbackVapiVoiceVoiceIdNullableJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.FallbackVapiVoiceLanguageJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.FallbackVapiVoiceLanguageNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.FallbackInworldVoiceProviderJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.FallbackInworldVoiceProviderNullableJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.FallbackInworldVoiceVoiceIdJsonConverter()); @@ -34640,6 +34720,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); + options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::Vapi.JsonConverters.OneOfJsonConverter()); diff --git a/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs b/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs index 0e17c9ff..c3b6f45e 100644 --- a/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs +++ b/src/libs/Vapi/Generated/Vapi.JsonSerializerContextTypes.g.cs @@ -2692,6047 +2692,6063 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.IList? Type666 { get; set; } + public global::Vapi.VapiVoiceLanguage? Type666 { get; set; } /// /// /// - public global::Vapi.InworldVoiceProvider? Type667 { get; set; } + public global::System.Collections.Generic.IList? Type667 { get; set; } /// /// /// - public global::Vapi.InworldVoiceVoiceId? Type668 { get; set; } + public global::Vapi.InworldVoiceProvider? Type668 { get; set; } /// /// /// - public global::Vapi.InworldVoiceModel? Type669 { get; set; } + public global::Vapi.InworldVoiceVoiceId? Type669 { get; set; } /// /// /// - public global::Vapi.InworldVoiceLanguageCode? Type670 { get; set; } + public global::Vapi.InworldVoiceModel? Type670 { get; set; } /// /// /// - public global::Vapi.MinimaxVoiceProvider? Type671 { get; set; } + public global::Vapi.InworldVoiceLanguageCode? Type671 { get; set; } /// /// /// - public global::Vapi.MinimaxVoiceModel? Type672 { get; set; } + public global::Vapi.MinimaxVoiceProvider? Type672 { get; set; } /// /// /// - public global::Vapi.MinimaxVoiceSubtitleType? Type673 { get; set; } + public global::Vapi.MinimaxVoiceModel? Type673 { get; set; } /// /// /// - public global::Vapi.MinimaxVoiceRegion? Type674 { get; set; } + public global::Vapi.MinimaxVoiceSubtitleType? Type674 { get; set; } /// /// /// - public global::Vapi.MinimaxVoiceLanguageBoost? Type675 { get; set; } + public global::Vapi.MinimaxVoiceRegion? Type675 { get; set; } /// /// /// - public global::Vapi.FallbackMinimaxVoice? Type676 { get; set; } + public global::Vapi.MinimaxVoiceLanguageBoost? Type676 { get; set; } /// /// /// - public global::Vapi.FallbackMinimaxVoiceProvider? Type677 { get; set; } + public global::Vapi.FallbackMinimaxVoice? Type677 { get; set; } /// /// /// - public global::Vapi.FallbackMinimaxVoiceModel? Type678 { get; set; } + public global::Vapi.FallbackMinimaxVoiceProvider? Type678 { get; set; } /// /// /// - public global::Vapi.FallbackMinimaxVoiceSubtitleType? Type679 { get; set; } + public global::Vapi.FallbackMinimaxVoiceModel? Type679 { get; set; } /// /// /// - public global::Vapi.FallbackMinimaxVoiceRegion? Type680 { get; set; } + public global::Vapi.FallbackMinimaxVoiceSubtitleType? Type680 { get; set; } /// /// /// - public global::Vapi.FallbackMinimaxVoiceLanguageBoost? Type681 { get; set; } + public global::Vapi.FallbackMinimaxVoiceRegion? Type681 { get; set; } /// /// /// - public global::Vapi.FallbackWellSaidVoiceProvider? Type682 { get; set; } + public global::Vapi.FallbackMinimaxVoiceLanguageBoost? Type682 { get; set; } /// /// /// - public global::Vapi.FallbackWellSaidVoiceModel? Type683 { get; set; } + public global::Vapi.FallbackWellSaidVoiceProvider? Type683 { get; set; } /// /// /// - public global::Vapi.XaiVoiceProvider? Type684 { get; set; } + public global::Vapi.FallbackWellSaidVoiceModel? Type684 { get; set; } /// /// /// - public global::Vapi.XaiVoiceVoiceId? Type685 { get; set; } + public global::Vapi.XaiVoiceProvider? Type685 { get; set; } /// /// /// - public global::Vapi.XaiVoiceLanguage? Type686 { get; set; } + public global::Vapi.XaiVoiceVoiceId? Type686 { get; set; } /// /// /// - public global::Vapi.FallbackAzureVoiceProvider? Type687 { get; set; } + public global::Vapi.XaiVoiceLanguage? Type687 { get; set; } /// /// /// - public global::Vapi.OneOf? Type688 { get; set; } + public global::Vapi.FallbackAzureVoiceProvider? Type688 { get; set; } /// /// /// - public global::Vapi.FallbackAzureVoiceVoiceId? Type689 { get; set; } + public global::Vapi.OneOf? Type689 { get; set; } /// /// /// - public global::Vapi.FallbackCartesiaVoiceProvider? Type690 { get; set; } + public global::Vapi.FallbackAzureVoiceVoiceId? Type690 { get; set; } /// /// /// - public global::Vapi.FallbackCartesiaVoiceModel? Type691 { get; set; } + public global::Vapi.FallbackCartesiaVoiceProvider? Type691 { get; set; } /// /// /// - public global::Vapi.FallbackCartesiaVoiceLanguage? Type692 { get; set; } + public global::Vapi.FallbackCartesiaVoiceModel? Type692 { get; set; } /// /// /// - public global::Vapi.FallbackCustomVoiceProvider? Type693 { get; set; } + public global::Vapi.FallbackCartesiaVoiceLanguage? Type693 { get; set; } /// /// /// - public global::Vapi.FallbackDeepgramVoiceProvider? Type694 { get; set; } + public global::Vapi.FallbackCustomVoiceProvider? Type694 { get; set; } /// /// /// - public global::Vapi.FallbackDeepgramVoiceVoiceId? Type695 { get; set; } + public global::Vapi.FallbackDeepgramVoiceProvider? Type695 { get; set; } /// /// /// - public global::Vapi.FallbackDeepgramVoiceModel? Type696 { get; set; } + public global::Vapi.FallbackDeepgramVoiceVoiceId? Type696 { get; set; } /// /// /// - public global::Vapi.FallbackElevenLabsVoiceProvider? Type697 { get; set; } + public global::Vapi.FallbackDeepgramVoiceModel? Type697 { get; set; } /// /// /// - public global::Vapi.OneOf? Type698 { get; set; } + public global::Vapi.FallbackElevenLabsVoiceProvider? Type698 { get; set; } /// /// /// - public global::Vapi.FallbackElevenLabsVoiceVoiceId? Type699 { get; set; } + public global::Vapi.OneOf? Type699 { get; set; } /// /// /// - public global::Vapi.FallbackElevenLabsVoiceModel? Type700 { get; set; } + public global::Vapi.FallbackElevenLabsVoiceVoiceId? Type700 { get; set; } /// /// /// - public global::Vapi.FallbackHumeVoiceProvider? Type701 { get; set; } + public global::Vapi.FallbackElevenLabsVoiceModel? Type701 { get; set; } /// /// /// - public global::Vapi.FallbackHumeVoiceModel? Type702 { get; set; } + public global::Vapi.FallbackHumeVoiceProvider? Type702 { get; set; } /// /// /// - public global::Vapi.FallbackLMNTVoiceProvider? Type703 { get; set; } + public global::Vapi.FallbackHumeVoiceModel? Type703 { get; set; } /// /// /// - public global::Vapi.OneOf? Type704 { get; set; } + public global::Vapi.FallbackLMNTVoiceProvider? Type704 { get; set; } /// /// /// - public global::Vapi.FallbackLMNTVoiceVoiceId? Type705 { get; set; } + public global::Vapi.OneOf? Type705 { get; set; } /// /// /// - public global::Vapi.FallbackLMNTVoiceLanguage? Type706 { get; set; } + public global::Vapi.FallbackLMNTVoiceVoiceId? Type706 { get; set; } /// /// /// - public global::Vapi.FallbackNeuphonicVoiceProvider? Type707 { get; set; } + public global::Vapi.FallbackLMNTVoiceLanguage? Type707 { get; set; } /// /// /// - public global::Vapi.FallbackNeuphonicVoiceModel? Type708 { get; set; } + public global::Vapi.FallbackNeuphonicVoiceProvider? Type708 { get; set; } /// /// /// - public global::Vapi.FallbackOpenAIVoiceProvider? Type709 { get; set; } + public global::Vapi.FallbackNeuphonicVoiceModel? Type709 { get; set; } /// /// /// - public global::Vapi.OneOf? Type710 { get; set; } + public global::Vapi.FallbackOpenAIVoiceProvider? Type710 { get; set; } /// /// /// - public global::Vapi.FallbackOpenAIVoiceVoiceId? Type711 { get; set; } + public global::Vapi.OneOf? Type711 { get; set; } /// /// /// - public global::Vapi.FallbackOpenAIVoiceModel? Type712 { get; set; } + public global::Vapi.FallbackOpenAIVoiceVoiceId? Type712 { get; set; } /// /// /// - public global::Vapi.FallbackPlayHTVoiceProvider? Type713 { get; set; } + public global::Vapi.FallbackOpenAIVoiceModel? Type713 { get; set; } /// /// /// - public global::Vapi.OneOf? Type714 { get; set; } + public global::Vapi.FallbackPlayHTVoiceProvider? Type714 { get; set; } /// /// /// - public global::Vapi.FallbackPlayHTVoiceVoiceId? Type715 { get; set; } + public global::Vapi.OneOf? Type715 { get; set; } /// /// /// - public global::Vapi.FallbackPlayHTVoiceEmotion? Type716 { get; set; } + public global::Vapi.FallbackPlayHTVoiceVoiceId? Type716 { get; set; } /// /// /// - public global::Vapi.FallbackPlayHTVoiceModel? Type717 { get; set; } + public global::Vapi.FallbackPlayHTVoiceEmotion? Type717 { get; set; } /// /// /// - public global::Vapi.FallbackPlayHTVoiceLanguage? Type718 { get; set; } + public global::Vapi.FallbackPlayHTVoiceModel? Type718 { get; set; } /// /// /// - public global::Vapi.FallbackRimeAIVoiceProvider? Type719 { get; set; } + public global::Vapi.FallbackPlayHTVoiceLanguage? Type719 { get; set; } /// /// /// - public global::Vapi.OneOf? Type720 { get; set; } + public global::Vapi.FallbackRimeAIVoiceProvider? Type720 { get; set; } /// /// /// - public global::Vapi.FallbackRimeAIVoiceVoiceId? Type721 { get; set; } + public global::Vapi.OneOf? Type721 { get; set; } /// /// /// - public global::Vapi.FallbackRimeAIVoiceModel? Type722 { get; set; } + public global::Vapi.FallbackRimeAIVoiceVoiceId? Type722 { get; set; } /// /// /// - public global::Vapi.FallbackRimeAIVoiceLanguage? Type723 { get; set; } + public global::Vapi.FallbackRimeAIVoiceModel? Type723 { get; set; } /// /// /// - public global::Vapi.FallbackSesameVoiceProvider? Type724 { get; set; } + public global::Vapi.FallbackRimeAIVoiceLanguage? Type724 { get; set; } /// /// /// - public global::Vapi.FallbackSesameVoiceModel? Type725 { get; set; } + public global::Vapi.FallbackSesameVoiceProvider? Type725 { get; set; } /// /// /// - public global::Vapi.FallbackSmallestAIVoiceProvider? Type726 { get; set; } + public global::Vapi.FallbackSesameVoiceModel? Type726 { get; set; } /// /// /// - public global::Vapi.OneOf? Type727 { get; set; } + public global::Vapi.FallbackSmallestAIVoiceProvider? Type727 { get; set; } /// /// /// - public global::Vapi.FallbackSmallestAIVoiceVoiceId? Type728 { get; set; } + public global::Vapi.OneOf? Type728 { get; set; } /// /// /// - public global::Vapi.FallbackSmallestAIVoiceModel? Type729 { get; set; } + public global::Vapi.FallbackSmallestAIVoiceVoiceId? Type729 { get; set; } /// /// /// - public global::Vapi.FallbackTavusVoiceProvider? Type730 { get; set; } + public global::Vapi.FallbackSmallestAIVoiceModel? Type730 { get; set; } /// /// /// - public global::Vapi.OneOf? Type731 { get; set; } + public global::Vapi.FallbackTavusVoiceProvider? Type731 { get; set; } /// /// /// - public global::Vapi.FallbackTavusVoiceVoiceId? Type732 { get; set; } + public global::Vapi.OneOf? Type732 { get; set; } /// /// /// - public global::Vapi.FallbackVapiVoiceProvider? Type733 { get; set; } + public global::Vapi.FallbackTavusVoiceVoiceId? Type733 { get; set; } /// /// /// - public global::Vapi.FallbackVapiVoiceVoiceId? Type734 { get; set; } + public global::Vapi.FallbackVapiVoiceProvider? Type734 { get; set; } /// /// /// - public global::Vapi.FallbackInworldVoiceProvider? Type735 { get; set; } + public global::Vapi.FallbackVapiVoiceVoiceId? Type735 { get; set; } /// /// /// - public global::Vapi.FallbackInworldVoiceVoiceId? Type736 { get; set; } + public global::Vapi.FallbackVapiVoiceLanguage? Type736 { get; set; } /// /// /// - public global::Vapi.FallbackInworldVoiceModel? Type737 { get; set; } + public global::Vapi.FallbackInworldVoiceProvider? Type737 { get; set; } /// /// /// - public global::Vapi.FallbackInworldVoiceLanguageCode? Type738 { get; set; } + public global::Vapi.FallbackInworldVoiceVoiceId? Type738 { get; set; } /// /// /// - public global::Vapi.FallbackXaiVoiceProvider? Type739 { get; set; } + public global::Vapi.FallbackInworldVoiceModel? Type739 { get; set; } /// /// /// - public global::Vapi.FallbackXaiVoiceVoiceId? Type740 { get; set; } + public global::Vapi.FallbackInworldVoiceLanguageCode? Type740 { get; set; } /// /// /// - public global::Vapi.FallbackXaiVoiceLanguage? Type741 { get; set; } + public global::Vapi.FallbackXaiVoiceProvider? Type741 { get; set; } /// /// /// - public global::Vapi.TransportConfigurationTwilio? Type742 { get; set; } + public global::Vapi.FallbackXaiVoiceVoiceId? Type742 { get; set; } /// /// /// - public global::Vapi.TransportConfigurationTwilioProvider? Type743 { get; set; } + public global::Vapi.FallbackXaiVoiceLanguage? Type743 { get; set; } /// /// /// - public global::Vapi.TransportConfigurationTwilioRecordingChannels? Type744 { get; set; } + public global::Vapi.TransportConfigurationTwilio? Type744 { get; set; } /// /// /// - public global::Vapi.CreateAnthropicCredentialDTOProvider? Type745 { get; set; } + public global::Vapi.TransportConfigurationTwilioProvider? Type745 { get; set; } /// /// /// - public global::Vapi.CreateAnthropicBedrockCredentialDTOProvider? Type746 { get; set; } + public global::Vapi.TransportConfigurationTwilioRecordingChannels? Type746 { get; set; } /// /// /// - public global::Vapi.CreateAnthropicBedrockCredentialDTORegion? Type747 { get; set; } + public global::Vapi.CreateAnthropicCredentialDTOProvider? Type747 { get; set; } /// /// /// - public global::Vapi.OneOf? Type748 { get; set; } + public global::Vapi.CreateAnthropicBedrockCredentialDTOProvider? Type748 { get; set; } /// /// /// - public global::Vapi.AWSIAMCredentialsAuthenticationPlan? Type749 { get; set; } + public global::Vapi.CreateAnthropicBedrockCredentialDTORegion? Type749 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationPlan? Type750 { get; set; } + public global::Vapi.OneOf? Type750 { get; set; } /// /// /// - public global::Vapi.CreateAnyscaleCredentialDTOProvider? Type751 { get; set; } + public global::Vapi.AWSIAMCredentialsAuthenticationPlan? Type751 { get; set; } /// /// /// - public global::Vapi.CreateAssemblyAICredentialDTOProvider? Type752 { get; set; } + public global::Vapi.AWSStsAuthenticationPlan? Type752 { get; set; } /// /// /// - public global::Vapi.AzureBlobStorageBucketPlan? Type753 { get; set; } + public global::Vapi.CreateAnyscaleCredentialDTOProvider? Type753 { get; set; } /// /// /// - public global::Vapi.CreateAzureCredentialDTOProvider? Type754 { get; set; } + public global::Vapi.CreateAssemblyAICredentialDTOProvider? Type754 { get; set; } /// /// /// - public global::Vapi.CreateAzureCredentialDTOService? Type755 { get; set; } + public global::Vapi.AzureBlobStorageBucketPlan? Type755 { get; set; } /// /// /// - public global::Vapi.CreateAzureCredentialDTORegion? Type756 { get; set; } + public global::Vapi.CreateAzureCredentialDTOProvider? Type756 { get; set; } /// /// /// - public global::Vapi.CreateAzureOpenAICredentialDTOProvider? Type757 { get; set; } + public global::Vapi.CreateAzureCredentialDTOService? Type757 { get; set; } /// /// /// - public global::Vapi.CreateAzureOpenAICredentialDTORegion? Type758 { get; set; } + public global::Vapi.CreateAzureCredentialDTORegion? Type758 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type759 { get; set; } + public global::Vapi.CreateAzureOpenAICredentialDTOProvider? Type759 { get; set; } /// /// /// - public global::Vapi.CreateAzureOpenAICredentialDTOModel? Type760 { get; set; } + public global::Vapi.CreateAzureOpenAICredentialDTORegion? Type760 { get; set; } /// /// /// - public global::Vapi.SipTrunkGateway? Type761 { get; set; } + public global::System.Collections.Generic.IList? Type761 { get; set; } /// /// /// - public global::Vapi.SipTrunkGatewayOutboundProtocol? Type762 { get; set; } + public global::Vapi.CreateAzureOpenAICredentialDTOModel? Type762 { get; set; } /// /// /// - public global::Vapi.SipTrunkOutboundSipRegisterPlan? Type763 { get; set; } + public global::Vapi.SipTrunkGateway? Type763 { get; set; } /// /// /// - public global::Vapi.SipTrunkOutboundAuthenticationPlan? Type764 { get; set; } + public global::Vapi.SipTrunkGatewayOutboundProtocol? Type764 { get; set; } /// /// /// - public global::Vapi.SbcConfiguration? Type765 { get; set; } + public global::Vapi.SipTrunkOutboundSipRegisterPlan? Type765 { get; set; } /// /// /// - public global::Vapi.CreateByoSipTrunkCredentialDTOProvider? Type766 { get; set; } + public global::Vapi.SipTrunkOutboundAuthenticationPlan? Type766 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type767 { get; set; } + public global::Vapi.SbcConfiguration? Type767 { get; set; } /// /// /// - public global::Vapi.CreateCartesiaCredentialDTOProvider? Type768 { get; set; } + public global::Vapi.CreateByoSipTrunkCredentialDTOProvider? Type768 { get; set; } /// /// /// - public global::Vapi.CloudflareR2BucketPlan? Type769 { get; set; } + public global::System.Collections.Generic.IList? Type769 { get; set; } /// /// /// - public global::Vapi.CreateCloudflareCredentialDTOProvider? Type770 { get; set; } + public global::Vapi.CreateCartesiaCredentialDTOProvider? Type770 { get; set; } /// /// /// - public global::Vapi.OAuth2AuthenticationPlan? Type771 { get; set; } + public global::Vapi.CloudflareR2BucketPlan? Type771 { get; set; } /// /// /// - public global::Vapi.OAuth2AuthenticationPlanType? Type772 { get; set; } + public global::Vapi.CreateCloudflareCredentialDTOProvider? Type772 { get; set; } /// /// /// - public global::Vapi.CreateCustomLLMCredentialDTOProvider? Type773 { get; set; } + public global::Vapi.OAuth2AuthenticationPlan? Type773 { get; set; } /// /// /// - public global::Vapi.CreateDeepgramCredentialDTOProvider? Type774 { get; set; } + public global::Vapi.OAuth2AuthenticationPlanType? Type774 { get; set; } /// /// /// - public global::Vapi.CreateDeepInfraCredentialDTOProvider? Type775 { get; set; } + public global::Vapi.CreateCustomLLMCredentialDTOProvider? Type775 { get; set; } /// /// /// - public global::Vapi.CreateDeepSeekCredentialDTOProvider? Type776 { get; set; } + public global::Vapi.CreateDeepgramCredentialDTOProvider? Type776 { get; set; } /// /// /// - public global::Vapi.CreateElevenLabsCredentialDTOProvider? Type777 { get; set; } + public global::Vapi.CreateDeepInfraCredentialDTOProvider? Type777 { get; set; } /// /// /// - public global::Vapi.GcpKey? Type778 { get; set; } + public global::Vapi.CreateDeepSeekCredentialDTOProvider? Type778 { get; set; } /// /// /// - public global::Vapi.BucketPlan? Type779 { get; set; } + public global::Vapi.CreateElevenLabsCredentialDTOProvider? Type779 { get; set; } /// /// /// - public global::Vapi.CreateGcpCredentialDTOProvider? Type780 { get; set; } + public global::Vapi.GcpKey? Type780 { get; set; } /// /// /// - public global::Vapi.CreateGladiaCredentialDTOProvider? Type781 { get; set; } + public global::Vapi.BucketPlan? Type781 { get; set; } /// /// /// - public global::Vapi.CreateGoHighLevelCredentialDTOProvider? Type782 { get; set; } + public global::Vapi.CreateGcpCredentialDTOProvider? Type782 { get; set; } /// /// /// - public global::Vapi.CreateGroqCredentialDTOProvider? Type783 { get; set; } + public global::Vapi.CreateGladiaCredentialDTOProvider? Type783 { get; set; } /// /// /// - public global::Vapi.CreateLangfuseCredentialDTOProvider? Type784 { get; set; } + public global::Vapi.CreateGoHighLevelCredentialDTOProvider? Type784 { get; set; } /// /// /// - public global::Vapi.CreateLmntCredentialDTOProvider? Type785 { get; set; } + public global::Vapi.CreateGroqCredentialDTOProvider? Type785 { get; set; } /// /// /// - public global::Vapi.CreateMakeCredentialDTOProvider? Type786 { get; set; } + public global::Vapi.CreateLangfuseCredentialDTOProvider? Type786 { get; set; } /// /// /// - public global::Vapi.CreateOpenAICredentialDTOProvider? Type787 { get; set; } + public global::Vapi.CreateLmntCredentialDTOProvider? Type787 { get; set; } /// /// /// - public global::Vapi.CreateOpenRouterCredentialDTOProvider? Type788 { get; set; } + public global::Vapi.CreateMakeCredentialDTOProvider? Type788 { get; set; } /// /// /// - public global::Vapi.CreatePerplexityAICredentialDTOProvider? Type789 { get; set; } + public global::Vapi.CreateOpenAICredentialDTOProvider? Type789 { get; set; } /// /// /// - public global::Vapi.CreatePlayHTCredentialDTOProvider? Type790 { get; set; } + public global::Vapi.CreateOpenRouterCredentialDTOProvider? Type790 { get; set; } /// /// /// - public global::Vapi.CreateRimeAICredentialDTOProvider? Type791 { get; set; } + public global::Vapi.CreatePerplexityAICredentialDTOProvider? Type791 { get; set; } /// /// /// - public global::Vapi.CreateRunpodCredentialDTOProvider? Type792 { get; set; } + public global::Vapi.CreatePlayHTCredentialDTOProvider? Type792 { get; set; } /// /// /// - public global::Vapi.CreateS3CredentialDTOProvider? Type793 { get; set; } + public global::Vapi.CreateRimeAICredentialDTOProvider? Type793 { get; set; } /// /// /// - public global::Vapi.SupabaseBucketPlan? Type794 { get; set; } + public global::Vapi.CreateRunpodCredentialDTOProvider? Type794 { get; set; } /// /// /// - public global::Vapi.SupabaseBucketPlanRegion? Type795 { get; set; } + public global::Vapi.CreateS3CredentialDTOProvider? Type795 { get; set; } /// /// /// - public global::Vapi.CreateSupabaseCredentialDTOProvider? Type796 { get; set; } + public global::Vapi.SupabaseBucketPlan? Type796 { get; set; } /// /// /// - public global::Vapi.CreateSmallestAICredentialDTOProvider? Type797 { get; set; } + public global::Vapi.SupabaseBucketPlanRegion? Type797 { get; set; } /// /// /// - public global::Vapi.CreateTavusCredentialDTOProvider? Type798 { get; set; } + public global::Vapi.CreateSupabaseCredentialDTOProvider? Type798 { get; set; } /// /// /// - public global::Vapi.CreateTogetherAICredentialDTOProvider? Type799 { get; set; } + public global::Vapi.CreateSmallestAICredentialDTOProvider? Type799 { get; set; } /// /// /// - public global::Vapi.CreateTwilioCredentialDTOProvider? Type800 { get; set; } + public global::Vapi.CreateTavusCredentialDTOProvider? Type800 { get; set; } /// /// /// - public global::Vapi.CreateVonageCredentialDTOProvider? Type801 { get; set; } + public global::Vapi.CreateTogetherAICredentialDTOProvider? Type801 { get; set; } /// /// /// - public global::Vapi.CreateWebhookCredentialDTOProvider? Type802 { get; set; } + public global::Vapi.CreateTwilioCredentialDTOProvider? Type802 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan2? Type803 { get; set; } + public global::Vapi.CreateVonageCredentialDTOProvider? Type803 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlan? Type804 { get; set; } + public global::Vapi.CreateWebhookCredentialDTOProvider? Type804 { get; set; } /// /// /// - public global::Vapi.BearerAuthenticationPlan? Type805 { get; set; } + public global::Vapi.AuthenticationPlan2? Type805 { get; set; } /// /// /// - public global::Vapi.CreateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type806 { get; set; } + public global::Vapi.HMACAuthenticationPlan? Type806 { get; set; } /// /// /// - public global::Vapi.CreateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type807 { get; set; } + public global::Vapi.BearerAuthenticationPlan? Type807 { get; set; } /// /// /// - public global::Vapi.CreateXAiCredentialDTOProvider? Type808 { get; set; } + public global::Vapi.CreateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type808 { get; set; } /// /// /// - public global::Vapi.CreateGoogleCalendarOAuth2ClientCredentialDTOProvider? Type809 { get; set; } + public global::Vapi.CreateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type809 { get; set; } /// /// /// - public global::Vapi.CreateGoogleCalendarOAuth2AuthorizationCredentialDTOProvider? Type810 { get; set; } + public global::Vapi.CreateXAiCredentialDTOProvider? Type810 { get; set; } /// /// /// - public global::Vapi.CreateGoogleSheetsOAuth2AuthorizationCredentialDTOProvider? Type811 { get; set; } + public global::Vapi.CreateGoogleCalendarOAuth2ClientCredentialDTOProvider? Type811 { get; set; } /// /// /// - public global::Vapi.CreateSlackOAuth2AuthorizationCredentialDTOProvider? Type812 { get; set; } + public global::Vapi.CreateGoogleCalendarOAuth2AuthorizationCredentialDTOProvider? Type812 { get; set; } /// /// /// - public global::Vapi.CreateMinimaxCredentialDTOProvider? Type813 { get; set; } + public global::Vapi.CreateGoogleSheetsOAuth2AuthorizationCredentialDTOProvider? Type813 { get; set; } /// /// /// - public global::Vapi.EndpointedSpeechLowConfidenceOptions? Type814 { get; set; } + public global::Vapi.CreateSlackOAuth2AuthorizationCredentialDTOProvider? Type814 { get; set; } /// /// /// - public global::Vapi.CallHookTranscriberEndpointedSpeechLowConfidence? Type815 { get; set; } + public global::Vapi.CreateMinimaxCredentialDTOProvider? Type815 { get; set; } /// /// /// - public global::Vapi.SessionCreatedHook? Type816 { get; set; } + public global::Vapi.EndpointedSpeechLowConfidenceOptions? Type816 { get; set; } /// /// /// - public global::Vapi.SessionCreatedHookOn? Type817 { get; set; } + public global::Vapi.CallHookTranscriberEndpointedSpeechLowConfidence? Type817 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type818 { get; set; } + public global::Vapi.SessionCreatedHook? Type818 { get; set; } /// /// /// - public global::Vapi.SQLInjectionSecurityFilter? Type819 { get; set; } + public global::Vapi.SessionCreatedHookOn? Type819 { get; set; } /// /// /// - public global::Vapi.SQLInjectionSecurityFilterType? Type820 { get; set; } + public global::System.Collections.Generic.IList? Type820 { get; set; } /// /// /// - public global::Vapi.XSSSecurityFilter? Type821 { get; set; } + public global::Vapi.SQLInjectionSecurityFilter? Type821 { get; set; } /// /// /// - public global::Vapi.XSSSecurityFilterType? Type822 { get; set; } + public global::Vapi.SQLInjectionSecurityFilterType? Type822 { get; set; } /// /// /// - public global::Vapi.SSRFSecurityFilter? Type823 { get; set; } + public global::Vapi.XSSSecurityFilter? Type823 { get; set; } /// /// /// - public global::Vapi.SSRFSecurityFilterType? Type824 { get; set; } + public global::Vapi.XSSSecurityFilterType? Type824 { get; set; } /// /// /// - public global::Vapi.RCESecurityFilter? Type825 { get; set; } + public global::Vapi.SSRFSecurityFilter? Type825 { get; set; } /// /// /// - public global::Vapi.RCESecurityFilterType? Type826 { get; set; } + public global::Vapi.SSRFSecurityFilterType? Type826 { get; set; } /// /// /// - public global::Vapi.PromptInjectionSecurityFilter? Type827 { get; set; } + public global::Vapi.RCESecurityFilter? Type827 { get; set; } /// /// /// - public global::Vapi.PromptInjectionSecurityFilterType? Type828 { get; set; } + public global::Vapi.RCESecurityFilterType? Type828 { get; set; } /// /// /// - public global::Vapi.RegexSecurityFilter? Type829 { get; set; } + public global::Vapi.PromptInjectionSecurityFilter? Type829 { get; set; } /// /// /// - public global::Vapi.RegexSecurityFilterType? Type830 { get; set; } + public global::Vapi.PromptInjectionSecurityFilterType? Type830 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesFirstMessageMode? Type831 { get; set; } + public global::Vapi.RegexSecurityFilter? Type831 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesVoicemailDetection? Type832 { get; set; } + public global::Vapi.RegexSecurityFilterType? Type832 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type833 { get; set; } + public global::Vapi.AssistantOverridesFirstMessageMode? Type833 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesClientMessage? Type834 { get; set; } + public global::Vapi.AssistantOverridesVoicemailDetection? Type834 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type835 { get; set; } + public global::System.Collections.Generic.IList? Type835 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesServerMessage? Type836 { get; set; } + public global::Vapi.AssistantOverridesClientMessage? Type836 { get; set; } /// /// /// - public global::Vapi.OneOf? Type837 { get; set; } + public global::System.Collections.Generic.IList? Type837 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesBackgroundSound? Type838 { get; set; } + public global::Vapi.AssistantOverridesServerMessage? Type838 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type839 { get; set; } + public global::Vapi.OneOf? Type839 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type840 { get; set; } + public global::Vapi.AssistantOverridesBackgroundSound? Type840 { get; set; } /// /// /// - public global::Vapi.CredentialsItem2? Type841 { get; set; } + public global::System.Collections.Generic.IList? Type841 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesCredentialDiscriminator? Type842 { get; set; } + public global::System.Collections.Generic.IList? Type842 { get; set; } /// /// /// - public global::Vapi.AssistantOverridesCredentialDiscriminatorProvider? Type843 { get; set; } + public global::Vapi.CredentialsItem2? Type843 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOFirstMessageMode? Type844 { get; set; } + public global::Vapi.AssistantOverridesCredentialDiscriminator? Type844 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOVoicemailDetection? Type845 { get; set; } + public global::Vapi.AssistantOverridesCredentialDiscriminatorProvider? Type845 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type846 { get; set; } + public global::Vapi.CreateAssistantDTOFirstMessageMode? Type846 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOClientMessage? Type847 { get; set; } + public global::Vapi.CreateAssistantDTOVoicemailDetection? Type847 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type848 { get; set; } + public global::System.Collections.Generic.IList? Type848 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOServerMessage? Type849 { get; set; } + public global::Vapi.CreateAssistantDTOClientMessage? Type849 { get; set; } /// /// /// - public global::Vapi.OneOf? Type850 { get; set; } + public global::System.Collections.Generic.IList? Type850 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOBackgroundSound? Type851 { get; set; } + public global::Vapi.CreateAssistantDTOServerMessage? Type851 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type852 { get; set; } + public global::Vapi.OneOf? Type852 { get; set; } /// /// /// - public global::Vapi.CredentialsItem3? Type853 { get; set; } + public global::Vapi.CreateAssistantDTOBackgroundSound? Type853 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOCredentialDiscriminator? Type854 { get; set; } + public global::System.Collections.Generic.IList? Type854 { get; set; } /// /// /// - public global::Vapi.CreateAssistantDTOCredentialDiscriminatorProvider? Type855 { get; set; } + public global::Vapi.CredentialsItem3? Type855 { get; set; } /// /// /// - public global::Vapi.Assistant? Type856 { get; set; } + public global::Vapi.CreateAssistantDTOCredentialDiscriminator? Type856 { get; set; } /// /// /// - public global::Vapi.AssistantFirstMessageMode? Type857 { get; set; } + public global::Vapi.CreateAssistantDTOCredentialDiscriminatorProvider? Type857 { get; set; } /// /// /// - public global::Vapi.AssistantVoicemailDetection? Type858 { get; set; } + public global::Vapi.Assistant? Type858 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type859 { get; set; } + public global::Vapi.AssistantFirstMessageMode? Type859 { get; set; } /// /// /// - public global::Vapi.AssistantClientMessage? Type860 { get; set; } + public global::Vapi.AssistantVoicemailDetection? Type860 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type861 { get; set; } + public global::System.Collections.Generic.IList? Type861 { get; set; } /// /// /// - public global::Vapi.AssistantServerMessage? Type862 { get; set; } + public global::Vapi.AssistantClientMessage? Type862 { get; set; } /// /// /// - public global::Vapi.OneOf? Type863 { get; set; } + public global::System.Collections.Generic.IList? Type863 { get; set; } /// /// /// - public global::Vapi.AssistantBackgroundSound? Type864 { get; set; } + public global::Vapi.AssistantServerMessage? Type864 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type865 { get; set; } + public global::Vapi.OneOf? Type865 { get; set; } /// /// /// - public global::Vapi.CredentialsItem4? Type866 { get; set; } + public global::Vapi.AssistantBackgroundSound? Type866 { get; set; } /// /// /// - public global::Vapi.AssistantCredentialDiscriminator? Type867 { get; set; } + public global::System.Collections.Generic.IList? Type867 { get; set; } /// /// /// - public global::Vapi.AssistantCredentialDiscriminatorProvider? Type868 { get; set; } + public global::Vapi.CredentialsItem4? Type868 { get; set; } /// /// /// - public global::System.DateTime? Type869 { get; set; } + public global::Vapi.AssistantCredentialDiscriminator? Type869 { get; set; } /// /// /// - public global::Vapi.PaginationMeta? Type870 { get; set; } + public global::Vapi.AssistantCredentialDiscriminatorProvider? Type870 { get; set; } /// /// /// - public global::Vapi.PaginationMetaSortOrder? Type871 { get; set; } + public global::System.DateTime? Type871 { get; set; } /// /// /// - public global::Vapi.AssistantPaginatedResponse? Type872 { get; set; } + public global::Vapi.PaginationMeta? Type872 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type873 { get; set; } + public global::Vapi.PaginationMetaSortOrder? Type873 { get; set; } /// /// /// - public global::Vapi.AssistantVersionPaginatedResponse? Type874 { get; set; } + public global::Vapi.AssistantPaginatedResponse? Type874 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTO? Type875 { get; set; } + public global::System.Collections.Generic.IList? Type875 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOFirstMessageMode? Type876 { get; set; } + public global::Vapi.AssistantVersionPaginatedResponse? Type876 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOVoicemailDetection? Type877 { get; set; } + public global::Vapi.UpdateAssistantDTO? Type877 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type878 { get; set; } + public global::Vapi.UpdateAssistantDTOFirstMessageMode? Type878 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOClientMessage? Type879 { get; set; } + public global::Vapi.UpdateAssistantDTOVoicemailDetection? Type879 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type880 { get; set; } + public global::System.Collections.Generic.IList? Type880 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOServerMessage? Type881 { get; set; } + public global::Vapi.UpdateAssistantDTOClientMessage? Type881 { get; set; } /// /// /// - public global::Vapi.OneOf? Type882 { get; set; } + public global::System.Collections.Generic.IList? Type882 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOBackgroundSound? Type883 { get; set; } + public global::Vapi.UpdateAssistantDTOServerMessage? Type883 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type884 { get; set; } + public global::Vapi.OneOf? Type884 { get; set; } /// /// /// - public global::Vapi.CredentialsItem5? Type885 { get; set; } + public global::Vapi.UpdateAssistantDTOBackgroundSound? Type885 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOCredentialDiscriminator? Type886 { get; set; } + public global::System.Collections.Generic.IList? Type886 { get; set; } /// /// /// - public global::Vapi.UpdateAssistantDTOCredentialDiscriminatorProvider? Type887 { get; set; } + public global::Vapi.CredentialsItem5? Type887 { get; set; } /// /// /// - public global::Vapi.Squad? Type888 { get; set; } + public global::Vapi.UpdateAssistantDTOCredentialDiscriminator? Type888 { get; set; } /// /// /// - public global::Vapi.UpdateSquadDTO? Type889 { get; set; } + public global::Vapi.UpdateAssistantDTOCredentialDiscriminatorProvider? Type889 { get; set; } /// /// /// - public global::Vapi.Workflow? Type890 { get; set; } + public global::Vapi.Squad? Type890 { get; set; } /// /// /// - public global::Vapi.OneOf? Type891 { get; set; } + public global::Vapi.UpdateSquadDTO? Type891 { get; set; } /// /// /// - public global::Vapi.WorkflowBackgroundSound? Type892 { get; set; } + public global::Vapi.Workflow? Type892 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type893 { get; set; } + public global::Vapi.OneOf? Type893 { get; set; } /// /// /// - public global::Vapi.CredentialsItem6? Type894 { get; set; } + public global::Vapi.WorkflowBackgroundSound? Type894 { get; set; } /// /// /// - public global::Vapi.WorkflowCredentialDiscriminator? Type895 { get; set; } + public global::System.Collections.Generic.IList? Type895 { get; set; } /// /// /// - public global::Vapi.WorkflowCredentialDiscriminatorProvider? Type896 { get; set; } + public global::Vapi.CredentialsItem6? Type896 { get; set; } /// /// /// - public global::Vapi.WorkflowVoicemailDetection? Type897 { get; set; } + public global::Vapi.WorkflowCredentialDiscriminator? Type897 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTO? Type898 { get; set; } + public global::Vapi.WorkflowCredentialDiscriminatorProvider? Type898 { get; set; } /// /// /// - public global::Vapi.OneOf? Type899 { get; set; } + public global::Vapi.WorkflowVoicemailDetection? Type899 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTOBackgroundSound? Type900 { get; set; } + public global::Vapi.CreateWorkflowDTO? Type900 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type901 { get; set; } + public global::Vapi.OneOf? Type901 { get; set; } /// /// /// - public global::Vapi.CredentialsItem7? Type902 { get; set; } + public global::Vapi.CreateWorkflowDTOBackgroundSound? Type902 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTOCredentialDiscriminator? Type903 { get; set; } + public global::System.Collections.Generic.IList? Type903 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTOCredentialDiscriminatorProvider? Type904 { get; set; } + public global::Vapi.CredentialsItem7? Type904 { get; set; } /// /// /// - public global::Vapi.CreateWorkflowDTOVoicemailDetection? Type905 { get; set; } + public global::Vapi.CreateWorkflowDTOCredentialDiscriminator? Type905 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTO? Type906 { get; set; } + public global::Vapi.CreateWorkflowDTOCredentialDiscriminatorProvider? Type906 { get; set; } /// /// /// - public global::Vapi.OneOf? Type907 { get; set; } + public global::Vapi.CreateWorkflowDTOVoicemailDetection? Type907 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTOBackgroundSound? Type908 { get; set; } + public global::Vapi.UpdateWorkflowDTO? Type908 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type909 { get; set; } + public global::Vapi.OneOf? Type909 { get; set; } /// /// /// - public global::Vapi.CredentialsItem8? Type910 { get; set; } + public global::Vapi.UpdateWorkflowDTOBackgroundSound? Type910 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTOCredentialDiscriminator? Type911 { get; set; } + public global::System.Collections.Generic.IList? Type911 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTOCredentialDiscriminatorProvider? Type912 { get; set; } + public global::Vapi.CredentialsItem8? Type912 { get; set; } /// /// /// - public global::Vapi.UpdateWorkflowDTOVoicemailDetection? Type913 { get; set; } + public global::Vapi.UpdateWorkflowDTOCredentialDiscriminator? Type913 { get; set; } /// /// /// - public global::Vapi.SubscriptionLimits? Type914 { get; set; } + public global::Vapi.UpdateWorkflowDTOCredentialDiscriminatorProvider? Type914 { get; set; } /// /// /// - public global::Vapi.AnalysisCostBreakdown? Type915 { get; set; } + public global::Vapi.UpdateWorkflowDTOVoicemailDetection? Type915 { get; set; } /// /// /// - public global::Vapi.CostBreakdown? Type916 { get; set; } + public global::Vapi.SubscriptionLimits? Type916 { get; set; } /// /// /// - public global::Vapi.Analysis? Type917 { get; set; } + public global::Vapi.AnalysisCostBreakdown? Type917 { get; set; } /// /// /// - public global::Vapi.MonitorResult? Type918 { get; set; } + public global::Vapi.CostBreakdown? Type918 { get; set; } /// /// /// - public global::Vapi.Monitor? Type919 { get; set; } + public global::Vapi.Analysis? Type919 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type920 { get; set; } + public global::Vapi.MonitorResult? Type920 { get; set; } /// /// /// - public global::Vapi.Mono? Type921 { get; set; } + public global::Vapi.Monitor? Type921 { get; set; } /// /// /// - public global::Vapi.Recording? Type922 { get; set; } + public global::System.Collections.Generic.IList? Type922 { get; set; } /// /// /// - public global::Vapi.NodeArtifact? Type923 { get; set; } + public global::Vapi.Mono? Type923 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type924 { get; set; } + public global::Vapi.Recording? Type924 { get; set; } /// /// /// - public global::Vapi.OneOf? Type925 { get; set; } + public global::Vapi.NodeArtifact? Type925 { get; set; } /// /// /// - public global::Vapi.BotMessage? Type926 { get; set; } + public global::System.Collections.Generic.IList>? Type926 { get; set; } /// /// /// - public global::Vapi.ToolCallMessage? Type927 { get; set; } + public global::Vapi.OneOf? Type927 { get; set; } /// /// /// - public global::Vapi.ToolCallResultMessage? Type928 { get; set; } + public global::Vapi.BotMessage? Type928 { get; set; } /// /// /// - public global::Vapi.AssistantActivation? Type929 { get; set; } + public global::Vapi.ToolCallMessage? Type929 { get; set; } /// /// /// - public global::Vapi.TurnLatency? Type930 { get; set; } + public global::Vapi.ToolCallResultMessage? Type930 { get; set; } /// /// /// - public global::Vapi.PerformanceMetrics? Type931 { get; set; } + public global::Vapi.AssistantActivation? Type931 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type932 { get; set; } + public global::Vapi.TurnLatency? Type932 { get; set; } /// /// /// - public global::Vapi.Artifact? Type933 { get; set; } + public global::Vapi.PerformanceMetrics? Type933 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type934 { get; set; } + public global::System.Collections.Generic.IList? Type934 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type935 { get; set; } + public global::Vapi.Artifact? Type935 { get; set; } /// /// /// - public global::Vapi.RecordingConsent? Type936 { get; set; } + public global::System.Collections.Generic.IList? Type936 { get; set; } /// /// /// - public global::Vapi.Compliance? Type937 { get; set; } + public global::System.Collections.Generic.IList? Type937 { get; set; } /// /// /// - public global::Vapi.WorkflowOverrides? Type938 { get; set; } + public global::Vapi.RecordingConsent? Type938 { get; set; } /// /// /// - public global::Vapi.TransferPhoneNumberHookAction? Type939 { get; set; } + public global::Vapi.Compliance? Type939 { get; set; } /// /// /// - public global::Vapi.TransferPhoneNumberHookActionType? Type940 { get; set; } + public global::Vapi.WorkflowOverrides? Type940 { get; set; } /// /// /// - public global::Vapi.SayPhoneNumberHookAction? Type941 { get; set; } + public global::Vapi.TransferPhoneNumberHookAction? Type941 { get; set; } /// /// /// - public global::Vapi.SayPhoneNumberHookActionType? Type942 { get; set; } + public global::Vapi.TransferPhoneNumberHookActionType? Type942 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallRingingHookFilter? Type943 { get; set; } + public global::Vapi.SayPhoneNumberHookAction? Type943 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallRingingHookFilterType? Type944 { get; set; } + public global::Vapi.SayPhoneNumberHookActionType? Type944 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallRingingHookFilterKey? Type945 { get; set; } + public global::Vapi.PhoneNumberCallRingingHookFilter? Type945 { get; set; } /// /// /// - public global::Vapi.PhoneNumberHookCallRinging? Type946 { get; set; } + public global::Vapi.PhoneNumberCallRingingHookFilterType? Type946 { get; set; } /// /// /// - public global::Vapi.PhoneNumberHookCallRingingOn? Type947 { get; set; } + public global::Vapi.PhoneNumberCallRingingHookFilterKey? Type947 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type948 { get; set; } + public global::Vapi.PhoneNumberHookCallRinging? Type948 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type949 { get; set; } + public global::Vapi.PhoneNumberHookCallRingingOn? Type949 { get; set; } /// /// /// - public global::Vapi.OneOf? Type950 { get; set; } + public global::System.Collections.Generic.IList? Type950 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallEndingHookFilter? Type951 { get; set; } + public global::System.Collections.Generic.IList>? Type951 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallEndingHookFilterType? Type952 { get; set; } + public global::Vapi.OneOf? Type952 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallEndingHookFilterKey? Type953 { get; set; } + public global::Vapi.PhoneNumberCallEndingHookFilter? Type953 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type954 { get; set; } + public global::Vapi.PhoneNumberCallEndingHookFilterType? Type954 { get; set; } /// /// /// - public global::Vapi.PhoneNumberCallEndingHookFilterOneOfItem? Type955 { get; set; } + public global::Vapi.PhoneNumberCallEndingHookFilterKey? Type955 { get; set; } /// /// /// - public global::Vapi.PhoneNumberHookCallEnding? Type956 { get; set; } + public global::System.Collections.Generic.IList? Type956 { get; set; } /// /// /// - public global::Vapi.PhoneNumberHookCallEndingOn? Type957 { get; set; } + public global::Vapi.PhoneNumberCallEndingHookFilterOneOfItem? Type957 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type958 { get; set; } + public global::Vapi.PhoneNumberHookCallEnding? Type958 { get; set; } /// /// /// - public global::Vapi.ImportTwilioPhoneNumberDTO? Type959 { get; set; } + public global::Vapi.PhoneNumberHookCallEndingOn? Type959 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type960 { get; set; } + public global::System.Collections.Generic.IList? Type960 { get; set; } /// /// /// - public global::Vapi.OneOf? Type961 { get; set; } + public global::Vapi.ImportTwilioPhoneNumberDTO? Type961 { get; set; } /// /// /// - public global::Vapi.CreateCustomerDTO? Type962 { get; set; } + public global::System.Collections.Generic.IList>? Type962 { get; set; } /// /// /// - public global::Vapi.SchedulePlan? Type963 { get; set; } + public global::Vapi.OneOf? Type963 { get; set; } /// /// /// - public global::Vapi.Call? Type964 { get; set; } + public global::Vapi.CreateCustomerDTO? Type964 { get; set; } /// /// /// - public global::Vapi.CallType? Type965 { get; set; } + public global::Vapi.SchedulePlan? Type965 { get; set; } /// /// /// - public global::Vapi.OneOf? Type966 { get; set; } + public global::Vapi.Call? Type966 { get; set; } /// /// /// - public global::Vapi.TransportCost? Type967 { get; set; } + public global::Vapi.CallType? Type967 { get; set; } /// /// /// - public global::Vapi.TranscriberCost? Type968 { get; set; } + public global::Vapi.OneOf? Type968 { get; set; } /// /// /// - public global::Vapi.ModelCost? Type969 { get; set; } + public global::Vapi.TransportCost? Type969 { get; set; } /// /// /// - public global::Vapi.VoiceCost? Type970 { get; set; } + public global::Vapi.TranscriberCost? Type970 { get; set; } /// /// /// - public global::Vapi.VapiCost? Type971 { get; set; } + public global::Vapi.ModelCost? Type971 { get; set; } /// /// /// - public global::Vapi.VoicemailDetectionCost? Type972 { get; set; } + public global::Vapi.VoiceCost? Type972 { get; set; } /// /// /// - public global::Vapi.AnalysisCost? Type973 { get; set; } + public global::Vapi.VapiCost? Type973 { get; set; } /// /// /// - public global::Vapi.KnowledgeBaseCost? Type974 { get; set; } + public global::Vapi.VoicemailDetectionCost? Type974 { get; set; } /// /// /// - public global::Vapi.CallPhoneCallProvider? Type975 { get; set; } + public global::Vapi.AnalysisCost? Type975 { get; set; } /// /// /// - public global::Vapi.CallPhoneCallTransport? Type976 { get; set; } + public global::Vapi.KnowledgeBaseCost? Type976 { get; set; } /// /// /// - public global::Vapi.CallStatus? Type977 { get; set; } + public global::Vapi.CallPhoneCallProvider? Type977 { get; set; } /// /// /// - public global::Vapi.CallEndedReason? Type978 { get; set; } + public global::Vapi.CallPhoneCallTransport? Type978 { get; set; } /// /// /// - public global::Vapi.CallBatchError? Type979 { get; set; } + public global::Vapi.CallStatus? Type979 { get; set; } /// /// /// - public global::Vapi.CallBatchResponse? Type980 { get; set; } + public global::Vapi.CallEndedReason? Type980 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type981 { get; set; } + public global::Vapi.CallBatchError? Type981 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type982 { get; set; } + public global::Vapi.CallBatchResponse? Type982 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordAlignmentTiming? Type983 { get; set; } + public global::System.Collections.Generic.IList? Type983 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordAlignmentTimingType? Type984 { get; set; } + public global::System.Collections.Generic.IList? Type984 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type985 { get; set; } + public global::Vapi.AssistantSpeechWordAlignmentTiming? Type985 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordTimestamp? Type986 { get; set; } + public global::Vapi.AssistantSpeechWordAlignmentTimingType? Type986 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordProgressTiming? Type987 { get; set; } + public global::System.Collections.Generic.IList? Type987 { get; set; } /// /// /// - public global::Vapi.AssistantSpeechWordProgressTimingType? Type988 { get; set; } + public global::Vapi.AssistantSpeechWordTimestamp? Type988 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type989 { get; set; } + public global::Vapi.AssistantSpeechWordProgressTiming? Type989 { get; set; } /// /// /// - public global::Vapi.CreateCallDTO? Type990 { get; set; } + public global::Vapi.AssistantSpeechWordProgressTimingType? Type990 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type991 { get; set; } + public global::System.Collections.Generic.IList? Type991 { get; set; } /// /// /// - public global::Vapi.StructuredOutputFilterDTO? Type992 { get; set; } + public global::Vapi.CreateCallDTO? Type992 { get; set; } /// /// /// - public global::Vapi.CallPaginatedResponse? Type993 { get; set; } + public global::System.Collections.Generic.IList? Type993 { get; set; } /// /// /// - public global::Vapi.CreateOutboundCallDTO? Type994 { get; set; } + public global::Vapi.StructuredOutputFilterDTO? Type994 { get; set; } /// /// /// - public global::Vapi.CreateWebCallDTO? Type995 { get; set; } + public global::Vapi.CallPaginatedResponse? Type995 { get; set; } /// /// /// - public global::Vapi.UpdateCallDTO? Type996 { get; set; } + public global::Vapi.CreateOutboundCallDTO? Type996 { get; set; } /// /// /// - public global::Vapi.DeleteCallDTO? Type997 { get; set; } + public global::Vapi.CreateWebCallDTO? Type997 { get; set; } /// /// /// - public global::Vapi.DeveloperMessageRole? Type998 { get; set; } + public global::Vapi.UpdateCallDTO? Type998 { get; set; } /// /// /// - public global::Vapi.ToolCallFunction? Type999 { get; set; } + public global::Vapi.DeleteCallDTO? Type999 { get; set; } /// /// /// - public global::Vapi.ToolCall? Type1000 { get; set; } + public global::Vapi.DeveloperMessageRole? Type1000 { get; set; } /// /// /// - public global::Vapi.AssistantMessageRole? Type1001 { get; set; } + public global::Vapi.ToolCallFunction? Type1001 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1002 { get; set; } + public global::Vapi.ToolCall? Type1002 { get; set; } /// /// /// - public global::Vapi.ToolMessageRole? Type1003 { get; set; } + public global::Vapi.AssistantMessageRole? Type1003 { get; set; } /// /// /// - public global::Vapi.FunctionCall? Type1004 { get; set; } + public global::System.Collections.Generic.IList? Type1004 { get; set; } /// /// /// - public global::Vapi.Chat? Type1005 { get; set; } + public global::Vapi.ToolMessageRole? Type1005 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1006 { get; set; } + public global::Vapi.FunctionCall? Type1006 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1007 { get; set; } + public global::Vapi.Chat? Type1007 { get; set; } /// /// /// - public global::Vapi.ChatCost? Type1008 { get; set; } + public global::System.Collections.Generic.IList>? Type1008 { get; set; } /// /// /// - public global::Vapi.TwilioSMSChatTransport? Type1009 { get; set; } + public global::Vapi.OneOf? Type1009 { get; set; } /// /// /// - public global::Vapi.TwilioSMSChatTransportConversationType? Type1010 { get; set; } + public global::Vapi.ChatCost? Type1010 { get; set; } /// /// /// - public global::Vapi.TwilioSMSChatTransportType? Type1011 { get; set; } + public global::Vapi.TwilioSMSChatTransport? Type1011 { get; set; } /// /// /// - public global::Vapi.CreateChatDTO? Type1012 { get; set; } + public global::Vapi.TwilioSMSChatTransportConversationType? Type1012 { get; set; } /// /// /// - public global::Vapi.GetChatPaginatedDTO? Type1013 { get; set; } + public global::Vapi.TwilioSMSChatTransportType? Type1013 { get; set; } /// /// /// - public global::Vapi.GetChatPaginatedDTOSortOrder? Type1014 { get; set; } + public global::Vapi.CreateChatDTO? Type1014 { get; set; } /// /// /// - public global::Vapi.GetChatPaginatedDTOSortBy? Type1015 { get; set; } + public global::Vapi.GetChatPaginatedDTO? Type1015 { get; set; } /// /// /// - public global::Vapi.ChatPaginatedResponse? Type1016 { get; set; } + public global::Vapi.GetChatPaginatedDTOSortOrder? Type1016 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1017 { get; set; } + public global::Vapi.GetChatPaginatedDTOSortBy? Type1017 { get; set; } /// /// /// - public global::Vapi.CreateChatStreamResponse? Type1018 { get; set; } + public global::Vapi.ChatPaginatedResponse? Type1018 { get; set; } /// /// /// - public global::Vapi.OpenAIResponsesRequest? Type1019 { get; set; } + public global::System.Collections.Generic.IList? Type1019 { get; set; } /// /// /// - public global::Vapi.ChatAssistantOverrides? Type1020 { get; set; } + public global::Vapi.CreateChatStreamResponse? Type1020 { get; set; } /// /// /// - public global::Vapi.CreateWebCustomerDTO? Type1021 { get; set; } + public global::Vapi.OpenAIResponsesRequest? Type1021 { get; set; } /// /// /// - public global::Vapi.CreateWebChatDTO? Type1022 { get; set; } + public global::Vapi.ChatAssistantOverrides? Type1022 { get; set; } /// /// /// - public global::Vapi.WebChat? Type1023 { get; set; } + public global::Vapi.CreateWebCustomerDTO? Type1023 { get; set; } /// /// /// - public global::Vapi.OpenAIWebChatRequest? Type1024 { get; set; } + public global::Vapi.CreateWebChatDTO? Type1024 { get; set; } /// /// /// - public global::Vapi.ExportChatDTO? Type1025 { get; set; } + public global::Vapi.WebChat? Type1025 { get; set; } /// /// /// - public global::Vapi.ExportChatDTOColumns? Type1026 { get; set; } + public global::Vapi.OpenAIWebChatRequest? Type1026 { get; set; } /// /// /// - public global::Vapi.ExportChatDTOFormat? Type1027 { get; set; } + public global::Vapi.ExportChatDTO? Type1027 { get; set; } /// /// /// - public global::Vapi.ExportChatDTOSortOrder? Type1028 { get; set; } + public global::Vapi.ExportChatDTOColumns? Type1028 { get; set; } /// /// /// - public global::Vapi.ExportChatDTOSortBy? Type1029 { get; set; } + public global::Vapi.ExportChatDTOFormat? Type1029 { get; set; } /// /// /// - public global::Vapi.ResponseOutputText? Type1030 { get; set; } + public global::Vapi.ExportChatDTOSortOrder? Type1030 { get; set; } /// /// /// - public global::Vapi.ResponseOutputTextType? Type1031 { get; set; } + public global::Vapi.ExportChatDTOSortBy? Type1031 { get; set; } /// /// /// - public global::Vapi.ResponseOutputMessage? Type1032 { get; set; } + public global::Vapi.ResponseOutputText? Type1032 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1033 { get; set; } + public global::Vapi.ResponseOutputTextType? Type1033 { get; set; } /// /// /// - public global::Vapi.ResponseOutputMessageRole? Type1034 { get; set; } + public global::Vapi.ResponseOutputMessage? Type1034 { get; set; } /// /// /// - public global::Vapi.ResponseOutputMessageStatus? Type1035 { get; set; } + public global::System.Collections.Generic.IList? Type1035 { get; set; } /// /// /// - public global::Vapi.ResponseOutputMessageType? Type1036 { get; set; } + public global::Vapi.ResponseOutputMessageRole? Type1036 { get; set; } /// /// /// - public global::Vapi.ResponseObject? Type1037 { get; set; } + public global::Vapi.ResponseOutputMessageStatus? Type1037 { get; set; } /// /// /// - public global::Vapi.ResponseObjectObject? Type1038 { get; set; } + public global::Vapi.ResponseOutputMessageType? Type1038 { get; set; } /// /// /// - public global::Vapi.ResponseObjectStatus? Type1039 { get; set; } + public global::Vapi.ResponseObject? Type1039 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1040 { get; set; } + public global::Vapi.ResponseObjectObject? Type1040 { get; set; } /// /// /// - public global::Vapi.ResponseTextDeltaEvent? Type1041 { get; set; } + public global::Vapi.ResponseObjectStatus? Type1041 { get; set; } /// /// /// - public global::Vapi.ResponseTextDeltaEventType? Type1042 { get; set; } + public global::System.Collections.Generic.IList? Type1042 { get; set; } /// /// /// - public global::Vapi.ResponseTextDoneEvent? Type1043 { get; set; } + public global::Vapi.ResponseTextDeltaEvent? Type1043 { get; set; } /// /// /// - public global::Vapi.ResponseTextDoneEventType? Type1044 { get; set; } + public global::Vapi.ResponseTextDeltaEventType? Type1044 { get; set; } /// /// /// - public global::Vapi.ResponseCompletedEvent? Type1045 { get; set; } + public global::Vapi.ResponseTextDoneEvent? Type1045 { get; set; } /// /// /// - public global::Vapi.ResponseCompletedEventType? Type1046 { get; set; } + public global::Vapi.ResponseTextDoneEventType? Type1046 { get; set; } /// /// /// - public global::Vapi.ResponseErrorEvent? Type1047 { get; set; } + public global::Vapi.ResponseCompletedEvent? Type1047 { get; set; } /// /// /// - public global::Vapi.ResponseErrorEventType? Type1048 { get; set; } + public global::Vapi.ResponseCompletedEventType? Type1048 { get; set; } /// /// /// - public global::Vapi.DialPlanEntry? Type1049 { get; set; } + public global::Vapi.ResponseErrorEvent? Type1049 { get; set; } /// /// /// - public global::Vapi.CreateCampaignDTO? Type1050 { get; set; } + public global::Vapi.ResponseErrorEventType? Type1050 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1051 { get; set; } + public global::Vapi.DialPlanEntry? Type1051 { get; set; } /// /// /// - public global::Vapi.Campaign? Type1052 { get; set; } + public global::Vapi.CreateCampaignDTO? Type1052 { get; set; } /// /// /// - public global::Vapi.CampaignStatus? Type1053 { get; set; } + public global::System.Collections.Generic.IList? Type1053 { get; set; } /// /// /// - public global::Vapi.CampaignEndedReason? Type1054 { get; set; } + public global::Vapi.Campaign? Type1054 { get; set; } /// /// /// - public global::Vapi.CampaignPaginatedResponse? Type1055 { get; set; } + public global::Vapi.CampaignStatus? Type1055 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1056 { get; set; } + public global::Vapi.CampaignEndedReason? Type1056 { get; set; } /// /// /// - public global::Vapi.UpdateCampaignDTO? Type1057 { get; set; } + public global::Vapi.CampaignPaginatedResponse? Type1057 { get; set; } /// /// /// - public global::Vapi.UpdateCampaignDTOStatus? Type1058 { get; set; } + public global::System.Collections.Generic.IList? Type1058 { get; set; } /// /// /// - public global::Vapi.RelayTargetAssistant? Type1059 { get; set; } + public global::Vapi.UpdateCampaignDTO? Type1059 { get; set; } /// /// /// - public global::Vapi.RelayTargetAssistantType? Type1060 { get; set; } + public global::Vapi.UpdateCampaignDTOStatus? Type1060 { get; set; } /// /// /// - public global::Vapi.RelayTargetSquad? Type1061 { get; set; } + public global::Vapi.RelayTargetAssistant? Type1061 { get; set; } /// /// /// - public global::Vapi.RelayTargetSquadType? Type1062 { get; set; } + public global::Vapi.RelayTargetAssistantType? Type1062 { get; set; } /// /// /// - public global::Vapi.RelayTargetOptions? Type1063 { get; set; } + public global::Vapi.RelayTargetSquad? Type1063 { get; set; } /// /// /// - public global::Vapi.RelayTargetOptionsType? Type1064 { get; set; } + public global::Vapi.RelayTargetSquadType? Type1064 { get; set; } /// /// /// - public global::Vapi.RelayCommandSay? Type1065 { get; set; } + public global::Vapi.RelayTargetOptions? Type1065 { get; set; } /// /// /// - public global::Vapi.RelayCommandSayType? Type1066 { get; set; } + public global::Vapi.RelayTargetOptionsType? Type1066 { get; set; } /// /// /// - public global::Vapi.RelayCommandNote? Type1067 { get; set; } + public global::Vapi.RelayCommandSay? Type1067 { get; set; } /// /// /// - public global::Vapi.RelayCommandNoteType? Type1068 { get; set; } + public global::Vapi.RelayCommandSayType? Type1068 { get; set; } /// /// /// - public global::Vapi.RelayCommandOptions? Type1069 { get; set; } + public global::Vapi.RelayCommandNote? Type1069 { get; set; } /// /// /// - public global::Vapi.RelayCommandOptionsType? Type1070 { get; set; } + public global::Vapi.RelayCommandNoteType? Type1070 { get; set; } /// /// /// - public global::Vapi.RelayRequest? Type1071 { get; set; } + public global::Vapi.RelayCommandOptions? Type1071 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1072 { get; set; } + public global::Vapi.RelayCommandOptionsType? Type1072 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1073 { get; set; } + public global::Vapi.RelayRequest? Type1073 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1074 { get; set; } + public global::Vapi.OneOf? Type1074 { get; set; } /// /// /// - public global::Vapi.RelayResponse? Type1075 { get; set; } + public global::System.Collections.Generic.IList>? Type1075 { get; set; } /// /// /// - public global::Vapi.RelayResponseStatus? Type1076 { get; set; } + public global::Vapi.OneOf? Type1076 { get; set; } /// /// /// - public global::Vapi.Session? Type1077 { get; set; } + public global::Vapi.RelayResponse? Type1077 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1078 { get; set; } + public global::Vapi.RelayResponseStatus? Type1078 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1079 { get; set; } + public global::Vapi.Session? Type1079 { get; set; } /// /// /// - public global::Vapi.SessionCost? Type1080 { get; set; } + public global::System.Collections.Generic.IList>? Type1080 { get; set; } /// /// /// - public global::Vapi.SessionStatus? Type1081 { get; set; } + public global::Vapi.OneOf? Type1081 { get; set; } /// /// /// - public global::Vapi.CreateSessionDTO? Type1082 { get; set; } + public global::Vapi.SessionCost? Type1082 { get; set; } /// /// /// - public global::Vapi.CreateSessionDTOStatus? Type1083 { get; set; } + public global::Vapi.SessionStatus? Type1083 { get; set; } /// /// /// - public global::Vapi.UpdateSessionDTO? Type1084 { get; set; } + public global::Vapi.CreateSessionDTO? Type1084 { get; set; } /// /// /// - public global::Vapi.UpdateSessionDTOStatus? Type1085 { get; set; } + public global::Vapi.CreateSessionDTOStatus? Type1085 { get; set; } /// /// /// - public global::Vapi.GetSessionPaginatedDTO? Type1086 { get; set; } + public global::Vapi.UpdateSessionDTO? Type1086 { get; set; } /// /// /// - public global::Vapi.GetSessionPaginatedDTOSortOrder? Type1087 { get; set; } + public global::Vapi.UpdateSessionDTOStatus? Type1087 { get; set; } /// /// /// - public global::Vapi.GetSessionPaginatedDTOSortBy? Type1088 { get; set; } + public global::Vapi.GetSessionPaginatedDTO? Type1088 { get; set; } /// /// /// - public global::Vapi.SessionPaginatedResponse? Type1089 { get; set; } + public global::Vapi.GetSessionPaginatedDTOSortOrder? Type1089 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1090 { get; set; } + public global::Vapi.GetSessionPaginatedDTOSortBy? Type1090 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTO? Type1091 { get; set; } + public global::Vapi.SessionPaginatedResponse? Type1091 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTOColumns? Type1092 { get; set; } + public global::System.Collections.Generic.IList? Type1092 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTOFormat? Type1093 { get; set; } + public global::Vapi.ExportSessionDTO? Type1093 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTOSortOrder? Type1094 { get; set; } + public global::Vapi.ExportSessionDTOColumns? Type1094 { get; set; } /// /// /// - public global::Vapi.ExportSessionDTOSortBy? Type1095 { get; set; } + public global::Vapi.ExportSessionDTOFormat? Type1095 { get; set; } /// /// /// - public global::Vapi.ByoPhoneNumber? Type1096 { get; set; } + public global::Vapi.ExportSessionDTOSortOrder? Type1096 { get; set; } /// /// /// - public global::Vapi.ByoPhoneNumberProvider? Type1097 { get; set; } + public global::Vapi.ExportSessionDTOSortBy? Type1097 { get; set; } /// /// /// - public global::Vapi.ByoPhoneNumberStatus? Type1098 { get; set; } + public global::Vapi.ByoPhoneNumber? Type1098 { get; set; } /// /// /// - public global::Vapi.TwilioPhoneNumber? Type1099 { get; set; } + public global::Vapi.ByoPhoneNumberProvider? Type1099 { get; set; } /// /// /// - public global::Vapi.TwilioPhoneNumberProvider? Type1100 { get; set; } + public global::Vapi.ByoPhoneNumberStatus? Type1100 { get; set; } /// /// /// - public global::Vapi.TwilioPhoneNumberStatus? Type1101 { get; set; } + public global::Vapi.TwilioPhoneNumber? Type1101 { get; set; } /// /// /// - public global::Vapi.VonagePhoneNumber? Type1102 { get; set; } + public global::Vapi.TwilioPhoneNumberProvider? Type1102 { get; set; } /// /// /// - public global::Vapi.VonagePhoneNumberProvider? Type1103 { get; set; } + public global::Vapi.TwilioPhoneNumberStatus? Type1103 { get; set; } /// /// /// - public global::Vapi.VonagePhoneNumberStatus? Type1104 { get; set; } + public global::Vapi.VonagePhoneNumber? Type1104 { get; set; } /// /// /// - public global::Vapi.SipAuthentication? Type1105 { get; set; } + public global::Vapi.VonagePhoneNumberProvider? Type1105 { get; set; } /// /// /// - public global::Vapi.VapiPhoneNumber? Type1106 { get; set; } + public global::Vapi.VonagePhoneNumberStatus? Type1106 { get; set; } /// /// /// - public global::Vapi.VapiPhoneNumberProvider? Type1107 { get; set; } + public global::Vapi.SipAuthentication? Type1107 { get; set; } /// /// /// - public global::Vapi.VapiPhoneNumberStatus? Type1108 { get; set; } + public global::Vapi.VapiPhoneNumber? Type1108 { get; set; } /// /// /// - public global::Vapi.TelnyxPhoneNumber? Type1109 { get; set; } + public global::Vapi.VapiPhoneNumberProvider? Type1109 { get; set; } /// /// /// - public global::Vapi.TelnyxPhoneNumberProvider? Type1110 { get; set; } + public global::Vapi.VapiPhoneNumberStatus? Type1110 { get; set; } /// /// /// - public global::Vapi.TelnyxPhoneNumberStatus? Type1111 { get; set; } + public global::Vapi.TelnyxPhoneNumber? Type1111 { get; set; } /// /// /// - public global::Vapi.CreateByoPhoneNumberDTO? Type1112 { get; set; } + public global::Vapi.TelnyxPhoneNumberProvider? Type1112 { get; set; } /// /// /// - public global::Vapi.CreateByoPhoneNumberDTOProvider? Type1113 { get; set; } + public global::Vapi.TelnyxPhoneNumberStatus? Type1113 { get; set; } /// /// /// - public global::Vapi.CreateTwilioPhoneNumberDTO? Type1114 { get; set; } + public global::Vapi.CreateByoPhoneNumberDTO? Type1114 { get; set; } /// /// /// - public global::Vapi.CreateTwilioPhoneNumberDTOProvider? Type1115 { get; set; } + public global::Vapi.CreateByoPhoneNumberDTOProvider? Type1115 { get; set; } /// /// /// - public global::Vapi.CreateVonagePhoneNumberDTO? Type1116 { get; set; } + public global::Vapi.CreateTwilioPhoneNumberDTO? Type1116 { get; set; } /// /// /// - public global::Vapi.CreateVonagePhoneNumberDTOProvider? Type1117 { get; set; } + public global::Vapi.CreateTwilioPhoneNumberDTOProvider? Type1117 { get; set; } /// /// /// - public global::Vapi.CreateVapiPhoneNumberDTO? Type1118 { get; set; } + public global::Vapi.CreateVonagePhoneNumberDTO? Type1118 { get; set; } /// /// /// - public global::Vapi.CreateVapiPhoneNumberDTOProvider? Type1119 { get; set; } + public global::Vapi.CreateVonagePhoneNumberDTOProvider? Type1119 { get; set; } /// /// /// - public global::Vapi.CreateTelnyxPhoneNumberDTO? Type1120 { get; set; } + public global::Vapi.CreateVapiPhoneNumberDTO? Type1120 { get; set; } /// /// /// - public global::Vapi.CreateTelnyxPhoneNumberDTOProvider? Type1121 { get; set; } + public global::Vapi.CreateVapiPhoneNumberDTOProvider? Type1121 { get; set; } /// /// /// - public global::Vapi.UpdateByoPhoneNumberDTO? Type1122 { get; set; } + public global::Vapi.CreateTelnyxPhoneNumberDTO? Type1122 { get; set; } /// /// /// - public global::Vapi.UpdateTwilioPhoneNumberDTO? Type1123 { get; set; } + public global::Vapi.CreateTelnyxPhoneNumberDTOProvider? Type1123 { get; set; } /// /// /// - public global::Vapi.UpdateVonagePhoneNumberDTO? Type1124 { get; set; } + public global::Vapi.UpdateByoPhoneNumberDTO? Type1124 { get; set; } /// /// /// - public global::Vapi.UpdateVapiPhoneNumberDTO? Type1125 { get; set; } + public global::Vapi.UpdateTwilioPhoneNumberDTO? Type1125 { get; set; } /// /// /// - public global::Vapi.UpdateTelnyxPhoneNumberDTO? Type1126 { get; set; } + public global::Vapi.UpdateVonagePhoneNumberDTO? Type1126 { get; set; } /// /// /// - public global::Vapi.ImportVonagePhoneNumberDTO? Type1127 { get; set; } + public global::Vapi.UpdateVapiPhoneNumberDTO? Type1127 { get; set; } /// /// /// - public global::Vapi.PhoneNumberPaginatedResponse? Type1128 { get; set; } + public global::Vapi.UpdateTelnyxPhoneNumberDTO? Type1128 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1129 { get; set; } + public global::Vapi.ImportVonagePhoneNumberDTO? Type1129 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1130 { get; set; } + public global::Vapi.PhoneNumberPaginatedResponse? Type1130 { get; set; } /// /// /// - public global::Vapi.ApiRequestTool? Type1131 { get; set; } + public global::System.Collections.Generic.IList>? Type1131 { get; set; } /// /// /// - public global::Vapi.ApiRequestToolType? Type1132 { get; set; } + public global::Vapi.OneOf? Type1132 { get; set; } /// /// /// - public global::Vapi.ApiRequestToolMethod? Type1133 { get; set; } + public global::Vapi.ApiRequestTool? Type1133 { get; set; } /// /// /// - public global::Vapi.CodeToolEnvironmentVariable? Type1134 { get; set; } + public global::Vapi.ApiRequestToolType? Type1134 { get; set; } /// /// /// - public global::Vapi.CodeTool? Type1135 { get; set; } + public global::Vapi.ApiRequestToolMethod? Type1135 { get; set; } /// /// /// - public global::Vapi.CodeToolType? Type1136 { get; set; } + public global::Vapi.CodeToolEnvironmentVariable? Type1136 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1137 { get; set; } + public global::Vapi.CodeTool? Type1137 { get; set; } /// /// /// - public global::Vapi.DtmfTool? Type1138 { get; set; } + public global::Vapi.CodeToolType? Type1138 { get; set; } /// /// /// - public global::Vapi.DtmfToolType? Type1139 { get; set; } + public global::System.Collections.Generic.IList? Type1139 { get; set; } /// /// /// - public global::Vapi.EndCallTool? Type1140 { get; set; } + public global::Vapi.DtmfTool? Type1140 { get; set; } /// /// /// - public global::Vapi.EndCallToolType? Type1141 { get; set; } + public global::Vapi.DtmfToolType? Type1141 { get; set; } /// /// /// - public global::Vapi.FunctionTool? Type1142 { get; set; } + public global::Vapi.EndCallTool? Type1142 { get; set; } /// /// /// - public global::Vapi.FunctionToolType? Type1143 { get; set; } + public global::Vapi.EndCallToolType? Type1143 { get; set; } /// /// /// - public global::Vapi.GhlTool? Type1144 { get; set; } + public global::Vapi.FunctionTool? Type1144 { get; set; } /// /// /// - public global::Vapi.GhlToolType? Type1145 { get; set; } + public global::Vapi.FunctionToolType? Type1145 { get; set; } /// /// /// - public global::Vapi.MakeTool? Type1146 { get; set; } + public global::Vapi.GhlTool? Type1146 { get; set; } /// /// /// - public global::Vapi.MakeToolType? Type1147 { get; set; } + public global::Vapi.GhlToolType? Type1147 { get; set; } /// /// /// - public global::Vapi.TransferCallTool? Type1148 { get; set; } + public global::Vapi.MakeTool? Type1148 { get; set; } /// /// /// - public global::Vapi.TransferCallToolType? Type1149 { get; set; } + public global::Vapi.MakeToolType? Type1149 { get; set; } /// /// /// - public global::Vapi.HandoffTool? Type1150 { get; set; } + public global::Vapi.TransferCallTool? Type1150 { get; set; } /// /// /// - public global::Vapi.HandoffToolType? Type1151 { get; set; } + public global::Vapi.TransferCallToolType? Type1151 { get; set; } /// /// /// - public global::Vapi.OutputTool? Type1152 { get; set; } + public global::Vapi.HandoffTool? Type1152 { get; set; } /// /// /// - public global::Vapi.OutputToolType? Type1153 { get; set; } + public global::Vapi.HandoffToolType? Type1153 { get; set; } /// /// /// - public global::Vapi.BashTool? Type1154 { get; set; } + public global::Vapi.OutputTool? Type1154 { get; set; } /// /// /// - public global::Vapi.BashToolType? Type1155 { get; set; } + public global::Vapi.OutputToolType? Type1155 { get; set; } /// /// /// - public global::Vapi.BashToolSubType? Type1156 { get; set; } + public global::Vapi.BashTool? Type1156 { get; set; } /// /// /// - public global::Vapi.BashToolName? Type1157 { get; set; } + public global::Vapi.BashToolType? Type1157 { get; set; } /// /// /// - public global::Vapi.ComputerTool? Type1158 { get; set; } + public global::Vapi.BashToolSubType? Type1158 { get; set; } /// /// /// - public global::Vapi.ComputerToolType? Type1159 { get; set; } + public global::Vapi.BashToolName? Type1159 { get; set; } /// /// /// - public global::Vapi.ComputerToolSubType? Type1160 { get; set; } + public global::Vapi.ComputerTool? Type1160 { get; set; } /// /// /// - public global::Vapi.ComputerToolName? Type1161 { get; set; } + public global::Vapi.ComputerToolType? Type1161 { get; set; } /// /// /// - public global::Vapi.TextEditorTool? Type1162 { get; set; } + public global::Vapi.ComputerToolSubType? Type1162 { get; set; } /// /// /// - public global::Vapi.TextEditorToolType? Type1163 { get; set; } + public global::Vapi.ComputerToolName? Type1163 { get; set; } /// /// /// - public global::Vapi.TextEditorToolSubType? Type1164 { get; set; } + public global::Vapi.TextEditorTool? Type1164 { get; set; } /// /// /// - public global::Vapi.TextEditorToolName? Type1165 { get; set; } + public global::Vapi.TextEditorToolType? Type1165 { get; set; } /// /// /// - public global::Vapi.QueryTool? Type1166 { get; set; } + public global::Vapi.TextEditorToolSubType? Type1166 { get; set; } /// /// /// - public global::Vapi.QueryToolType? Type1167 { get; set; } + public global::Vapi.TextEditorToolName? Type1167 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventTool? Type1168 { get; set; } + public global::Vapi.QueryTool? Type1168 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolType? Type1169 { get; set; } + public global::Vapi.QueryToolType? Type1169 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendTool? Type1170 { get; set; } + public global::Vapi.GoogleCalendarCreateEventTool? Type1170 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolType? Type1171 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolType? Type1171 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCheckAvailabilityTool? Type1172 { get; set; } + public global::Vapi.GoogleSheetsRowAppendTool? Type1172 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCheckAvailabilityToolType? Type1173 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolType? Type1173 { get; set; } /// /// /// - public global::Vapi.SlackSendMessageTool? Type1174 { get; set; } + public global::Vapi.GoogleCalendarCheckAvailabilityTool? Type1174 { get; set; } /// /// /// - public global::Vapi.SlackSendMessageToolType? Type1175 { get; set; } + public global::Vapi.GoogleCalendarCheckAvailabilityToolType? Type1175 { get; set; } /// /// /// - public global::Vapi.SmsTool? Type1176 { get; set; } + public global::Vapi.SlackSendMessageTool? Type1176 { get; set; } /// /// /// - public global::Vapi.SmsToolType? Type1177 { get; set; } + public global::Vapi.SlackSendMessageToolType? Type1177 { get; set; } /// /// /// - public global::Vapi.McpTool? Type1178 { get; set; } + public global::Vapi.SmsTool? Type1178 { get; set; } /// /// /// - public global::Vapi.McpToolType? Type1179 { get; set; } + public global::Vapi.SmsToolType? Type1179 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityTool? Type1180 { get; set; } + public global::Vapi.McpTool? Type1180 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolType? Type1181 { get; set; } + public global::Vapi.McpToolType? Type1181 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateTool? Type1182 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityTool? Type1182 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolType? Type1183 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolType? Type1183 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateTool? Type1184 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateTool? Type1184 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolType? Type1185 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolType? Type1185 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetTool? Type1186 { get; set; } + public global::Vapi.GoHighLevelContactCreateTool? Type1186 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolType? Type1187 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolType? Type1187 { get; set; } /// /// /// - public global::Vapi.SipRequestTool? Type1188 { get; set; } + public global::Vapi.GoHighLevelContactGetTool? Type1188 { get; set; } /// /// /// - public global::Vapi.SipRequestToolType? Type1189 { get; set; } + public global::Vapi.GoHighLevelContactGetToolType? Type1189 { get; set; } /// /// /// - public global::Vapi.SipRequestToolVerb? Type1190 { get; set; } + public global::Vapi.SipRequestTool? Type1190 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1191 { get; set; } + public global::Vapi.SipRequestToolType? Type1191 { get; set; } /// /// /// - public global::Vapi.VoicemailTool? Type1192 { get; set; } + public global::Vapi.SipRequestToolVerb? Type1192 { get; set; } /// /// /// - public global::Vapi.VoicemailToolType? Type1193 { get; set; } + public global::Vapi.OneOf? Type1193 { get; set; } /// /// /// - public global::Vapi.CreateApiRequestToolDTOType? Type1194 { get; set; } + public global::Vapi.VoicemailTool? Type1194 { get; set; } /// /// /// - public global::Vapi.CreateApiRequestToolDTOMethod? Type1195 { get; set; } + public global::Vapi.VoicemailToolType? Type1195 { get; set; } /// /// /// - public global::Vapi.CreateCodeToolDTOType? Type1196 { get; set; } + public global::Vapi.CreateApiRequestToolDTOType? Type1196 { get; set; } /// /// /// - public global::Vapi.CreateOutputToolDTO? Type1197 { get; set; } + public global::Vapi.CreateApiRequestToolDTOMethod? Type1197 { get; set; } /// /// /// - public global::Vapi.CreateOutputToolDTOType? Type1198 { get; set; } + public global::Vapi.CreateCodeToolDTOType? Type1198 { get; set; } /// /// /// - public global::Vapi.CreateBashToolDTOType? Type1199 { get; set; } + public global::Vapi.CreateOutputToolDTO? Type1199 { get; set; } /// /// /// - public global::Vapi.CreateBashToolDTOSubType? Type1200 { get; set; } + public global::Vapi.CreateOutputToolDTOType? Type1200 { get; set; } /// /// /// - public global::Vapi.CreateBashToolDTOName? Type1201 { get; set; } + public global::Vapi.CreateBashToolDTOType? Type1201 { get; set; } /// /// /// - public global::Vapi.CreateComputerToolDTOType? Type1202 { get; set; } + public global::Vapi.CreateBashToolDTOSubType? Type1202 { get; set; } /// /// /// - public global::Vapi.CreateComputerToolDTOSubType? Type1203 { get; set; } + public global::Vapi.CreateBashToolDTOName? Type1203 { get; set; } /// /// /// - public global::Vapi.CreateComputerToolDTOName? Type1204 { get; set; } + public global::Vapi.CreateComputerToolDTOType? Type1204 { get; set; } /// /// /// - public global::Vapi.CreateTextEditorToolDTOType? Type1205 { get; set; } + public global::Vapi.CreateComputerToolDTOSubType? Type1205 { get; set; } /// /// /// - public global::Vapi.CreateTextEditorToolDTOSubType? Type1206 { get; set; } + public global::Vapi.CreateComputerToolDTOName? Type1206 { get; set; } /// /// /// - public global::Vapi.CreateTextEditorToolDTOName? Type1207 { get; set; } + public global::Vapi.CreateTextEditorToolDTOType? Type1207 { get; set; } /// /// /// - public global::Vapi.CreateSmsToolDTOType? Type1208 { get; set; } + public global::Vapi.CreateTextEditorToolDTOSubType? Type1208 { get; set; } /// /// /// - public global::Vapi.CreateSipRequestToolDTOType? Type1209 { get; set; } + public global::Vapi.CreateTextEditorToolDTOName? Type1209 { get; set; } /// /// /// - public global::Vapi.CreateSipRequestToolDTOVerb? Type1210 { get; set; } + public global::Vapi.CreateSmsToolDTOType? Type1210 { get; set; } /// /// /// - public global::Vapi.UpdateApiRequestToolDTO? Type1211 { get; set; } + public global::Vapi.CreateSipRequestToolDTOType? Type1211 { get; set; } /// /// /// - public global::Vapi.UpdateApiRequestToolDTOMethod? Type1212 { get; set; } + public global::Vapi.CreateSipRequestToolDTOVerb? Type1212 { get; set; } /// /// /// - public global::Vapi.UpdateCodeToolDTO? Type1213 { get; set; } + public global::Vapi.UpdateApiRequestToolDTO? Type1213 { get; set; } /// /// /// - public global::Vapi.UpdateDtmfToolDTO? Type1214 { get; set; } + public global::Vapi.UpdateApiRequestToolDTOMethod? Type1214 { get; set; } /// /// /// - public global::Vapi.UpdateEndCallToolDTO? Type1215 { get; set; } + public global::Vapi.UpdateCodeToolDTO? Type1215 { get; set; } /// /// /// - public global::Vapi.UpdateFunctionToolDTO? Type1216 { get; set; } + public global::Vapi.UpdateDtmfToolDTO? Type1216 { get; set; } /// /// /// - public global::Vapi.UpdateGhlToolDTO? Type1217 { get; set; } + public global::Vapi.UpdateEndCallToolDTO? Type1217 { get; set; } /// /// /// - public global::Vapi.UpdateMakeToolDTO? Type1218 { get; set; } + public global::Vapi.UpdateFunctionToolDTO? Type1218 { get; set; } /// /// /// - public global::Vapi.UpdateHandoffToolDTO? Type1219 { get; set; } + public global::Vapi.UpdateGhlToolDTO? Type1219 { get; set; } /// /// /// - public global::Vapi.UpdateTransferCallToolDTO? Type1220 { get; set; } + public global::Vapi.UpdateMakeToolDTO? Type1220 { get; set; } /// /// /// - public global::Vapi.UpdateOutputToolDTO? Type1221 { get; set; } + public global::Vapi.UpdateHandoffToolDTO? Type1221 { get; set; } /// /// /// - public global::Vapi.UpdateBashToolDTO? Type1222 { get; set; } + public global::Vapi.UpdateTransferCallToolDTO? Type1222 { get; set; } /// /// /// - public global::Vapi.UpdateBashToolDTOSubType? Type1223 { get; set; } + public global::Vapi.UpdateOutputToolDTO? Type1223 { get; set; } /// /// /// - public global::Vapi.UpdateBashToolDTOName? Type1224 { get; set; } + public global::Vapi.UpdateBashToolDTO? Type1224 { get; set; } /// /// /// - public global::Vapi.UpdateComputerToolDTO? Type1225 { get; set; } + public global::Vapi.UpdateBashToolDTOSubType? Type1225 { get; set; } /// /// /// - public global::Vapi.UpdateComputerToolDTOSubType? Type1226 { get; set; } + public global::Vapi.UpdateBashToolDTOName? Type1226 { get; set; } /// /// /// - public global::Vapi.UpdateComputerToolDTOName? Type1227 { get; set; } + public global::Vapi.UpdateComputerToolDTO? Type1227 { get; set; } /// /// /// - public global::Vapi.UpdateTextEditorToolDTO? Type1228 { get; set; } + public global::Vapi.UpdateComputerToolDTOSubType? Type1228 { get; set; } /// /// /// - public global::Vapi.UpdateTextEditorToolDTOSubType? Type1229 { get; set; } + public global::Vapi.UpdateComputerToolDTOName? Type1229 { get; set; } /// /// /// - public global::Vapi.UpdateTextEditorToolDTOName? Type1230 { get; set; } + public global::Vapi.UpdateTextEditorToolDTO? Type1230 { get; set; } /// /// /// - public global::Vapi.UpdateQueryToolDTO? Type1231 { get; set; } + public global::Vapi.UpdateTextEditorToolDTOSubType? Type1231 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarCreateEventToolDTO? Type1232 { get; set; } + public global::Vapi.UpdateTextEditorToolDTOName? Type1232 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleSheetsRowAppendToolDTO? Type1233 { get; set; } + public global::Vapi.UpdateQueryToolDTO? Type1233 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarCheckAvailabilityToolDTO? Type1234 { get; set; } + public global::Vapi.UpdateGoogleCalendarCreateEventToolDTO? Type1234 { get; set; } /// /// /// - public global::Vapi.UpdateSlackSendMessageToolDTO? Type1235 { get; set; } + public global::Vapi.UpdateGoogleSheetsRowAppendToolDTO? Type1235 { get; set; } /// /// /// - public global::Vapi.UpdateSmsToolDTO? Type1236 { get; set; } + public global::Vapi.UpdateGoogleCalendarCheckAvailabilityToolDTO? Type1236 { get; set; } /// /// /// - public global::Vapi.UpdateMcpToolDTO? Type1237 { get; set; } + public global::Vapi.UpdateSlackSendMessageToolDTO? Type1237 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelCalendarAvailabilityToolDTO? Type1238 { get; set; } + public global::Vapi.UpdateSmsToolDTO? Type1238 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelCalendarEventCreateToolDTO? Type1239 { get; set; } + public global::Vapi.UpdateMcpToolDTO? Type1239 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelContactCreateToolDTO? Type1240 { get; set; } + public global::Vapi.UpdateGoHighLevelCalendarAvailabilityToolDTO? Type1240 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelContactGetToolDTO? Type1241 { get; set; } + public global::Vapi.UpdateGoHighLevelCalendarEventCreateToolDTO? Type1241 { get; set; } /// /// /// - public global::Vapi.UpdateSipRequestToolDTO? Type1242 { get; set; } + public global::Vapi.UpdateGoHighLevelContactCreateToolDTO? Type1242 { get; set; } /// /// /// - public global::Vapi.UpdateSipRequestToolDTOVerb? Type1243 { get; set; } + public global::Vapi.UpdateGoHighLevelContactGetToolDTO? Type1243 { get; set; } /// /// /// - public global::Vapi.UpdateVoicemailToolDTO? Type1244 { get; set; } + public global::Vapi.UpdateSipRequestToolDTO? Type1244 { get; set; } /// /// /// - public global::Vapi.CreateFileDTO? Type1245 { get; set; } + public global::Vapi.UpdateSipRequestToolDTOVerb? Type1245 { get; set; } /// /// /// - public global::Vapi.File? Type1246 { get; set; } + public global::Vapi.UpdateVoicemailToolDTO? Type1246 { get; set; } /// /// /// - public global::Vapi.FileObject? Type1247 { get; set; } + public global::Vapi.CreateFileDTO? Type1247 { get; set; } /// /// /// - public global::Vapi.FileStatus? Type1248 { get; set; } + public global::Vapi.File? Type1248 { get; set; } /// /// /// - public global::Vapi.UpdateFileDTO? Type1249 { get; set; } + public global::Vapi.FileObject? Type1249 { get; set; } /// /// /// - public global::Vapi.CustomKnowledgeBase? Type1250 { get; set; } + public global::Vapi.FileStatus? Type1250 { get; set; } /// /// /// - public global::Vapi.CustomKnowledgeBaseProvider? Type1251 { get; set; } + public global::Vapi.UpdateFileDTO? Type1251 { get; set; } /// /// /// - public global::Vapi.UpdateCustomKnowledgeBaseDTO? Type1252 { get; set; } + public global::Vapi.CustomKnowledgeBase? Type1252 { get; set; } /// /// /// - public global::Vapi.StructuredOutput? Type1253 { get; set; } + public global::Vapi.CustomKnowledgeBaseProvider? Type1253 { get; set; } /// /// /// - public global::Vapi.StructuredOutputType? Type1254 { get; set; } + public global::Vapi.UpdateCustomKnowledgeBaseDTO? Type1254 { get; set; } /// /// /// - public global::Vapi.StructuredOutputPaginatedResponse? Type1255 { get; set; } + public global::Vapi.StructuredOutput? Type1255 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1256 { get; set; } + public global::Vapi.StructuredOutputType? Type1256 { get; set; } /// /// /// - public global::Vapi.UpdateStructuredOutputDTO? Type1257 { get; set; } + public global::Vapi.StructuredOutputPaginatedResponse? Type1257 { get; set; } /// /// /// - public global::Vapi.UpdateStructuredOutputDTOType? Type1258 { get; set; } + public global::System.Collections.Generic.IList? Type1258 { get; set; } /// /// /// - public global::Vapi.StructuredOutputRunDTO? Type1259 { get; set; } + public global::Vapi.UpdateStructuredOutputDTO? Type1259 { get; set; } /// /// /// - public global::Vapi.TesterPlan? Type1260 { get; set; } + public global::Vapi.UpdateStructuredOutputDTOType? Type1260 { get; set; } /// /// /// - public global::Vapi.TestSuitePhoneNumber? Type1261 { get; set; } + public global::Vapi.StructuredOutputRunDTO? Type1261 { get; set; } /// /// /// - public global::Vapi.TestSuitePhoneNumberProvider? Type1262 { get; set; } + public global::Vapi.TesterPlan? Type1262 { get; set; } /// /// /// - public global::Vapi.TargetPlan? Type1263 { get; set; } + public global::Vapi.TestSuitePhoneNumber? Type1263 { get; set; } /// /// /// - public global::Vapi.TestSuite? Type1264 { get; set; } + public global::Vapi.TestSuitePhoneNumberProvider? Type1264 { get; set; } /// /// /// - public global::Vapi.TestSuitesPaginatedResponse? Type1265 { get; set; } + public global::Vapi.TargetPlan? Type1265 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1266 { get; set; } + public global::Vapi.TestSuite? Type1266 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteDto? Type1267 { get; set; } + public global::Vapi.TestSuitesPaginatedResponse? Type1267 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteDto? Type1268 { get; set; } + public global::System.Collections.Generic.IList? Type1268 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestVoice? Type1269 { get; set; } + public global::Vapi.CreateTestSuiteDto? Type1269 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1270 { get; set; } + public global::Vapi.UpdateTestSuiteDto? Type1270 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestScorerAI? Type1271 { get; set; } + public global::Vapi.TestSuiteTestVoice? Type1271 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestVoiceType? Type1272 { get; set; } + public global::System.Collections.Generic.IList? Type1272 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestChat? Type1273 { get; set; } + public global::Vapi.TestSuiteTestScorerAI? Type1273 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestChatType? Type1274 { get; set; } + public global::Vapi.TestSuiteTestVoiceType? Type1274 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteTestVoiceDto? Type1275 { get; set; } + public global::Vapi.TestSuiteTestChat? Type1275 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteTestVoiceDtoType? Type1276 { get; set; } + public global::Vapi.TestSuiteTestChatType? Type1276 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteTestChatDto? Type1277 { get; set; } + public global::Vapi.CreateTestSuiteTestVoiceDto? Type1277 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteTestChatDtoType? Type1278 { get; set; } + public global::Vapi.CreateTestSuiteTestVoiceDtoType? Type1278 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteTestVoiceDto? Type1279 { get; set; } + public global::Vapi.CreateTestSuiteTestChatDto? Type1279 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteTestVoiceDtoType? Type1280 { get; set; } + public global::Vapi.CreateTestSuiteTestChatDtoType? Type1280 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteTestChatDto? Type1281 { get; set; } + public global::Vapi.UpdateTestSuiteTestVoiceDto? Type1281 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteTestChatDtoType? Type1282 { get; set; } + public global::Vapi.UpdateTestSuiteTestVoiceDtoType? Type1282 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestScorerAIType? Type1283 { get; set; } + public global::Vapi.UpdateTestSuiteTestChatDto? Type1283 { get; set; } /// /// /// - public global::Vapi.TestSuiteTestsPaginatedResponse? Type1284 { get; set; } + public global::Vapi.UpdateTestSuiteTestChatDtoType? Type1284 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1285 { get; set; } + public global::Vapi.TestSuiteTestScorerAIType? Type1285 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1286 { get; set; } + public global::Vapi.TestSuiteTestsPaginatedResponse? Type1286 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunScorerAI? Type1287 { get; set; } + public global::System.Collections.Generic.IList>? Type1287 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunScorerAIType? Type1288 { get; set; } + public global::Vapi.OneOf? Type1288 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunScorerAIResult? Type1289 { get; set; } + public global::Vapi.TestSuiteRunScorerAI? Type1289 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunTestAttemptCall? Type1290 { get; set; } + public global::Vapi.TestSuiteRunScorerAIType? Type1290 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunTestAttemptMetadata? Type1291 { get; set; } + public global::Vapi.TestSuiteRunScorerAIResult? Type1291 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunTestAttempt? Type1292 { get; set; } + public global::Vapi.TestSuiteRunTestAttemptCall? Type1292 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1293 { get; set; } + public global::Vapi.TestSuiteRunTestAttemptMetadata? Type1293 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunTestResult? Type1294 { get; set; } + public global::Vapi.TestSuiteRunTestAttempt? Type1294 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1295 { get; set; } + public global::System.Collections.Generic.IList? Type1295 { get; set; } /// /// /// - public global::Vapi.TestSuiteRun? Type1296 { get; set; } + public global::Vapi.TestSuiteRunTestResult? Type1296 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunStatus? Type1297 { get; set; } + public global::System.Collections.Generic.IList? Type1297 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1298 { get; set; } + public global::Vapi.TestSuiteRun? Type1298 { get; set; } /// /// /// - public global::Vapi.TestSuiteRunsPaginatedResponse? Type1299 { get; set; } + public global::Vapi.TestSuiteRunStatus? Type1299 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1300 { get; set; } + public global::System.Collections.Generic.IList? Type1300 { get; set; } /// /// /// - public global::Vapi.CreateTestSuiteRunDto? Type1301 { get; set; } + public global::Vapi.TestSuiteRunsPaginatedResponse? Type1301 { get; set; } /// /// /// - public global::Vapi.UpdateTestSuiteRunDto? Type1302 { get; set; } + public global::System.Collections.Generic.IList? Type1302 { get; set; } /// /// /// - public global::Vapi.CreatePersonalityDTO? Type1303 { get; set; } + public global::Vapi.CreateTestSuiteRunDto? Type1303 { get; set; } /// /// /// - public global::Vapi.Personality? Type1304 { get; set; } + public global::Vapi.UpdateTestSuiteRunDto? Type1304 { get; set; } /// /// /// - public global::System.Guid? Type1305 { get; set; } + public global::Vapi.CreatePersonalityDTO? Type1305 { get; set; } /// /// /// - public global::Vapi.UpdatePersonalityDTO? Type1306 { get; set; } + public global::Vapi.Personality? Type1306 { get; set; } /// /// /// - public global::Vapi.SimulationHookInclude? Type1307 { get; set; } + public global::System.Guid? Type1307 { get; set; } /// /// /// - public global::Vapi.SimulationHookWebhookAction? Type1308 { get; set; } + public global::Vapi.UpdatePersonalityDTO? Type1308 { get; set; } /// /// /// - public global::Vapi.SimulationHookWebhookActionType? Type1309 { get; set; } + public global::Vapi.SimulationHookInclude? Type1309 { get; set; } /// /// /// - public global::Vapi.SimulationHookCallStarted? Type1310 { get; set; } + public global::Vapi.SimulationHookWebhookAction? Type1310 { get; set; } /// /// /// - public global::Vapi.SimulationHookCallStartedOn? Type1311 { get; set; } + public global::Vapi.SimulationHookWebhookActionType? Type1311 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1312 { get; set; } + public global::Vapi.SimulationHookCallStarted? Type1312 { get; set; } /// /// /// - public global::Vapi.SimulationHookCallEnded? Type1313 { get; set; } + public global::Vapi.SimulationHookCallStartedOn? Type1313 { get; set; } /// /// /// - public global::Vapi.SimulationHookCallEndedOn? Type1314 { get; set; } + public global::System.Collections.Generic.IList? Type1314 { get; set; } /// /// /// - public global::Vapi.EvaluationPlanItem? Type1315 { get; set; } + public global::Vapi.SimulationHookCallEnded? Type1315 { get; set; } /// /// /// - public global::Vapi.EvaluationPlanItemComparator? Type1316 { get; set; } + public global::Vapi.SimulationHookCallEndedOn? Type1316 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1317 { get; set; } + public global::Vapi.EvaluationPlanItem? Type1317 { get; set; } /// /// /// - public global::Vapi.ScenarioToolMock? Type1318 { get; set; } + public global::Vapi.EvaluationPlanItemComparator? Type1318 { get; set; } /// /// /// - public global::Vapi.CreateScenarioDTO? Type1319 { get; set; } + public global::Vapi.OneOf? Type1319 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1320 { get; set; } + public global::Vapi.ScenarioToolMock? Type1320 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1321 { get; set; } + public global::Vapi.CreateScenarioDTO? Type1321 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1322 { get; set; } + public global::System.Collections.Generic.IList? Type1322 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1323 { get; set; } + public global::System.Collections.Generic.IList>? Type1323 { get; set; } /// /// /// - public global::Vapi.Scenario? Type1324 { get; set; } + public global::Vapi.OneOf? Type1324 { get; set; } /// /// /// - public global::Vapi.UpdateScenarioDTO? Type1325 { get; set; } + public global::System.Collections.Generic.IList? Type1325 { get; set; } /// /// /// - public global::Vapi.SimulationRunSimulationEntry? Type1326 { get; set; } + public global::Vapi.Scenario? Type1326 { get; set; } /// /// /// - public global::Vapi.SimulationRunSimulationEntryType? Type1327 { get; set; } + public global::Vapi.UpdateScenarioDTO? Type1327 { get; set; } /// /// /// - public global::Vapi.SimulationRunSuiteEntry? Type1328 { get; set; } + public global::Vapi.SimulationRunSimulationEntry? Type1328 { get; set; } /// /// /// - public global::Vapi.SimulationRunSuiteEntryType? Type1329 { get; set; } + public global::Vapi.SimulationRunSimulationEntryType? Type1329 { get; set; } /// /// /// - public global::Vapi.SimulationRunTargetAssistant? Type1330 { get; set; } + public global::Vapi.SimulationRunSuiteEntry? Type1330 { get; set; } /// /// /// - public global::Vapi.SimulationRunTargetAssistantType? Type1331 { get; set; } + public global::Vapi.SimulationRunSuiteEntryType? Type1331 { get; set; } /// /// /// - public global::Vapi.SimulationRunTargetSquad? Type1332 { get; set; } + public global::Vapi.SimulationRunTargetAssistant? Type1332 { get; set; } /// /// /// - public global::Vapi.SimulationRunTargetSquadType? Type1333 { get; set; } + public global::Vapi.SimulationRunTargetAssistantType? Type1333 { get; set; } /// /// /// - public global::Vapi.SimulationRunTransportConfiguration? Type1334 { get; set; } + public global::Vapi.SimulationRunTargetSquad? Type1334 { get; set; } /// /// /// - public global::Vapi.SimulationRunTransportConfigurationProvider? Type1335 { get; set; } + public global::Vapi.SimulationRunTargetSquadType? Type1335 { get; set; } /// /// /// - public global::Vapi.CreateSimulationRunDTO? Type1336 { get; set; } + public global::Vapi.SimulationRunTransportConfiguration? Type1336 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1337 { get; set; } + public global::Vapi.SimulationRunTransportConfigurationProvider? Type1337 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1338 { get; set; } + public global::Vapi.CreateSimulationRunDTO? Type1338 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1339 { get; set; } + public global::System.Collections.Generic.IList>? Type1339 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemCounts? Type1340 { get; set; } + public global::Vapi.OneOf? Type1340 { get; set; } /// /// /// - public global::Vapi.SimulationRun? Type1341 { get; set; } + public global::Vapi.OneOf? Type1341 { get; set; } /// /// /// - public global::Vapi.SimulationRunStatus? Type1342 { get; set; } + public global::Vapi.SimulationRunItemCounts? Type1342 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemCallMonitor? Type1343 { get; set; } + public global::Vapi.SimulationRun? Type1343 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemCallMetadata? Type1344 { get; set; } + public global::Vapi.SimulationRunStatus? Type1344 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemMetadata? Type1345 { get; set; } + public global::Vapi.SimulationRunItemCallMonitor? Type1345 { get; set; } /// /// /// - public global::Vapi.StructuredOutputEvaluationResult? Type1346 { get; set; } + public global::Vapi.SimulationRunItemCallMetadata? Type1346 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1347 { get; set; } + public global::Vapi.SimulationRunItemMetadata? Type1347 { get; set; } /// /// /// - public global::Vapi.StructuredOutputEvaluationResultComparator? Type1348 { get; set; } + public global::Vapi.StructuredOutputEvaluationResult? Type1348 { get; set; } /// /// /// - public global::Vapi.LatencyMetrics? Type1349 { get; set; } + public global::Vapi.OneOf? Type1349 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemResults? Type1350 { get; set; } + public global::Vapi.StructuredOutputEvaluationResultComparator? Type1350 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1351 { get; set; } + public global::Vapi.LatencyMetrics? Type1351 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemImprovementSuggestion? Type1352 { get; set; } + public global::Vapi.SimulationRunItemResults? Type1352 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemImprovements? Type1353 { get; set; } + public global::System.Collections.Generic.IList? Type1353 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1354 { get; set; } + public global::Vapi.SimulationRunItemImprovementSuggestion? Type1354 { get; set; } /// /// /// - public global::Vapi.SimulationRunConfiguration? Type1355 { get; set; } + public global::Vapi.SimulationRunItemImprovements? Type1355 { get; set; } /// /// /// - public global::Vapi.SimulationRunItem? Type1356 { get; set; } + public global::System.Collections.Generic.IList? Type1356 { get; set; } /// /// /// - public global::Vapi.SimulationRunItemStatus? Type1357 { get; set; } + public global::Vapi.SimulationRunConfiguration? Type1357 { get; set; } /// /// /// - public global::Vapi.CreateSimulationSuiteDTO? Type1358 { get; set; } + public global::Vapi.SimulationRunItem? Type1358 { get; set; } /// /// /// - public global::Vapi.SimulationSuite? Type1359 { get; set; } + public global::Vapi.SimulationRunItemStatus? Type1359 { get; set; } /// /// /// - public global::Vapi.UpdateSimulationSuiteDTO? Type1360 { get; set; } + public global::Vapi.CreateSimulationSuiteDTO? Type1360 { get; set; } /// /// /// - public global::Vapi.GenerateScenariosDTO? Type1361 { get; set; } + public global::Vapi.SimulationSuite? Type1361 { get; set; } /// /// /// - public global::Vapi.GeneratedScenario? Type1362 { get; set; } + public global::Vapi.UpdateSimulationSuiteDTO? Type1362 { get; set; } /// /// /// - public global::Vapi.GeneratedScenarioCategory? Type1363 { get; set; } + public global::Vapi.GenerateScenariosDTO? Type1363 { get; set; } /// /// /// - public global::Vapi.GenerateScenariosResponse? Type1364 { get; set; } + public global::Vapi.GeneratedScenario? Type1364 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1365 { get; set; } + public global::Vapi.GeneratedScenarioCategory? Type1365 { get; set; } /// /// /// - public global::Vapi.CreateSimulationDTO? Type1366 { get; set; } + public global::Vapi.GenerateScenariosResponse? Type1366 { get; set; } /// /// /// - public global::Vapi.Simulation? Type1367 { get; set; } + public global::System.Collections.Generic.IList? Type1367 { get; set; } /// /// /// - public global::Vapi.UpdateSimulationDTO? Type1368 { get; set; } + public global::Vapi.CreateSimulationDTO? Type1368 { get; set; } /// /// /// - public global::Vapi.SimulationConcurrencyResponse? Type1369 { get; set; } + public global::Vapi.Simulation? Type1369 { get; set; } /// /// /// - public global::Vapi.BarInsightMetadata? Type1370 { get; set; } + public global::Vapi.UpdateSimulationDTO? Type1370 { get; set; } /// /// /// - public global::Vapi.InsightTimeRangeWithStep? Type1371 { get; set; } + public global::Vapi.SimulationConcurrencyResponse? Type1371 { get; set; } /// /// /// - public global::Vapi.InsightTimeRangeWithStepStep? Type1372 { get; set; } + public global::Vapi.BarInsightMetadata? Type1372 { get; set; } /// /// /// - public global::Vapi.BarInsight? Type1373 { get; set; } + public global::Vapi.InsightTimeRangeWithStep? Type1373 { get; set; } /// /// /// - public global::Vapi.BarInsightType? Type1374 { get; set; } + public global::Vapi.InsightTimeRangeWithStepStep? Type1374 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1375 { get; set; } + public global::Vapi.BarInsight? Type1375 { get; set; } /// /// /// - public global::Vapi.InsightFormula? Type1376 { get; set; } + public global::Vapi.BarInsightType? Type1376 { get; set; } /// /// /// - public global::Vapi.BarInsightGroupBy? Type1377 { get; set; } + public global::System.Collections.Generic.IList? Type1377 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumn? Type1378 { get; set; } + public global::Vapi.InsightFormula? Type1378 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumn? Type1379 { get; set; } + public global::Vapi.BarInsightGroupBy? Type1379 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumn? Type1380 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumn? Type1380 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTable? Type1381 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumn? Type1381 { get; set; } /// /// /// - public global::Vapi.InsightTimeRange? Type1382 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumn? Type1382 { get; set; } /// /// /// - public global::Vapi.PieInsight? Type1383 { get; set; } + public global::Vapi.JSONQueryOnEventsTable? Type1383 { get; set; } /// /// /// - public global::Vapi.PieInsightType? Type1384 { get; set; } + public global::Vapi.InsightTimeRange? Type1384 { get; set; } /// /// /// - public global::Vapi.PieInsightGroupBy? Type1385 { get; set; } + public global::Vapi.PieInsight? Type1385 { get; set; } /// /// /// - public global::Vapi.LineInsightMetadata? Type1386 { get; set; } + public global::Vapi.PieInsightType? Type1386 { get; set; } /// /// /// - public global::Vapi.LineInsight? Type1387 { get; set; } + public global::Vapi.PieInsightGroupBy? Type1387 { get; set; } /// /// /// - public global::Vapi.LineInsightType? Type1388 { get; set; } + public global::Vapi.LineInsightMetadata? Type1388 { get; set; } /// /// /// - public global::Vapi.LineInsightGroupBy? Type1389 { get; set; } + public global::Vapi.LineInsight? Type1389 { get; set; } /// /// /// - public global::Vapi.TextInsight? Type1390 { get; set; } + public global::Vapi.LineInsightType? Type1390 { get; set; } /// /// /// - public global::Vapi.TextInsightType? Type1391 { get; set; } + public global::Vapi.LineInsightGroupBy? Type1391 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTO? Type1392 { get; set; } + public global::Vapi.TextInsight? Type1392 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTOType? Type1393 { get; set; } + public global::Vapi.TextInsightType? Type1393 { get; set; } /// /// /// - public global::Vapi.UpdateBarInsightFromCallTableDTOGroupBy? Type1394 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTO? Type1394 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTO? Type1395 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTOType? Type1395 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTOType? Type1396 { get; set; } + public global::Vapi.UpdateBarInsightFromCallTableDTOGroupBy? Type1396 { get; set; } /// /// /// - public global::Vapi.UpdatePieInsightFromCallTableDTOGroupBy? Type1397 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTO? Type1397 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTO? Type1398 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTOType? Type1398 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTOType? Type1399 { get; set; } + public global::Vapi.UpdatePieInsightFromCallTableDTOGroupBy? Type1399 { get; set; } /// /// /// - public global::Vapi.UpdateLineInsightFromCallTableDTOGroupBy? Type1400 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTO? Type1400 { get; set; } /// /// /// - public global::Vapi.UpdateTextInsightFromCallTableDTO? Type1401 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTOType? Type1401 { get; set; } /// /// /// - public global::Vapi.UpdateTextInsightFromCallTableDTOType? Type1402 { get; set; } + public global::Vapi.UpdateLineInsightFromCallTableDTOGroupBy? Type1402 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTO? Type1403 { get; set; } + public global::Vapi.UpdateTextInsightFromCallTableDTO? Type1403 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTOType? Type1404 { get; set; } + public global::Vapi.UpdateTextInsightFromCallTableDTOType? Type1404 { get; set; } /// /// /// - public global::Vapi.CreateBarInsightFromCallTableDTOGroupBy? Type1405 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTO? Type1405 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTO? Type1406 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTOType? Type1406 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTOType? Type1407 { get; set; } + public global::Vapi.CreateBarInsightFromCallTableDTOGroupBy? Type1407 { get; set; } /// /// /// - public global::Vapi.CreatePieInsightFromCallTableDTOGroupBy? Type1408 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTO? Type1408 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTO? Type1409 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTOType? Type1409 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTOType? Type1410 { get; set; } + public global::Vapi.CreatePieInsightFromCallTableDTOGroupBy? Type1410 { get; set; } /// /// /// - public global::Vapi.CreateLineInsightFromCallTableDTOGroupBy? Type1411 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTO? Type1411 { get; set; } /// /// /// - public global::Vapi.CreateTextInsightFromCallTableDTO? Type1412 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTOType? Type1412 { get; set; } /// /// /// - public global::Vapi.CreateTextInsightFromCallTableDTOType? Type1413 { get; set; } + public global::Vapi.CreateLineInsightFromCallTableDTOGroupBy? Type1413 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnType? Type1414 { get; set; } + public global::Vapi.CreateTextInsightFromCallTableDTO? Type1414 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnTable? Type1415 { get; set; } + public global::Vapi.CreateTextInsightFromCallTableDTOType? Type1415 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTable? Type1416 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnType? Type1416 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTable? Type1417 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnTable? Type1417 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTable? Type1418 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTable? Type1418 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTable? Type1419 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTable? Type1419 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTable? Type1420 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTable? Type1420 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTable? Type1421 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTable? Type1421 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnColumn? Type1422 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTable? Type1422 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnOperation? Type1423 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTable? Type1423 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnType? Type1424 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnColumn? Type1424 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnTable? Type1425 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStringTypeColumnOperation? Type1425 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnColumn? Type1426 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnType? Type1426 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnOperation? Type1427 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnTable? Type1427 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnType? Type1428 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnColumn? Type1428 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnTable? Type1429 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithNumberTypeColumnOperation? Type1429 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnColumn? Type1430 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnType? Type1430 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnOperation? Type1431 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnTable? Type1431 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableType? Type1432 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnColumn? Type1432 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableTable? Type1433 { get; set; } + public global::Vapi.JSONQueryOnCallTableWithStructuredOutputColumnOperation? Type1433 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableOn? Type1434 { get; set; } + public global::Vapi.JSONQueryOnEventsTableType? Type1434 { get; set; } /// /// /// - public global::Vapi.JSONQueryOnEventsTableOperation? Type1435 { get; set; } + public global::Vapi.JSONQueryOnEventsTableTable? Type1435 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1436 { get; set; } + public global::Vapi.JSONQueryOnEventsTableOn? Type1436 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1437 { get; set; } + public global::Vapi.JSONQueryOnEventsTableOperation? Type1437 { get; set; } /// /// /// - public global::Vapi.EventsTableStringCondition? Type1438 { get; set; } + public global::System.Collections.Generic.IList>? Type1438 { get; set; } /// /// /// - public global::Vapi.EventsTableNumberCondition? Type1439 { get; set; } + public global::Vapi.OneOf? Type1439 { get; set; } /// /// /// - public global::Vapi.EventsTableBooleanCondition? Type1440 { get; set; } + public global::Vapi.EventsTableStringCondition? Type1440 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTableColumn? Type1441 { get; set; } + public global::Vapi.EventsTableNumberCondition? Type1441 { get; set; } /// /// /// - public global::Vapi.FilterStringTypeColumnOnCallTableOperator? Type1442 { get; set; } + public global::Vapi.EventsTableBooleanCondition? Type1442 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTableColumn? Type1443 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTableColumn? Type1443 { get; set; } /// /// /// - public global::Vapi.FilterNumberTypeColumnOnCallTableOperator? Type1444 { get; set; } + public global::Vapi.FilterStringTypeColumnOnCallTableOperator? Type1444 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTableColumn? Type1445 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTableColumn? Type1445 { get; set; } /// /// /// - public global::Vapi.FilterDateTypeColumnOnCallTableOperator? Type1446 { get; set; } + public global::Vapi.FilterNumberTypeColumnOnCallTableOperator? Type1446 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTableColumn? Type1447 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTableColumn? Type1447 { get; set; } /// /// /// - public global::Vapi.FilterStructuredOutputColumnOnCallTableOperator? Type1448 { get; set; } + public global::Vapi.FilterDateTypeColumnOnCallTableOperator? Type1448 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn? Type1449 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTableColumn? Type1449 { get; set; } /// /// /// - public global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator? Type1450 { get; set; } + public global::Vapi.FilterStructuredOutputColumnOnCallTableOperator? Type1450 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTableColumn? Type1451 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTableColumn? Type1451 { get; set; } /// /// /// - public global::Vapi.FilterNumberArrayTypeColumnOnCallTableOperator? Type1452 { get; set; } + public global::Vapi.FilterStringArrayTypeColumnOnCallTableOperator? Type1452 { get; set; } /// /// /// - public global::Vapi.EventsTableStringConditionOperator? Type1453 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTableColumn? Type1453 { get; set; } /// /// /// - public global::Vapi.EventsTableNumberConditionOperator? Type1454 { get; set; } + public global::Vapi.FilterNumberArrayTypeColumnOnCallTableOperator? Type1454 { get; set; } /// /// /// - public global::Vapi.EventsTableBooleanConditionOperator? Type1455 { get; set; } + public global::Vapi.EventsTableStringConditionOperator? Type1455 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTable? Type1456 { get; set; } + public global::Vapi.EventsTableNumberConditionOperator? Type1456 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTableType? Type1457 { get; set; } + public global::Vapi.EventsTableBooleanConditionOperator? Type1457 { get; set; } /// /// /// - public global::Vapi.BarInsightFromCallTableGroupBy? Type1458 { get; set; } + public global::Vapi.BarInsightFromCallTable? Type1458 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTable? Type1459 { get; set; } + public global::Vapi.BarInsightFromCallTableType? Type1459 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTableType? Type1460 { get; set; } + public global::Vapi.BarInsightFromCallTableGroupBy? Type1460 { get; set; } /// /// /// - public global::Vapi.PieInsightFromCallTableGroupBy? Type1461 { get; set; } + public global::Vapi.PieInsightFromCallTable? Type1461 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTable? Type1462 { get; set; } + public global::Vapi.PieInsightFromCallTableType? Type1462 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTableType? Type1463 { get; set; } + public global::Vapi.PieInsightFromCallTableGroupBy? Type1463 { get; set; } /// /// /// - public global::Vapi.LineInsightFromCallTableGroupBy? Type1464 { get; set; } + public global::Vapi.LineInsightFromCallTable? Type1464 { get; set; } /// /// /// - public global::Vapi.TextInsightFromCallTable? Type1465 { get; set; } + public global::Vapi.LineInsightFromCallTableType? Type1465 { get; set; } /// /// /// - public global::Vapi.TextInsightFromCallTableType? Type1466 { get; set; } + public global::Vapi.LineInsightFromCallTableGroupBy? Type1466 { get; set; } /// /// /// - public global::Vapi.InsightRunFormatPlan? Type1467 { get; set; } + public global::Vapi.TextInsightFromCallTable? Type1467 { get; set; } /// /// /// - public global::Vapi.InsightRunFormatPlanFormat? Type1468 { get; set; } + public global::Vapi.TextInsightFromCallTableType? Type1468 { get; set; } /// /// /// - public global::Vapi.InsightRunDTO? Type1469 { get; set; } + public global::Vapi.InsightRunFormatPlan? Type1469 { get; set; } /// /// /// - public global::Vapi.InsightRunResponse? Type1470 { get; set; } + public global::Vapi.InsightRunFormatPlanFormat? Type1470 { get; set; } /// /// /// - public global::Vapi.Insight? Type1471 { get; set; } + public global::Vapi.InsightRunDTO? Type1471 { get; set; } /// /// /// - public global::Vapi.InsightType? Type1472 { get; set; } + public global::Vapi.InsightRunResponse? Type1472 { get; set; } /// /// /// - public global::Vapi.InsightPaginatedResponse? Type1473 { get; set; } + public global::Vapi.Insight? Type1473 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1474 { get; set; } + public global::Vapi.InsightType? Type1474 { get; set; } /// /// /// - public global::Vapi.CreateEvalDTO? Type1475 { get; set; } + public global::Vapi.InsightPaginatedResponse? Type1475 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMock? Type1476 { get; set; } + public global::System.Collections.Generic.IList? Type1476 { get; set; } /// /// /// - public global::Vapi.ChatEvalSystemMessageMock? Type1477 { get; set; } + public global::Vapi.CreateEvalDTO? Type1477 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageMock? Type1478 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMock? Type1478 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageEvaluation? Type1479 { get; set; } + public global::Vapi.ChatEvalSystemMessageMock? Type1479 { get; set; } /// /// /// - public global::Vapi.ChatEvalUserMessageMock? Type1480 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageMock? Type1480 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageEvaluation? Type1481 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageEvaluation? Type1481 { get; set; } /// /// /// - public global::Vapi.CreateEvalDTOType? Type1482 { get; set; } + public global::Vapi.ChatEvalUserMessageMock? Type1482 { get; set; } /// /// /// - public global::Vapi.Eval? Type1483 { get; set; } + public global::Vapi.ChatEvalAssistantMessageEvaluation? Type1483 { get; set; } /// /// /// - public global::Vapi.EvalType? Type1484 { get; set; } + public global::Vapi.CreateEvalDTOType? Type1484 { get; set; } /// /// /// - public global::Vapi.EvalModelListOptions? Type1485 { get; set; } + public global::Vapi.Eval? Type1485 { get; set; } /// /// /// - public global::Vapi.EvalModelListOptionsProvider? Type1486 { get; set; } + public global::Vapi.EvalType? Type1486 { get; set; } /// /// /// - public global::Vapi.EvalUserEditable? Type1487 { get; set; } + public global::Vapi.EvalModelListOptions? Type1487 { get; set; } /// /// /// - public global::Vapi.EvalUserEditableType? Type1488 { get; set; } + public global::Vapi.EvalModelListOptionsProvider? Type1488 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMockToolCall? Type1489 { get; set; } + public global::Vapi.EvalUserEditable? Type1489 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageMockRole? Type1490 { get; set; } + public global::Vapi.EvalUserEditableType? Type1490 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1491 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMockToolCall? Type1491 { get; set; } /// /// /// - public global::Vapi.ChatEvalSystemMessageMockRole? Type1492 { get; set; } + public global::Vapi.ChatEvalAssistantMessageMockRole? Type1492 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageMockRole? Type1493 { get; set; } + public global::System.Collections.Generic.IList? Type1493 { get; set; } /// /// /// - public global::Vapi.ChatEvalUserMessageMockRole? Type1494 { get; set; } + public global::Vapi.ChatEvalSystemMessageMockRole? Type1494 { get; set; } /// /// /// - public global::Vapi.AssistantMessageEvaluationContinuePlan? Type1495 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageMockRole? Type1495 { get; set; } /// /// /// - public global::Vapi.ChatEvalAssistantMessageEvaluationRole? Type1496 { get; set; } + public global::Vapi.ChatEvalUserMessageMockRole? Type1496 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1497 { get; set; } + public global::Vapi.AssistantMessageEvaluationContinuePlan? Type1497 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanExact? Type1498 { get; set; } + public global::Vapi.ChatEvalAssistantMessageEvaluationRole? Type1498 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanRegex? Type1499 { get; set; } + public global::Vapi.OneOf? Type1499 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanAI? Type1500 { get; set; } + public global::Vapi.AssistantMessageJudgePlanExact? Type1500 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModel? Type1501 { get; set; } + public global::Vapi.AssistantMessageJudgePlanRegex? Type1501 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModelProvider? Type1502 { get; set; } + public global::Vapi.AssistantMessageJudgePlanAI? Type1502 { get; set; } /// /// /// - public global::Vapi.EvalOpenAIModelModel? Type1503 { get; set; } + public global::Vapi.EvalOpenAIModel? Type1503 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModel? Type1504 { get; set; } + public global::Vapi.EvalOpenAIModelProvider? Type1504 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModelProvider? Type1505 { get; set; } + public global::Vapi.EvalOpenAIModelModel? Type1505 { get; set; } /// /// /// - public global::Vapi.EvalAnthropicModelModel? Type1506 { get; set; } + public global::Vapi.EvalAnthropicModel? Type1506 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModel? Type1507 { get; set; } + public global::Vapi.EvalAnthropicModelProvider? Type1507 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModelProvider? Type1508 { get; set; } + public global::Vapi.EvalAnthropicModelModel? Type1508 { get; set; } /// /// /// - public global::Vapi.EvalGoogleModelModel? Type1509 { get; set; } + public global::Vapi.EvalGoogleModel? Type1509 { get; set; } /// /// /// - public global::Vapi.EvalGroqModel? Type1510 { get; set; } + public global::Vapi.EvalGoogleModelProvider? Type1510 { get; set; } /// /// /// - public global::Vapi.EvalGroqModelProvider? Type1511 { get; set; } + public global::Vapi.EvalGoogleModelModel? Type1511 { get; set; } /// /// /// - public global::Vapi.EvalGroqModelModel? Type1512 { get; set; } + public global::Vapi.EvalGroqModel? Type1512 { get; set; } /// /// /// - public global::Vapi.EvalCustomModel? Type1513 { get; set; } + public global::Vapi.EvalGroqModelProvider? Type1513 { get; set; } /// /// /// - public global::Vapi.EvalCustomModelProvider? Type1514 { get; set; } + public global::Vapi.EvalGroqModelModel? Type1514 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1515 { get; set; } + public global::Vapi.EvalCustomModel? Type1515 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanAIType? Type1516 { get; set; } + public global::Vapi.EvalCustomModelProvider? Type1516 { get; set; } /// /// /// - public global::Vapi.ChatEvalToolResponseMessageEvaluationRole? Type1517 { get; set; } + public global::Vapi.OneOf? Type1517 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanExactType? Type1518 { get; set; } + public global::Vapi.AssistantMessageJudgePlanAIType? Type1518 { get; set; } /// /// /// - public global::Vapi.AssistantMessageJudgePlanRegexType? Type1519 { get; set; } + public global::Vapi.ChatEvalToolResponseMessageEvaluationRole? Type1519 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTO? Type1520 { get; set; } + public global::Vapi.AssistantMessageJudgePlanExactType? Type1520 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTOSortOrder? Type1521 { get; set; } + public global::Vapi.AssistantMessageJudgePlanRegexType? Type1521 { get; set; } /// /// /// - public global::Vapi.GetEvalPaginatedDTOSortBy? Type1522 { get; set; } + public global::Vapi.GetEvalPaginatedDTO? Type1522 { get; set; } /// /// /// - public global::Vapi.EvalPaginatedResponse? Type1523 { get; set; } + public global::Vapi.GetEvalPaginatedDTOSortOrder? Type1523 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1524 { get; set; } + public global::Vapi.GetEvalPaginatedDTOSortBy? Type1524 { get; set; } /// /// /// - public global::Vapi.UpdateEvalDTO? Type1525 { get; set; } + public global::Vapi.EvalPaginatedResponse? Type1525 { get; set; } /// /// /// - public global::Vapi.UpdateEvalDTOType? Type1526 { get; set; } + public global::System.Collections.Generic.IList? Type1526 { get; set; } /// /// /// - public global::Vapi.CreateEvalRunDTO? Type1527 { get; set; } + public global::Vapi.UpdateEvalDTO? Type1527 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1528 { get; set; } + public global::Vapi.UpdateEvalDTOType? Type1528 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetAssistant? Type1529 { get; set; } + public global::Vapi.CreateEvalRunDTO? Type1529 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetSquad? Type1530 { get; set; } + public global::Vapi.OneOf? Type1530 { get; set; } /// /// /// - public global::Vapi.CreateEvalRunDTOType? Type1531 { get; set; } + public global::Vapi.EvalRunTargetAssistant? Type1531 { get; set; } /// /// /// - public global::Vapi.EvalRunResult? Type1532 { get; set; } + public global::Vapi.EvalRunTargetSquad? Type1532 { get; set; } /// /// /// - public global::Vapi.EvalRunResultStatus? Type1533 { get; set; } + public global::Vapi.CreateEvalRunDTOType? Type1533 { get; set; } /// /// /// - public global::Vapi.OneOf? Type1534 { get; set; } + public global::Vapi.EvalRunResult? Type1534 { get; set; } /// /// /// - public global::Vapi.EvalRun? Type1535 { get; set; } + public global::Vapi.EvalRunResultStatus? Type1535 { get; set; } /// /// /// - public global::Vapi.EvalRunStatus? Type1536 { get; set; } + public global::Vapi.OneOf? Type1536 { get; set; } /// /// /// - public global::Vapi.EvalRunEndedReason? Type1537 { get; set; } + public global::Vapi.EvalRun? Type1537 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1538 { get; set; } + public global::Vapi.EvalRunStatus? Type1538 { get; set; } /// /// /// - public global::Vapi.EvalRunType? Type1539 { get; set; } + public global::Vapi.EvalRunEndedReason? Type1539 { get; set; } /// /// /// - public global::Vapi.EvalRunPaginatedResponse? Type1540 { get; set; } + public global::System.Collections.Generic.IList? Type1540 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1541 { get; set; } + public global::Vapi.EvalRunType? Type1541 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTO? Type1542 { get; set; } + public global::Vapi.EvalRunPaginatedResponse? Type1542 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTOSortOrder? Type1543 { get; set; } + public global::System.Collections.Generic.IList? Type1543 { get; set; } /// /// /// - public global::Vapi.GetEvalRunPaginatedDTOSortBy? Type1544 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTO? Type1544 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetAssistantType? Type1545 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTOSortOrder? Type1545 { get; set; } /// /// /// - public global::Vapi.EvalRunTargetSquadType? Type1546 { get; set; } + public global::Vapi.GetEvalRunPaginatedDTOSortBy? Type1546 { get; set; } /// /// /// - public global::Vapi.Scorecard? Type1547 { get; set; } + public global::Vapi.EvalRunTargetAssistantType? Type1547 { get; set; } /// /// /// - public global::Vapi.ScorecardPaginatedResponse? Type1548 { get; set; } + public global::Vapi.EvalRunTargetSquadType? Type1548 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1549 { get; set; } + public global::Vapi.Scorecard? Type1549 { get; set; } /// /// /// - public global::Vapi.UpdateScorecardDTO? Type1550 { get; set; } + public global::Vapi.ScorecardPaginatedResponse? Type1550 { get; set; } /// /// /// - public global::Vapi.CreateOrgDTO? Type1551 { get; set; } + public global::System.Collections.Generic.IList? Type1551 { get; set; } /// /// /// - public global::Vapi.CreateOrgDTOChannel? Type1552 { get; set; } + public global::Vapi.UpdateScorecardDTO? Type1552 { get; set; } /// /// /// - public global::Vapi.AutoReloadPlan? Type1553 { get; set; } + public global::Vapi.CreateOrgDTO? Type1553 { get; set; } /// /// /// - public global::Vapi.InvoicePlan? Type1554 { get; set; } + public global::Vapi.CreateOrgDTOChannel? Type1554 { get; set; } /// /// /// - public global::Vapi.Subscription? Type1555 { get; set; } + public global::Vapi.AutoReloadPlan? Type1555 { get; set; } /// /// /// - public global::Vapi.SubscriptionType? Type1556 { get; set; } + public global::Vapi.InvoicePlan? Type1556 { get; set; } /// /// /// - public global::Vapi.SubscriptionStatus? Type1557 { get; set; } + public global::Vapi.Subscription? Type1557 { get; set; } /// /// /// - public global::Vapi.SubscriptionMinutesIncludedResetFrequency? Type1558 { get; set; } + public global::Vapi.SubscriptionType? Type1558 { get; set; } /// /// /// - public global::Vapi.Org? Type1559 { get; set; } + public global::Vapi.SubscriptionStatus? Type1559 { get; set; } /// /// /// - public global::Vapi.OrgChannel? Type1560 { get; set; } + public global::Vapi.SubscriptionMinutesIncludedResetFrequency? Type1560 { get; set; } /// /// /// - public global::Vapi.UpdateOrgDTO? Type1561 { get; set; } + public global::Vapi.Org? Type1561 { get; set; } /// /// /// - public global::Vapi.UpdateOrgDTOChannel? Type1562 { get; set; } + public global::Vapi.OrgChannel? Type1562 { get; set; } /// /// /// - public global::Vapi.User? Type1563 { get; set; } + public global::Vapi.UpdateOrgDTO? Type1563 { get; set; } /// /// /// - public global::Vapi.InviteUserDTO? Type1564 { get; set; } + public global::Vapi.UpdateOrgDTOChannel? Type1564 { get; set; } /// /// /// - public global::Vapi.InviteUserDTORole? Type1565 { get; set; } + public global::Vapi.User? Type1565 { get; set; } /// /// /// - public global::Vapi.UpdateUserRoleDTO? Type1566 { get; set; } + public global::Vapi.InviteUserDTO? Type1566 { get; set; } /// /// /// - public global::Vapi.UpdateUserRoleDTORole? Type1567 { get; set; } + public global::Vapi.OneOf? Type1567 { get; set; } /// /// /// - public global::Vapi.JwtResponse? Type1568 { get; set; } + public global::Vapi.InviteUserDTORole? Type1568 { get; set; } /// /// /// - public global::Vapi.TokenRestrictions? Type1569 { get; set; } + public global::Vapi.UpdateUserRoleDTO? Type1569 { get; set; } /// /// /// - public global::Vapi.CreateTokenDTO? Type1570 { get; set; } + public global::Vapi.OneOf? Type1570 { get; set; } /// /// /// - public global::Vapi.CreateTokenDTOTag? Type1571 { get; set; } + public global::Vapi.UpdateUserRoleDTORole? Type1571 { get; set; } /// /// /// - public global::Vapi.Token? Type1572 { get; set; } + public global::Vapi.JwtResponse? Type1572 { get; set; } /// /// /// - public global::Vapi.TokenTag? Type1573 { get; set; } + public global::Vapi.TokenRestrictions? Type1573 { get; set; } /// /// /// - public global::Vapi.UpdateTokenDTO? Type1574 { get; set; } + public global::Vapi.CreateTokenDTO? Type1574 { get; set; } /// /// /// - public global::Vapi.UpdateTokenDTOTag? Type1575 { get; set; } + public global::Vapi.CreateTokenDTOTag? Type1575 { get; set; } /// /// /// - public global::Vapi.AnthropicCredential? Type1576 { get; set; } + public global::Vapi.Token? Type1576 { get; set; } /// /// /// - public global::Vapi.AnthropicCredentialProvider? Type1577 { get; set; } + public global::Vapi.TokenTag? Type1577 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationArtifact? Type1578 { get; set; } + public global::Vapi.UpdateTokenDTO? Type1578 { get; set; } /// /// /// - public global::Vapi.AWSStsAssumeRoleUser? Type1579 { get; set; } + public global::Vapi.UpdateTokenDTOTag? Type1579 { get; set; } /// /// /// - public global::Vapi.AWSStsCredentials? Type1580 { get; set; } + public global::Vapi.AnthropicCredential? Type1580 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationSession? Type1581 { get; set; } + public global::Vapi.AnthropicCredentialProvider? Type1581 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredential? Type1582 { get; set; } + public global::Vapi.AWSStsAuthenticationArtifact? Type1582 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredentialProvider? Type1583 { get; set; } + public global::Vapi.AWSStsAssumeRoleUser? Type1583 { get; set; } /// /// /// - public global::Vapi.AnthropicBedrockCredentialRegion? Type1584 { get; set; } + public global::Vapi.AWSStsCredentials? Type1584 { get; set; } /// /// /// - public global::Vapi.AnyscaleCredential? Type1585 { get; set; } + public global::Vapi.AWSStsAuthenticationSession? Type1585 { get; set; } /// /// /// - public global::Vapi.AnyscaleCredentialProvider? Type1586 { get; set; } + public global::Vapi.AnthropicBedrockCredential? Type1586 { get; set; } /// /// /// - public global::Vapi.AssemblyAICredential? Type1587 { get; set; } + public global::Vapi.AnthropicBedrockCredentialProvider? Type1587 { get; set; } /// /// /// - public global::Vapi.AssemblyAICredentialProvider? Type1588 { get; set; } + public global::Vapi.AnthropicBedrockCredentialRegion? Type1588 { get; set; } /// /// /// - public global::Vapi.AzureCredential? Type1589 { get; set; } + public global::Vapi.AnyscaleCredential? Type1589 { get; set; } /// /// /// - public global::Vapi.AzureCredentialProvider? Type1590 { get; set; } + public global::Vapi.AnyscaleCredentialProvider? Type1590 { get; set; } /// /// /// - public global::Vapi.AzureCredentialService? Type1591 { get; set; } + public global::Vapi.AssemblyAICredential? Type1591 { get; set; } /// /// /// - public global::Vapi.AzureCredentialRegion? Type1592 { get; set; } + public global::Vapi.AssemblyAICredentialProvider? Type1592 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredential? Type1593 { get; set; } + public global::Vapi.AzureCredential? Type1593 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialProvider? Type1594 { get; set; } + public global::Vapi.AzureCredentialProvider? Type1594 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialRegion? Type1595 { get; set; } + public global::Vapi.AzureCredentialService? Type1595 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1596 { get; set; } + public global::Vapi.AzureCredentialRegion? Type1596 { get; set; } /// /// /// - public global::Vapi.AzureOpenAICredentialModel? Type1597 { get; set; } + public global::Vapi.AzureOpenAICredential? Type1597 { get; set; } /// /// /// - public global::Vapi.ByoSipTrunkCredential? Type1598 { get; set; } + public global::Vapi.AzureOpenAICredentialProvider? Type1598 { get; set; } /// /// /// - public global::Vapi.ByoSipTrunkCredentialProvider? Type1599 { get; set; } + public global::Vapi.AzureOpenAICredentialRegion? Type1599 { get; set; } /// /// /// - public global::Vapi.CartesiaCredential? Type1600 { get; set; } + public global::System.Collections.Generic.IList? Type1600 { get; set; } /// /// /// - public global::Vapi.CartesiaCredentialProvider? Type1601 { get; set; } + public global::Vapi.AzureOpenAICredentialModel? Type1601 { get; set; } /// /// /// - public global::Vapi.CerebrasCredential? Type1602 { get; set; } + public global::Vapi.ByoSipTrunkCredential? Type1602 { get; set; } /// /// /// - public global::Vapi.CerebrasCredentialProvider? Type1603 { get; set; } + public global::Vapi.ByoSipTrunkCredentialProvider? Type1603 { get; set; } /// /// /// - public global::Vapi.CloudflareCredential? Type1604 { get; set; } + public global::Vapi.CartesiaCredential? Type1604 { get; set; } /// /// /// - public global::Vapi.CloudflareCredentialProvider? Type1605 { get; set; } + public global::Vapi.CartesiaCredentialProvider? Type1605 { get; set; } /// /// /// - public global::Vapi.Oauth2AuthenticationSession? Type1606 { get; set; } + public global::Vapi.CerebrasCredential? Type1606 { get; set; } /// /// /// - public global::Vapi.CustomLLMCredential? Type1607 { get; set; } + public global::Vapi.CerebrasCredentialProvider? Type1607 { get; set; } /// /// /// - public global::Vapi.CustomLLMCredentialProvider? Type1608 { get; set; } + public global::Vapi.CloudflareCredential? Type1608 { get; set; } /// /// /// - public global::Vapi.DeepgramCredential? Type1609 { get; set; } + public global::Vapi.CloudflareCredentialProvider? Type1609 { get; set; } /// /// /// - public global::Vapi.DeepgramCredentialProvider? Type1610 { get; set; } + public global::Vapi.Oauth2AuthenticationSession? Type1610 { get; set; } /// /// /// - public global::Vapi.DeepInfraCredential? Type1611 { get; set; } + public global::Vapi.CustomLLMCredential? Type1611 { get; set; } /// /// /// - public global::Vapi.DeepInfraCredentialProvider? Type1612 { get; set; } + public global::Vapi.CustomLLMCredentialProvider? Type1612 { get; set; } /// /// /// - public global::Vapi.DeepSeekCredential? Type1613 { get; set; } + public global::Vapi.DeepgramCredential? Type1613 { get; set; } /// /// /// - public global::Vapi.DeepSeekCredentialProvider? Type1614 { get; set; } + public global::Vapi.DeepgramCredentialProvider? Type1614 { get; set; } /// /// /// - public global::Vapi.ElevenLabsCredential? Type1615 { get; set; } + public global::Vapi.DeepInfraCredential? Type1615 { get; set; } /// /// /// - public global::Vapi.ElevenLabsCredentialProvider? Type1616 { get; set; } + public global::Vapi.DeepInfraCredentialProvider? Type1616 { get; set; } /// /// /// - public global::Vapi.GcpCredential? Type1617 { get; set; } + public global::Vapi.DeepSeekCredential? Type1617 { get; set; } /// /// /// - public global::Vapi.GcpCredentialProvider? Type1618 { get; set; } + public global::Vapi.DeepSeekCredentialProvider? Type1618 { get; set; } /// /// /// - public global::Vapi.GladiaCredential? Type1619 { get; set; } + public global::Vapi.ElevenLabsCredential? Type1619 { get; set; } /// /// /// - public global::Vapi.GladiaCredentialProvider? Type1620 { get; set; } + public global::Vapi.ElevenLabsCredentialProvider? Type1620 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCredential? Type1621 { get; set; } + public global::Vapi.GcpCredential? Type1621 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCredentialProvider? Type1622 { get; set; } + public global::Vapi.GcpCredentialProvider? Type1622 { get; set; } /// /// /// - public global::Vapi.GoogleCredential? Type1623 { get; set; } + public global::Vapi.GladiaCredential? Type1623 { get; set; } /// /// /// - public global::Vapi.GoogleCredentialProvider? Type1624 { get; set; } + public global::Vapi.GladiaCredentialProvider? Type1624 { get; set; } /// /// /// - public global::Vapi.GroqCredential? Type1625 { get; set; } + public global::Vapi.GoHighLevelCredential? Type1625 { get; set; } /// /// /// - public global::Vapi.GroqCredentialProvider? Type1626 { get; set; } + public global::Vapi.GoHighLevelCredentialProvider? Type1626 { get; set; } /// /// /// - public global::Vapi.HumeCredential? Type1627 { get; set; } + public global::Vapi.GoogleCredential? Type1627 { get; set; } /// /// /// - public global::Vapi.HumeCredentialProvider? Type1628 { get; set; } + public global::Vapi.GoogleCredentialProvider? Type1628 { get; set; } /// /// /// - public global::Vapi.InflectionAICredential? Type1629 { get; set; } + public global::Vapi.GroqCredential? Type1629 { get; set; } /// /// /// - public global::Vapi.InflectionAICredentialProvider? Type1630 { get; set; } + public global::Vapi.GroqCredentialProvider? Type1630 { get; set; } /// /// /// - public global::Vapi.LangfuseCredential? Type1631 { get; set; } + public global::Vapi.HumeCredential? Type1631 { get; set; } /// /// /// - public global::Vapi.LangfuseCredentialProvider? Type1632 { get; set; } + public global::Vapi.HumeCredentialProvider? Type1632 { get; set; } /// /// /// - public global::Vapi.LmntCredential? Type1633 { get; set; } + public global::Vapi.InflectionAICredential? Type1633 { get; set; } /// /// /// - public global::Vapi.LmntCredentialProvider? Type1634 { get; set; } + public global::Vapi.InflectionAICredentialProvider? Type1634 { get; set; } /// /// /// - public global::Vapi.MakeCredential? Type1635 { get; set; } + public global::Vapi.LangfuseCredential? Type1635 { get; set; } /// /// /// - public global::Vapi.MakeCredentialProvider? Type1636 { get; set; } + public global::Vapi.LangfuseCredentialProvider? Type1636 { get; set; } /// /// /// - public global::Vapi.MistralCredential? Type1637 { get; set; } + public global::Vapi.LmntCredential? Type1637 { get; set; } /// /// /// - public global::Vapi.MistralCredentialProvider? Type1638 { get; set; } + public global::Vapi.LmntCredentialProvider? Type1638 { get; set; } /// /// /// - public global::Vapi.NeuphonicCredential? Type1639 { get; set; } + public global::Vapi.MakeCredential? Type1639 { get; set; } /// /// /// - public global::Vapi.NeuphonicCredentialProvider? Type1640 { get; set; } + public global::Vapi.MakeCredentialProvider? Type1640 { get; set; } /// /// /// - public global::Vapi.OpenAICredential? Type1641 { get; set; } + public global::Vapi.MistralCredential? Type1641 { get; set; } /// /// /// - public global::Vapi.OpenAICredentialProvider? Type1642 { get; set; } + public global::Vapi.MistralCredentialProvider? Type1642 { get; set; } /// /// /// - public global::Vapi.OpenRouterCredential? Type1643 { get; set; } + public global::Vapi.NeuphonicCredential? Type1643 { get; set; } /// /// /// - public global::Vapi.OpenRouterCredentialProvider? Type1644 { get; set; } + public global::Vapi.NeuphonicCredentialProvider? Type1644 { get; set; } /// /// /// - public global::Vapi.PerplexityAICredential? Type1645 { get; set; } + public global::Vapi.OpenAICredential? Type1645 { get; set; } /// /// /// - public global::Vapi.PerplexityAICredentialProvider? Type1646 { get; set; } + public global::Vapi.OpenAICredentialProvider? Type1646 { get; set; } /// /// /// - public global::Vapi.PlayHTCredential? Type1647 { get; set; } + public global::Vapi.OpenRouterCredential? Type1647 { get; set; } /// /// /// - public global::Vapi.PlayHTCredentialProvider? Type1648 { get; set; } + public global::Vapi.OpenRouterCredentialProvider? Type1648 { get; set; } /// /// /// - public global::Vapi.RimeAICredential? Type1649 { get; set; } + public global::Vapi.PerplexityAICredential? Type1649 { get; set; } /// /// /// - public global::Vapi.RimeAICredentialProvider? Type1650 { get; set; } + public global::Vapi.PerplexityAICredentialProvider? Type1650 { get; set; } /// /// /// - public global::Vapi.RunpodCredential? Type1651 { get; set; } + public global::Vapi.PlayHTCredential? Type1651 { get; set; } /// /// /// - public global::Vapi.RunpodCredentialProvider? Type1652 { get; set; } + public global::Vapi.PlayHTCredentialProvider? Type1652 { get; set; } /// /// /// - public global::Vapi.WellSaidCredential? Type1653 { get; set; } + public global::Vapi.RimeAICredential? Type1653 { get; set; } /// /// /// - public global::Vapi.WellSaidCredentialProvider? Type1654 { get; set; } + public global::Vapi.RimeAICredentialProvider? Type1654 { get; set; } /// /// /// - public global::Vapi.S3Credential? Type1655 { get; set; } + public global::Vapi.RunpodCredential? Type1655 { get; set; } /// /// /// - public global::Vapi.S3CredentialProvider? Type1656 { get; set; } + public global::Vapi.RunpodCredentialProvider? Type1656 { get; set; } /// /// /// - public global::Vapi.SmallestAICredential? Type1657 { get; set; } + public global::Vapi.WellSaidCredential? Type1657 { get; set; } /// /// /// - public global::Vapi.SmallestAICredentialProvider? Type1658 { get; set; } + public global::Vapi.WellSaidCredentialProvider? Type1658 { get; set; } /// /// /// - public global::Vapi.SonioxCredential? Type1659 { get; set; } + public global::Vapi.S3Credential? Type1659 { get; set; } /// /// /// - public global::Vapi.SonioxCredentialProvider? Type1660 { get; set; } + public global::Vapi.S3CredentialProvider? Type1660 { get; set; } /// /// /// - public global::Vapi.SpeechmaticsCredential? Type1661 { get; set; } + public global::Vapi.SmallestAICredential? Type1661 { get; set; } /// /// /// - public global::Vapi.SpeechmaticsCredentialProvider? Type1662 { get; set; } + public global::Vapi.SmallestAICredentialProvider? Type1662 { get; set; } /// /// /// - public global::Vapi.SupabaseCredential? Type1663 { get; set; } + public global::Vapi.SonioxCredential? Type1663 { get; set; } /// /// /// - public global::Vapi.SupabaseCredentialProvider? Type1664 { get; set; } + public global::Vapi.SonioxCredentialProvider? Type1664 { get; set; } /// /// /// - public global::Vapi.TavusCredential? Type1665 { get; set; } + public global::Vapi.SpeechmaticsCredential? Type1665 { get; set; } /// /// /// - public global::Vapi.TavusCredentialProvider? Type1666 { get; set; } + public global::Vapi.SpeechmaticsCredentialProvider? Type1666 { get; set; } /// /// /// - public global::Vapi.TogetherAICredential? Type1667 { get; set; } + public global::Vapi.SupabaseCredential? Type1667 { get; set; } /// /// /// - public global::Vapi.TogetherAICredentialProvider? Type1668 { get; set; } + public global::Vapi.SupabaseCredentialProvider? Type1668 { get; set; } /// /// /// - public global::Vapi.TwilioCredential? Type1669 { get; set; } + public global::Vapi.TavusCredential? Type1669 { get; set; } /// /// /// - public global::Vapi.TwilioCredentialProvider? Type1670 { get; set; } + public global::Vapi.TavusCredentialProvider? Type1670 { get; set; } /// /// /// - public global::Vapi.VonageCredential? Type1671 { get; set; } + public global::Vapi.TogetherAICredential? Type1671 { get; set; } /// /// /// - public global::Vapi.VonageCredentialProvider? Type1672 { get; set; } + public global::Vapi.TogetherAICredentialProvider? Type1672 { get; set; } /// /// /// - public global::Vapi.WebhookCredential? Type1673 { get; set; } + public global::Vapi.TwilioCredential? Type1673 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialProvider? Type1674 { get; set; } + public global::Vapi.TwilioCredentialProvider? Type1674 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan4? Type1675 { get; set; } + public global::Vapi.VonageCredential? Type1675 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminator? Type1676 { get; set; } + public global::Vapi.VonageCredentialProvider? Type1676 { get; set; } /// /// /// - public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminatorType? Type1677 { get; set; } + public global::Vapi.WebhookCredential? Type1677 { get; set; } /// /// /// - public global::Vapi.SpkiPemPublicKeyConfig? Type1678 { get; set; } + public global::Vapi.WebhookCredentialProvider? Type1678 { get; set; } /// /// /// - public global::Vapi.SpkiPemPublicKeyConfigFormat? Type1679 { get; set; } + public global::Vapi.AuthenticationPlan4? Type1679 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlan? Type1680 { get; set; } + public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminator? Type1680 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanType? Type1681 { get; set; } + public global::Vapi.WebhookCredentialAuthenticationPlanDiscriminatorType? Type1681 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanAlgorithm? Type1682 { get; set; } + public global::Vapi.SpkiPemPublicKeyConfig? Type1682 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator? Type1683 { get; set; } + public global::Vapi.SpkiPemPublicKeyConfigFormat? Type1683 { get; set; } /// /// /// - public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat? Type1684 { get; set; } + public global::Vapi.PublicKeyEncryptionPlan? Type1684 { get; set; } /// /// /// - public global::Vapi.CustomCredential? Type1685 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanType? Type1685 { get; set; } /// /// /// - public global::Vapi.CustomCredentialProvider? Type1686 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanAlgorithm? Type1686 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan5? Type1687 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminator? Type1687 { get; set; } /// /// /// - public global::Vapi.CustomCredentialAuthenticationPlanDiscriminator? Type1688 { get; set; } + public global::Vapi.PublicKeyEncryptionPlanPublicKeyDiscriminatorFormat? Type1688 { get; set; } /// /// /// - public global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType? Type1689 { get; set; } + public global::Vapi.CustomCredential? Type1689 { get; set; } /// /// /// - public global::Vapi.CustomCredentialEncryptionPlanDiscriminator? Type1690 { get; set; } + public global::Vapi.CustomCredentialProvider? Type1690 { get; set; } /// /// /// - public global::Vapi.CustomCredentialEncryptionPlanDiscriminatorType? Type1691 { get; set; } + public global::Vapi.AuthenticationPlan5? Type1691 { get; set; } /// /// /// - public global::Vapi.XAiCredential? Type1692 { get; set; } + public global::Vapi.CustomCredentialAuthenticationPlanDiscriminator? Type1692 { get; set; } /// /// /// - public global::Vapi.XAiCredentialProvider? Type1693 { get; set; } + public global::Vapi.CustomCredentialAuthenticationPlanDiscriminatorType? Type1693 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2ClientCredential? Type1694 { get; set; } + public global::Vapi.CustomCredentialEncryptionPlanDiscriminator? Type1694 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2ClientCredentialProvider? Type1695 { get; set; } + public global::Vapi.CustomCredentialEncryptionPlanDiscriminatorType? Type1695 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2AuthorizationCredential? Type1696 { get; set; } + public global::Vapi.XAiCredential? Type1696 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarOAuth2AuthorizationCredentialProvider? Type1697 { get; set; } + public global::Vapi.XAiCredentialProvider? Type1697 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsOAuth2AuthorizationCredential? Type1698 { get; set; } + public global::Vapi.GoogleCalendarOAuth2ClientCredential? Type1698 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsOAuth2AuthorizationCredentialProvider? Type1699 { get; set; } + public global::Vapi.GoogleCalendarOAuth2ClientCredentialProvider? Type1699 { get; set; } /// /// /// - public global::Vapi.SlackOAuth2AuthorizationCredential? Type1700 { get; set; } + public global::Vapi.GoogleCalendarOAuth2AuthorizationCredential? Type1700 { get; set; } /// /// /// - public global::Vapi.SlackOAuth2AuthorizationCredentialProvider? Type1701 { get; set; } + public global::Vapi.GoogleCalendarOAuth2AuthorizationCredentialProvider? Type1701 { get; set; } /// /// /// - public global::Vapi.GoHighLevelMCPCredential? Type1702 { get; set; } + public global::Vapi.GoogleSheetsOAuth2AuthorizationCredential? Type1702 { get; set; } /// /// /// - public global::Vapi.GoHighLevelMCPCredentialProvider? Type1703 { get; set; } + public global::Vapi.GoogleSheetsOAuth2AuthorizationCredentialProvider? Type1703 { get; set; } /// /// /// - public global::Vapi.InworldCredential? Type1704 { get; set; } + public global::Vapi.SlackOAuth2AuthorizationCredential? Type1704 { get; set; } /// /// /// - public global::Vapi.InworldCredentialProvider? Type1705 { get; set; } + public global::Vapi.SlackOAuth2AuthorizationCredentialProvider? Type1705 { get; set; } /// /// /// - public global::Vapi.EmailCredential? Type1706 { get; set; } + public global::Vapi.GoHighLevelMCPCredential? Type1706 { get; set; } /// /// /// - public global::Vapi.EmailCredentialProvider? Type1707 { get; set; } + public global::Vapi.GoHighLevelMCPCredentialProvider? Type1707 { get; set; } /// /// /// - public global::Vapi.SlackWebhookCredential? Type1708 { get; set; } + public global::Vapi.InworldCredential? Type1708 { get; set; } /// /// /// - public global::Vapi.SlackWebhookCredentialProvider? Type1709 { get; set; } + public global::Vapi.InworldCredentialProvider? Type1709 { get; set; } /// /// /// - public global::Vapi.CreateCerebrasCredentialDTOProvider? Type1710 { get; set; } + public global::Vapi.EmailCredential? Type1710 { get; set; } /// /// /// - public global::Vapi.CreateGoogleCredentialDTOProvider? Type1711 { get; set; } + public global::Vapi.EmailCredentialProvider? Type1711 { get; set; } /// /// /// - public global::Vapi.CreateHumeCredentialDTOProvider? Type1712 { get; set; } + public global::Vapi.SlackWebhookCredential? Type1712 { get; set; } /// /// /// - public global::Vapi.CreateInflectionAICredentialDTOProvider? Type1713 { get; set; } + public global::Vapi.SlackWebhookCredentialProvider? Type1713 { get; set; } /// /// /// - public global::Vapi.CreateMistralCredentialDTOProvider? Type1714 { get; set; } + public global::Vapi.CreateCerebrasCredentialDTOProvider? Type1714 { get; set; } /// /// /// - public global::Vapi.CreateNeuphonicCredentialDTOProvider? Type1715 { get; set; } + public global::Vapi.CreateGoogleCredentialDTOProvider? Type1715 { get; set; } /// /// /// - public global::Vapi.CreateWellSaidCredentialDTOProvider? Type1716 { get; set; } + public global::Vapi.CreateHumeCredentialDTOProvider? Type1716 { get; set; } /// /// /// - public global::Vapi.CreateSonioxCredentialDTOProvider? Type1717 { get; set; } + public global::Vapi.CreateInflectionAICredentialDTOProvider? Type1717 { get; set; } /// /// /// - public global::Vapi.CreateSpeechmaticsCredentialDTOProvider? Type1718 { get; set; } + public global::Vapi.CreateMistralCredentialDTOProvider? Type1718 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOProvider? Type1719 { get; set; } + public global::Vapi.CreateNeuphonicCredentialDTOProvider? Type1719 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan6? Type1720 { get; set; } + public global::Vapi.CreateWellSaidCredentialDTOProvider? Type1720 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1721 { get; set; } + public global::Vapi.CreateSonioxCredentialDTOProvider? Type1721 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1722 { get; set; } + public global::Vapi.CreateSpeechmaticsCredentialDTOProvider? Type1722 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminator? Type1723 { get; set; } + public global::Vapi.CreateCustomCredentialDTOProvider? Type1723 { get; set; } /// /// /// - public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1724 { get; set; } + public global::Vapi.AuthenticationPlan6? Type1724 { get; set; } /// /// /// - public global::Vapi.CreateGoHighLevelMCPCredentialDTOProvider? Type1725 { get; set; } + public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1725 { get; set; } /// /// /// - public global::Vapi.CreateInworldCredentialDTOProvider? Type1726 { get; set; } + public global::Vapi.CreateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1726 { get; set; } /// /// /// - public global::Vapi.CreateEmailCredentialDTOProvider? Type1727 { get; set; } + public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminator? Type1727 { get; set; } /// /// /// - public global::Vapi.CreateSlackWebhookCredentialDTOProvider? Type1728 { get; set; } + public global::Vapi.CreateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1728 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicCredentialDTO? Type1729 { get; set; } + public global::Vapi.CreateGoHighLevelMCPCredentialDTOProvider? Type1729 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicBedrockCredentialDTO? Type1730 { get; set; } + public global::Vapi.CreateInworldCredentialDTOProvider? Type1730 { get; set; } /// /// /// - public global::Vapi.UpdateAnthropicBedrockCredentialDTORegion? Type1731 { get; set; } + public global::Vapi.CreateEmailCredentialDTOProvider? Type1731 { get; set; } /// /// /// - public global::Vapi.UpdateAnyscaleCredentialDTO? Type1732 { get; set; } + public global::Vapi.CreateSlackWebhookCredentialDTOProvider? Type1732 { get; set; } /// /// /// - public global::Vapi.UpdateAssemblyAICredentialDTO? Type1733 { get; set; } + public global::Vapi.UpdateAnthropicCredentialDTO? Type1733 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTO? Type1734 { get; set; } + public global::Vapi.UpdateAnthropicBedrockCredentialDTO? Type1734 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTOService? Type1735 { get; set; } + public global::Vapi.UpdateAnthropicBedrockCredentialDTORegion? Type1735 { get; set; } /// /// /// - public global::Vapi.UpdateAzureCredentialDTORegion? Type1736 { get; set; } + public global::Vapi.UpdateAnyscaleCredentialDTO? Type1736 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTO? Type1737 { get; set; } + public global::Vapi.UpdateAssemblyAICredentialDTO? Type1737 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTORegion? Type1738 { get; set; } + public global::Vapi.UpdateAzureCredentialDTO? Type1738 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1739 { get; set; } + public global::Vapi.UpdateAzureCredentialDTOService? Type1739 { get; set; } /// /// /// - public global::Vapi.UpdateAzureOpenAICredentialDTOModel? Type1740 { get; set; } + public global::Vapi.UpdateAzureCredentialDTORegion? Type1740 { get; set; } /// /// /// - public global::Vapi.UpdateByoSipTrunkCredentialDTO? Type1741 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTO? Type1741 { get; set; } /// /// /// - public global::Vapi.UpdateCartesiaCredentialDTO? Type1742 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTORegion? Type1742 { get; set; } /// /// /// - public global::Vapi.UpdateCerebrasCredentialDTO? Type1743 { get; set; } + public global::System.Collections.Generic.IList? Type1743 { get; set; } /// /// /// - public global::Vapi.UpdateCloudflareCredentialDTO? Type1744 { get; set; } + public global::Vapi.UpdateAzureOpenAICredentialDTOModel? Type1744 { get; set; } /// /// /// - public global::Vapi.UpdateCustomLLMCredentialDTO? Type1745 { get; set; } + public global::Vapi.UpdateByoSipTrunkCredentialDTO? Type1745 { get; set; } /// /// /// - public global::Vapi.UpdateDeepgramCredentialDTO? Type1746 { get; set; } + public global::Vapi.UpdateCartesiaCredentialDTO? Type1746 { get; set; } /// /// /// - public global::Vapi.UpdateDeepInfraCredentialDTO? Type1747 { get; set; } + public global::Vapi.UpdateCerebrasCredentialDTO? Type1747 { get; set; } /// /// /// - public global::Vapi.UpdateDeepSeekCredentialDTO? Type1748 { get; set; } + public global::Vapi.UpdateCloudflareCredentialDTO? Type1748 { get; set; } /// /// /// - public global::Vapi.UpdateElevenLabsCredentialDTO? Type1749 { get; set; } + public global::Vapi.UpdateCustomLLMCredentialDTO? Type1749 { get; set; } /// /// /// - public global::Vapi.UpdateGcpCredentialDTO? Type1750 { get; set; } + public global::Vapi.UpdateDeepgramCredentialDTO? Type1750 { get; set; } /// /// /// - public global::Vapi.UpdateGladiaCredentialDTO? Type1751 { get; set; } + public global::Vapi.UpdateDeepInfraCredentialDTO? Type1751 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelCredentialDTO? Type1752 { get; set; } + public global::Vapi.UpdateDeepSeekCredentialDTO? Type1752 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCredentialDTO? Type1753 { get; set; } + public global::Vapi.UpdateElevenLabsCredentialDTO? Type1753 { get; set; } /// /// /// - public global::Vapi.UpdateGroqCredentialDTO? Type1754 { get; set; } + public global::Vapi.UpdateGcpCredentialDTO? Type1754 { get; set; } /// /// /// - public global::Vapi.UpdateHumeCredentialDTO? Type1755 { get; set; } + public global::Vapi.UpdateGladiaCredentialDTO? Type1755 { get; set; } /// /// /// - public global::Vapi.UpdateInflectionAICredentialDTO? Type1756 { get; set; } + public global::Vapi.UpdateGoHighLevelCredentialDTO? Type1756 { get; set; } /// /// /// - public global::Vapi.UpdateLangfuseCredentialDTO? Type1757 { get; set; } + public global::Vapi.UpdateGoogleCredentialDTO? Type1757 { get; set; } /// /// /// - public global::Vapi.UpdateLmntCredentialDTO? Type1758 { get; set; } + public global::Vapi.UpdateGroqCredentialDTO? Type1758 { get; set; } /// /// /// - public global::Vapi.UpdateMakeCredentialDTO? Type1759 { get; set; } + public global::Vapi.UpdateHumeCredentialDTO? Type1759 { get; set; } /// /// /// - public global::Vapi.UpdateMistralCredentialDTO? Type1760 { get; set; } + public global::Vapi.UpdateInflectionAICredentialDTO? Type1760 { get; set; } /// /// /// - public global::Vapi.UpdateNeuphonicCredentialDTO? Type1761 { get; set; } + public global::Vapi.UpdateLangfuseCredentialDTO? Type1761 { get; set; } /// /// /// - public global::Vapi.UpdateOpenAICredentialDTO? Type1762 { get; set; } + public global::Vapi.UpdateLmntCredentialDTO? Type1762 { get; set; } /// /// /// - public global::Vapi.UpdateOpenRouterCredentialDTO? Type1763 { get; set; } + public global::Vapi.UpdateMakeCredentialDTO? Type1763 { get; set; } /// /// /// - public global::Vapi.UpdatePerplexityAICredentialDTO? Type1764 { get; set; } + public global::Vapi.UpdateMistralCredentialDTO? Type1764 { get; set; } /// /// /// - public global::Vapi.UpdatePlayHTCredentialDTO? Type1765 { get; set; } + public global::Vapi.UpdateNeuphonicCredentialDTO? Type1765 { get; set; } /// /// /// - public global::Vapi.UpdateRimeAICredentialDTO? Type1766 { get; set; } + public global::Vapi.UpdateOpenAICredentialDTO? Type1766 { get; set; } /// /// /// - public global::Vapi.UpdateRunpodCredentialDTO? Type1767 { get; set; } + public global::Vapi.UpdateOpenRouterCredentialDTO? Type1767 { get; set; } /// /// /// - public global::Vapi.UpdateWellSaidCredentialDTO? Type1768 { get; set; } + public global::Vapi.UpdatePerplexityAICredentialDTO? Type1768 { get; set; } /// /// /// - public global::Vapi.UpdateS3CredentialDTO? Type1769 { get; set; } + public global::Vapi.UpdatePlayHTCredentialDTO? Type1769 { get; set; } /// /// /// - public global::Vapi.UpdateTogetherAICredentialDTO? Type1770 { get; set; } + public global::Vapi.UpdateRimeAICredentialDTO? Type1770 { get; set; } /// /// /// - public global::Vapi.UpdateTwilioCredentialDTO? Type1771 { get; set; } + public global::Vapi.UpdateRunpodCredentialDTO? Type1771 { get; set; } /// /// /// - public global::Vapi.UpdateVonageCredentialDTO? Type1772 { get; set; } + public global::Vapi.UpdateWellSaidCredentialDTO? Type1772 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTO? Type1773 { get; set; } + public global::Vapi.UpdateS3CredentialDTO? Type1773 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan8? Type1774 { get; set; } + public global::Vapi.UpdateTogetherAICredentialDTO? Type1774 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type1775 { get; set; } + public global::Vapi.UpdateTwilioCredentialDTO? Type1775 { get; set; } /// /// /// - public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type1776 { get; set; } + public global::Vapi.UpdateVonageCredentialDTO? Type1776 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTO? Type1777 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTO? Type1777 { get; set; } /// /// /// - public global::Vapi.AuthenticationPlan9? Type1778 { get; set; } + public global::Vapi.AuthenticationPlan8? Type1778 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1779 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminator? Type1779 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1780 { get; set; } + public global::Vapi.UpdateWebhookCredentialDTOAuthenticationPlanDiscriminatorType? Type1780 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminator? Type1781 { get; set; } + public global::Vapi.UpdateCustomCredentialDTO? Type1781 { get; set; } /// /// /// - public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1782 { get; set; } + public global::Vapi.AuthenticationPlan9? Type1782 { get; set; } /// /// /// - public global::Vapi.UpdateXAiCredentialDTO? Type1783 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminator? Type1783 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTO? Type1784 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOAuthenticationPlanDiscriminatorType? Type1784 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTO? Type1785 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminator? Type1785 { get; set; } /// /// /// - public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTO? Type1786 { get; set; } + public global::Vapi.UpdateCustomCredentialDTOEncryptionPlanDiscriminatorType? Type1786 { get; set; } /// /// /// - public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO? Type1787 { get; set; } + public global::Vapi.UpdateXAiCredentialDTO? Type1787 { get; set; } /// /// /// - public global::Vapi.UpdateGoHighLevelMCPCredentialDTO? Type1788 { get; set; } + public global::Vapi.UpdateGoogleCalendarOAuth2ClientCredentialDTO? Type1788 { get; set; } /// /// /// - public global::Vapi.UpdateInworldCredentialDTO? Type1789 { get; set; } + public global::Vapi.UpdateGoogleCalendarOAuth2AuthorizationCredentialDTO? Type1789 { get; set; } /// /// /// - public global::Vapi.UpdateEmailCredentialDTO? Type1790 { get; set; } + public global::Vapi.UpdateGoogleSheetsOAuth2AuthorizationCredentialDTO? Type1790 { get; set; } /// /// /// - public global::Vapi.UpdateSlackWebhookCredentialDTO? Type1791 { get; set; } + public global::Vapi.UpdateSlackOAuth2AuthorizationCredentialDTO? Type1791 { get; set; } /// /// /// - public global::Vapi.UpdateSonioxCredentialDTO? Type1792 { get; set; } + public global::Vapi.UpdateGoHighLevelMCPCredentialDTO? Type1792 { get; set; } /// /// /// - public global::Vapi.CredentialSessionResponse? Type1793 { get; set; } + public global::Vapi.UpdateInworldCredentialDTO? Type1793 { get; set; } /// /// /// - public global::Vapi.CredentialEndUser? Type1794 { get; set; } + public global::Vapi.UpdateEmailCredentialDTO? Type1794 { get; set; } /// /// /// - public global::Vapi.CredentialSessionError? Type1795 { get; set; } + public global::Vapi.UpdateSlackWebhookCredentialDTO? Type1795 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTO? Type1796 { get; set; } + public global::Vapi.UpdateSonioxCredentialDTO? Type1796 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOType? Type1797 { get; set; } + public global::Vapi.CredentialSessionResponse? Type1797 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOOperation? Type1798 { get; set; } + public global::Vapi.CredentialEndUser? Type1798 { get; set; } /// /// /// - public global::Vapi.CredentialWebhookDTOAuthMode? Type1799 { get; set; } + public global::Vapi.CredentialSessionError? Type1799 { get; set; } /// /// /// - public global::Vapi.CredentialActionRequest? Type1800 { get; set; } + public global::Vapi.CredentialWebhookDTO? Type1800 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanType? Type1801 { get; set; } + public global::Vapi.CredentialWebhookDTOType? Type1801 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanAlgorithm? Type1802 { get; set; } + public global::Vapi.CredentialWebhookDTOOperation? Type1802 { get; set; } /// /// /// - public global::Vapi.HMACAuthenticationPlanSignatureEncoding? Type1803 { get; set; } + public global::Vapi.CredentialWebhookDTOAuthMode? Type1803 { get; set; } /// /// /// - public global::Vapi.BearerAuthenticationPlanType? Type1804 { get; set; } + public global::Vapi.CredentialActionRequest? Type1804 { get; set; } /// /// /// - public global::Vapi.AWSIAMCredentialsAuthenticationPlanType? Type1805 { get; set; } + public global::Vapi.HMACAuthenticationPlanType? Type1805 { get; set; } /// /// /// - public global::Vapi.AWSStsAuthenticationPlanType? Type1806 { get; set; } + public global::Vapi.HMACAuthenticationPlanAlgorithm? Type1806 { get; set; } /// /// /// - public global::Vapi.ToolTemplateSetup? Type1807 { get; set; } + public global::Vapi.HMACAuthenticationPlanSignatureEncoding? Type1807 { get; set; } /// /// /// - public global::Vapi.MakeToolProviderDetails? Type1808 { get; set; } + public global::Vapi.BearerAuthenticationPlanType? Type1808 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1809 { get; set; } + public global::Vapi.AWSIAMCredentialsAuthenticationPlanType? Type1809 { get; set; } /// /// /// - public global::Vapi.MakeToolProviderDetailsType? Type1810 { get; set; } + public global::Vapi.AWSStsAuthenticationPlanType? Type1810 { get; set; } /// /// /// - public global::Vapi.GhlToolProviderDetails? Type1811 { get; set; } + public global::Vapi.ToolTemplateSetup? Type1811 { get; set; } /// /// /// - public global::Vapi.GhlToolProviderDetailsType? Type1812 { get; set; } + public global::Vapi.MakeToolProviderDetails? Type1812 { get; set; } /// /// /// - public global::Vapi.FunctionToolProviderDetails? Type1813 { get; set; } + public global::System.Collections.Generic.IList? Type1813 { get; set; } /// /// /// - public global::Vapi.FunctionToolProviderDetailsType? Type1814 { get; set; } + public global::Vapi.MakeToolProviderDetailsType? Type1814 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolProviderDetails? Type1815 { get; set; } + public global::Vapi.GhlToolProviderDetails? Type1815 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolProviderDetailsType? Type1816 { get; set; } + public global::Vapi.GhlToolProviderDetailsType? Type1816 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolProviderDetails? Type1817 { get; set; } + public global::Vapi.FunctionToolProviderDetails? Type1817 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolProviderDetailsType? Type1818 { get; set; } + public global::Vapi.FunctionToolProviderDetailsType? Type1818 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetails? Type1819 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolProviderDetails? Type1819 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetailsType? Type1820 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolProviderDetailsType? Type1820 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetails? Type1821 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolProviderDetails? Type1821 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetailsType? Type1822 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolProviderDetailsType? Type1822 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolProviderDetails? Type1823 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetails? Type1823 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolProviderDetailsType? Type1824 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolProviderDetailsType? Type1824 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolProviderDetails? Type1825 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetails? Type1825 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolProviderDetailsType? Type1826 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolProviderDetailsType? Type1826 { get; set; } /// /// /// - public global::Vapi.ToolTemplateMetadata? Type1827 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolProviderDetails? Type1827 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTO? Type1828 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolProviderDetailsType? Type1828 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOVisibility? Type1829 { get; set; } + public global::Vapi.GoHighLevelContactGetToolProviderDetails? Type1829 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOType? Type1830 { get; set; } + public global::Vapi.GoHighLevelContactGetToolProviderDetailsType? Type1830 { get; set; } /// /// /// - public global::Vapi.CreateToolTemplateDTOProvider? Type1831 { get; set; } + public global::Vapi.ToolTemplateMetadata? Type1831 { get; set; } /// /// /// - public global::Vapi.Template? Type1832 { get; set; } + public global::Vapi.CreateToolTemplateDTO? Type1832 { get; set; } /// /// /// - public global::Vapi.TemplateVisibility? Type1833 { get; set; } + public global::Vapi.CreateToolTemplateDTOVisibility? Type1833 { get; set; } /// /// /// - public global::Vapi.TemplateType? Type1834 { get; set; } + public global::Vapi.CreateToolTemplateDTOType? Type1834 { get; set; } /// /// /// - public global::Vapi.TemplateProvider? Type1835 { get; set; } + public global::Vapi.CreateToolTemplateDTOProvider? Type1835 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTO? Type1836 { get; set; } + public global::Vapi.Template? Type1836 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOVisibility? Type1837 { get; set; } + public global::Vapi.TemplateVisibility? Type1837 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOType? Type1838 { get; set; } + public global::Vapi.TemplateType? Type1838 { get; set; } /// /// /// - public global::Vapi.UpdateToolTemplateDTOProvider? Type1839 { get; set; } + public global::Vapi.TemplateProvider? Type1839 { get; set; } /// /// /// - public global::Vapi.VoiceLibrary? Type1840 { get; set; } + public global::Vapi.UpdateToolTemplateDTO? Type1840 { get; set; } /// /// /// - public global::Vapi.VoiceLibraryGender? Type1841 { get; set; } + public global::Vapi.UpdateToolTemplateDTOVisibility? Type1841 { get; set; } /// /// /// - public global::Vapi.SyncVoiceLibraryDTO? Type1842 { get; set; } + public global::Vapi.UpdateToolTemplateDTOType? Type1842 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1843 { get; set; } + public global::Vapi.UpdateToolTemplateDTOProvider? Type1843 { get; set; } /// /// /// - public global::Vapi.SyncVoiceLibraryDTOProvider? Type1844 { get; set; } + public global::Vapi.VoiceLibrary? Type1844 { get; set; } /// /// /// - public global::Vapi.CreateSesameVoiceDTO? Type1845 { get; set; } + public global::Vapi.VoiceLibraryGender? Type1845 { get; set; } /// /// /// - public global::Vapi.CartesiaPronunciationDictItem? Type1846 { get; set; } + public global::Vapi.SyncVoiceLibraryDTO? Type1846 { get; set; } /// /// /// - public global::Vapi.CartesiaPronunciationDictionary? Type1847 { get; set; } + public global::System.Collections.Generic.IList? Type1847 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1848 { get; set; } + public global::Vapi.SyncVoiceLibraryDTOProvider? Type1848 { get; set; } /// /// /// - public global::Vapi.ElevenLabsPronunciationDictionary? Type1849 { get; set; } + public global::Vapi.CreateSesameVoiceDTO? Type1849 { get; set; } /// /// /// - public global::Vapi.ElevenLabsPronunciationDictionaryPermissionOnResource? Type1850 { get; set; } + public global::Vapi.CartesiaPronunciationDictItem? Type1850 { get; set; } /// /// /// - public global::Vapi.ProviderResource? Type1851 { get; set; } + public global::Vapi.CartesiaPronunciationDictionary? Type1851 { get; set; } /// /// /// - public global::Vapi.ProviderResourceProvider? Type1852 { get; set; } + public global::System.Collections.Generic.IList? Type1852 { get; set; } /// /// /// - public global::Vapi.ProviderResourceResourceName? Type1853 { get; set; } + public global::Vapi.ElevenLabsPronunciationDictionary? Type1853 { get; set; } /// /// /// - public global::Vapi.ProviderResourcePaginatedResponse? Type1854 { get; set; } + public global::Vapi.ElevenLabsPronunciationDictionaryPermissionOnResource? Type1854 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1855 { get; set; } + public global::Vapi.ProviderResource? Type1855 { get; set; } /// /// /// - public global::Vapi.VoiceLibraryVoiceResponse? Type1856 { get; set; } + public global::Vapi.ProviderResourceProvider? Type1856 { get; set; } /// /// /// - public global::Vapi.AddVoiceToProviderDTO? Type1857 { get; set; } + public global::Vapi.ProviderResourceResourceName? Type1857 { get; set; } /// /// /// - public global::Vapi.CloneVoiceDTO? Type1858 { get; set; } + public global::Vapi.ProviderResourcePaginatedResponse? Type1858 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1859 { get; set; } + public global::System.Collections.Generic.IList? Type1859 { get; set; } /// /// /// - public global::Vapi.VariableValueGroupBy? Type1860 { get; set; } + public global::Vapi.VoiceLibraryVoiceResponse? Type1860 { get; set; } /// /// /// - public global::Vapi.TimeRange? Type1861 { get; set; } + public global::Vapi.AddVoiceToProviderDTO? Type1861 { get; set; } /// /// /// - public global::Vapi.TimeRangeStep? Type1862 { get; set; } + public global::Vapi.CloneVoiceDTO? Type1862 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperation? Type1863 { get; set; } + public global::System.Collections.Generic.IList? Type1863 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperationOperation? Type1864 { get; set; } + public global::Vapi.VariableValueGroupBy? Type1864 { get; set; } /// /// /// - public global::Vapi.AnalyticsOperationColumn? Type1865 { get; set; } + public global::Vapi.TimeRange? Type1865 { get; set; } /// /// /// - public global::Vapi.AnalyticsQuery? Type1866 { get; set; } + public global::Vapi.TimeRangeStep? Type1866 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryTable? Type1867 { get; set; } + public global::Vapi.AnalyticsOperation? Type1867 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1868 { get; set; } + public global::Vapi.AnalyticsOperationOperation? Type1868 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryGroupByItem? Type1869 { get; set; } + public global::Vapi.AnalyticsOperationColumn? Type1869 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1870 { get; set; } + public global::Vapi.AnalyticsQuery? Type1870 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1871 { get; set; } + public global::Vapi.AnalyticsQueryTable? Type1871 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryDTO? Type1872 { get; set; } + public global::System.Collections.Generic.IList? Type1872 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1873 { get; set; } + public global::Vapi.AnalyticsQueryGroupByItem? Type1873 { get; set; } /// /// /// - public global::Vapi.AnalyticsQueryResult? Type1874 { get; set; } + public global::System.Collections.Generic.IList? Type1874 { get; set; } /// /// /// - public global::Vapi.ClientMessageWorkflowNodeStarted? Type1875 { get; set; } + public global::System.Collections.Generic.IList? Type1875 { get; set; } /// /// /// - public global::Vapi.ClientMessageWorkflowNodeStartedType? Type1876 { get; set; } + public global::Vapi.AnalyticsQueryDTO? Type1876 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantStarted? Type1877 { get; set; } + public global::System.Collections.Generic.IList? Type1877 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantStartedType? Type1878 { get; set; } + public global::Vapi.AnalyticsQueryResult? Type1878 { get; set; } /// /// /// - public global::Vapi.ClientMessageConversationUpdate? Type1879 { get; set; } + public global::Vapi.ClientMessageWorkflowNodeStarted? Type1879 { get; set; } /// /// /// - public global::Vapi.ClientMessageConversationUpdateType? Type1880 { get; set; } + public global::Vapi.ClientMessageWorkflowNodeStartedType? Type1880 { get; set; } /// /// /// - public global::Vapi.ClientMessageHang? Type1881 { get; set; } + public global::Vapi.ClientMessageAssistantStarted? Type1881 { get; set; } /// /// /// - public global::Vapi.ClientMessageHangType? Type1882 { get; set; } + public global::Vapi.ClientMessageAssistantStartedType? Type1882 { get; set; } /// /// /// - public global::Vapi.ClientMessageMetadata? Type1883 { get; set; } + public global::Vapi.ClientMessageConversationUpdate? Type1883 { get; set; } /// /// /// - public global::Vapi.ClientMessageMetadataType? Type1884 { get; set; } + public global::Vapi.ClientMessageConversationUpdateType? Type1884 { get; set; } /// /// /// - public global::Vapi.ClientMessageModelOutput? Type1885 { get; set; } + public global::Vapi.ClientMessageHang? Type1885 { get; set; } /// /// /// - public global::Vapi.ClientMessageModelOutputType? Type1886 { get; set; } + public global::Vapi.ClientMessageHangType? Type1886 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdate? Type1887 { get; set; } + public global::Vapi.ClientMessageMetadata? Type1887 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateType? Type1888 { get; set; } + public global::Vapi.ClientMessageMetadataType? Type1888 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateStatus? Type1889 { get; set; } + public global::Vapi.ClientMessageModelOutput? Type1889 { get; set; } /// /// /// - public global::Vapi.ClientMessageSpeechUpdateRole? Type1890 { get; set; } + public global::Vapi.ClientMessageModelOutputType? Type1890 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscript? Type1891 { get; set; } + public global::Vapi.ClientMessageSpeechUpdate? Type1891 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptType? Type1892 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateType? Type1892 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptRole? Type1893 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateStatus? Type1893 { get; set; } /// /// /// - public global::Vapi.ClientMessageTranscriptTranscriptType? Type1894 { get; set; } + public global::Vapi.ClientMessageSpeechUpdateRole? Type1894 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCalls? Type1895 { get; set; } + public global::Vapi.ClientMessageTranscript? Type1895 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsType? Type1896 { get; set; } + public global::Vapi.ClientMessageTranscriptType? Type1896 { get; set; } /// /// /// - public global::Vapi.FunctionToolWithToolCall? Type1897 { get; set; } + public global::Vapi.ClientMessageTranscriptRole? Type1897 { get; set; } /// /// /// - public global::Vapi.GhlToolWithToolCall? Type1898 { get; set; } + public global::Vapi.ClientMessageTranscriptTranscriptType? Type1898 { get; set; } /// /// /// - public global::Vapi.MakeToolWithToolCall? Type1899 { get; set; } + public global::Vapi.ClientMessageToolCalls? Type1899 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCall? Type1900 { get; set; } + public global::Vapi.ClientMessageToolCallsType? Type1900 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCall? Type1901 { get; set; } + public global::Vapi.FunctionToolWithToolCall? Type1901 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCall? Type1902 { get; set; } + public global::Vapi.GhlToolWithToolCall? Type1902 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolWithToolCall? Type1903 { get; set; } + public global::Vapi.MakeToolWithToolCall? Type1903 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsResult? Type1904 { get; set; } + public global::Vapi.BashToolWithToolCall? Type1904 { get; set; } /// /// /// - public global::Vapi.ClientMessageToolCallsResultType? Type1905 { get; set; } + public global::Vapi.ComputerToolWithToolCall? Type1905 { get; set; } /// /// /// - public global::Vapi.ClientMessageTransferUpdate? Type1906 { get; set; } + public global::Vapi.TextEditorToolWithToolCall? Type1906 { get; set; } /// /// /// - public global::Vapi.ClientMessageTransferUpdateType? Type1907 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolWithToolCall? Type1907 { get; set; } /// /// /// - public global::Vapi.ClientMessageUserInterrupted? Type1908 { get; set; } + public global::Vapi.ClientMessageToolCallsResult? Type1908 { get; set; } /// /// /// - public global::Vapi.ClientMessageUserInterruptedType? Type1909 { get; set; } + public global::Vapi.ClientMessageToolCallsResultType? Type1909 { get; set; } /// /// /// - public global::Vapi.ClientMessageLanguageChangeDetected? Type1910 { get; set; } + public global::Vapi.ClientMessageTransferUpdate? Type1910 { get; set; } /// /// /// - public global::Vapi.ClientMessageLanguageChangeDetectedType? Type1911 { get; set; } + public global::Vapi.ClientMessageTransferUpdateType? Type1911 { get; set; } /// /// /// - public global::Vapi.ClientMessageVoiceInput? Type1912 { get; set; } + public global::Vapi.ClientMessageUserInterrupted? Type1912 { get; set; } /// /// /// - public global::Vapi.ClientMessageVoiceInputType? Type1913 { get; set; } + public global::Vapi.ClientMessageUserInterruptedType? Type1913 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeech? Type1914 { get; set; } + public global::Vapi.ClientMessageLanguageChangeDetected? Type1914 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechType? Type1915 { get; set; } + public global::Vapi.ClientMessageLanguageChangeDetectedType? Type1915 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechSource? Type1916 { get; set; } + public global::Vapi.ClientMessageVoiceInput? Type1916 { get; set; } /// /// /// - public global::Vapi.Timing? Type1917 { get; set; } + public global::Vapi.ClientMessageVoiceInputType? Type1917 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminator? Type1918 { get; set; } + public global::Vapi.ClientMessageAssistantSpeech? Type1918 { get; set; } /// /// /// - public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminatorType? Type1919 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechType? Type1919 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatCreated? Type1920 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechSource? Type1920 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatCreatedType? Type1921 { get; set; } + public global::Vapi.Timing? Type1921 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatDeleted? Type1922 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminator? Type1922 { get; set; } /// /// /// - public global::Vapi.ClientMessageChatDeletedType? Type1923 { get; set; } + public global::Vapi.ClientMessageAssistantSpeechTimingDiscriminatorType? Type1923 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionCreated? Type1924 { get; set; } + public global::Vapi.ClientMessageChatCreated? Type1924 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionCreatedType? Type1925 { get; set; } + public global::Vapi.ClientMessageChatCreatedType? Type1925 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionUpdated? Type1926 { get; set; } + public global::Vapi.ClientMessageChatDeleted? Type1926 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionUpdatedType? Type1927 { get; set; } + public global::Vapi.ClientMessageChatDeletedType? Type1927 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionDeleted? Type1928 { get; set; } + public global::Vapi.ClientMessageSessionCreated? Type1928 { get; set; } /// /// /// - public global::Vapi.ClientMessageSessionDeletedType? Type1929 { get; set; } + public global::Vapi.ClientMessageSessionCreatedType? Type1929 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleted? Type1930 { get; set; } + public global::Vapi.ClientMessageSessionUpdated? Type1930 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeletedType? Type1931 { get; set; } + public global::Vapi.ClientMessageSessionUpdatedType? Type1931 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleteFailed? Type1932 { get; set; } + public global::Vapi.ClientMessageSessionDeleted? Type1932 { get; set; } /// /// /// - public global::Vapi.ClientMessageCallDeleteFailedType? Type1933 { get; set; } + public global::Vapi.ClientMessageSessionDeletedType? Type1933 { get; set; } /// /// /// - public global::Vapi.ClientMessage? Type1934 { get; set; } + public global::Vapi.ClientMessageCallDeleted? Type1934 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantRequest? Type1935 { get; set; } + public global::Vapi.ClientMessageCallDeletedType? Type1935 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantRequestType? Type1936 { get; set; } + public global::Vapi.ClientMessageCallDeleteFailed? Type1936 { get; set; } /// /// /// - public global::Vapi.ServerMessageConversationUpdate? Type1937 { get; set; } + public global::Vapi.ClientMessageCallDeleteFailedType? Type1937 { get; set; } /// /// /// - public global::Vapi.ServerMessageConversationUpdateType? Type1938 { get; set; } + public global::Vapi.ClientMessage? Type1938 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReport? Type1939 { get; set; } + public global::Vapi.ServerMessageAssistantRequest? Type1939 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReportType? Type1940 { get; set; } + public global::Vapi.ServerMessageAssistantRequestType? Type1940 { get; set; } /// /// /// - public global::Vapi.ServerMessageEndOfCallReportEndedReason? Type1941 { get; set; } + public global::Vapi.ServerMessageConversationUpdate? Type1941 { get; set; } /// /// /// - public global::Vapi.ServerMessageHandoffDestinationRequest? Type1942 { get; set; } + public global::Vapi.ServerMessageConversationUpdateType? Type1942 { get; set; } /// /// /// - public global::Vapi.ServerMessageHandoffDestinationRequestType? Type1943 { get; set; } + public global::Vapi.ServerMessageEndOfCallReport? Type1943 { get; set; } /// /// /// - public global::Vapi.ServerMessageHang? Type1944 { get; set; } + public global::Vapi.ServerMessageEndOfCallReportType? Type1944 { get; set; } /// /// /// - public global::Vapi.ServerMessageHangType? Type1945 { get; set; } + public global::Vapi.ServerMessageEndOfCallReportEndedReason? Type1945 { get; set; } /// /// /// - public global::Vapi.ServerMessageKnowledgeBaseRequest? Type1946 { get; set; } + public global::Vapi.ServerMessageHandoffDestinationRequest? Type1946 { get; set; } /// /// /// - public global::Vapi.ServerMessageKnowledgeBaseRequestType? Type1947 { get; set; } + public global::Vapi.ServerMessageHandoffDestinationRequestType? Type1947 { get; set; } /// /// /// - public global::Vapi.ServerMessageModelOutput? Type1948 { get; set; } + public global::Vapi.ServerMessageHang? Type1948 { get; set; } /// /// /// - public global::Vapi.ServerMessageModelOutputType? Type1949 { get; set; } + public global::Vapi.ServerMessageHangType? Type1949 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControl? Type1950 { get; set; } + public global::Vapi.ServerMessageKnowledgeBaseRequest? Type1950 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControlType? Type1951 { get; set; } + public global::Vapi.ServerMessageKnowledgeBaseRequestType? Type1951 { get; set; } /// /// /// - public global::Vapi.ServerMessagePhoneCallControlRequest? Type1952 { get; set; } + public global::Vapi.ServerMessageModelOutput? Type1952 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdate? Type1953 { get; set; } + public global::Vapi.ServerMessageModelOutputType? Type1953 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateType? Type1954 { get; set; } + public global::Vapi.ServerMessagePhoneCallControl? Type1954 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateStatus? Type1955 { get; set; } + public global::Vapi.ServerMessagePhoneCallControlType? Type1955 { get; set; } /// /// /// - public global::Vapi.ServerMessageSpeechUpdateRole? Type1956 { get; set; } + public global::Vapi.ServerMessagePhoneCallControlRequest? Type1956 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdate? Type1957 { get; set; } + public global::Vapi.ServerMessageSpeechUpdate? Type1957 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateType? Type1958 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateType? Type1958 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateStatus? Type1959 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateStatus? Type1959 { get; set; } /// /// /// - public global::Vapi.ServerMessageStatusUpdateEndedReason? Type1960 { get; set; } + public global::Vapi.ServerMessageSpeechUpdateRole? Type1960 { get; set; } /// /// /// - public global::Vapi.ServerMessageToolCalls? Type1961 { get; set; } + public global::Vapi.ServerMessageStatusUpdate? Type1961 { get; set; } /// /// /// - public global::Vapi.ServerMessageToolCallsType? Type1962 { get; set; } + public global::Vapi.ServerMessageStatusUpdateType? Type1962 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferDestinationRequest? Type1963 { get; set; } + public global::Vapi.ServerMessageStatusUpdateStatus? Type1963 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferDestinationRequestType? Type1964 { get; set; } + public global::Vapi.ServerMessageStatusUpdateEndedReason? Type1964 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferUpdate? Type1965 { get; set; } + public global::Vapi.ServerMessageToolCalls? Type1965 { get; set; } /// /// /// - public global::Vapi.ServerMessageTransferUpdateType? Type1966 { get; set; } + public global::Vapi.ServerMessageToolCallsType? Type1966 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscript? Type1967 { get; set; } + public global::Vapi.ServerMessageTransferDestinationRequest? Type1967 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptType? Type1968 { get; set; } + public global::Vapi.ServerMessageTransferDestinationRequestType? Type1968 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptRole? Type1969 { get; set; } + public global::Vapi.ServerMessageTransferUpdate? Type1969 { get; set; } /// /// /// - public global::Vapi.ServerMessageTranscriptTranscriptType? Type1970 { get; set; } + public global::Vapi.ServerMessageTransferUpdateType? Type1970 { get; set; } /// /// /// - public global::Vapi.ServerMessageUserInterrupted? Type1971 { get; set; } + public global::Vapi.ServerMessageTranscript? Type1971 { get; set; } /// /// /// - public global::Vapi.ServerMessageUserInterruptedType? Type1972 { get; set; } + public global::Vapi.ServerMessageTranscriptType? Type1972 { get; set; } /// /// /// - public global::Vapi.ServerMessageLanguageChangeDetected? Type1973 { get; set; } + public global::Vapi.ServerMessageTranscriptRole? Type1973 { get; set; } /// /// /// - public global::Vapi.ServerMessageLanguageChangeDetectedType? Type1974 { get; set; } + public global::Vapi.ServerMessageTranscriptTranscriptType? Type1974 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceInput? Type1975 { get; set; } + public global::Vapi.ServerMessageUserInterrupted? Type1975 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceInputType? Type1976 { get; set; } + public global::Vapi.ServerMessageUserInterruptedType? Type1976 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeech? Type1977 { get; set; } + public global::Vapi.ServerMessageLanguageChangeDetected? Type1977 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechType? Type1978 { get; set; } + public global::Vapi.ServerMessageLanguageChangeDetectedType? Type1978 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechSource? Type1979 { get; set; } + public global::Vapi.ServerMessageVoiceInput? Type1979 { get; set; } /// /// /// - public global::Vapi.Timing2? Type1980 { get; set; } + public global::Vapi.ServerMessageVoiceInputType? Type1980 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminator? Type1981 { get; set; } + public global::Vapi.ServerMessageAssistantSpeech? Type1981 { get; set; } /// /// /// - public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminatorType? Type1982 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechType? Type1982 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceRequest? Type1983 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechSource? Type1983 { get; set; } /// /// /// - public global::Vapi.ServerMessageVoiceRequestType? Type1984 { get; set; } + public global::Vapi.Timing2? Type1984 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallEndpointingRequest? Type1985 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminator? Type1985 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallEndpointingRequestType? Type1986 { get; set; } + public global::Vapi.ServerMessageAssistantSpeechTimingDiscriminatorType? Type1986 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatCreated? Type1987 { get; set; } + public global::Vapi.ServerMessageVoiceRequest? Type1987 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatCreatedType? Type1988 { get; set; } + public global::Vapi.ServerMessageVoiceRequestType? Type1988 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatDeleted? Type1989 { get; set; } + public global::Vapi.ServerMessageCallEndpointingRequest? Type1989 { get; set; } /// /// /// - public global::Vapi.ServerMessageChatDeletedType? Type1990 { get; set; } + public global::Vapi.ServerMessageCallEndpointingRequestType? Type1990 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionCreated? Type1991 { get; set; } + public global::Vapi.ServerMessageChatCreated? Type1991 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionCreatedType? Type1992 { get; set; } + public global::Vapi.ServerMessageChatCreatedType? Type1992 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionUpdated? Type1993 { get; set; } + public global::Vapi.ServerMessageChatDeleted? Type1993 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionUpdatedType? Type1994 { get; set; } + public global::Vapi.ServerMessageChatDeletedType? Type1994 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionDeleted? Type1995 { get; set; } + public global::Vapi.ServerMessageSessionCreated? Type1995 { get; set; } /// /// /// - public global::Vapi.ServerMessageSessionDeletedType? Type1996 { get; set; } + public global::Vapi.ServerMessageSessionCreatedType? Type1996 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleted? Type1997 { get; set; } + public global::Vapi.ServerMessageSessionUpdated? Type1997 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeletedType? Type1998 { get; set; } + public global::Vapi.ServerMessageSessionUpdatedType? Type1998 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleteFailed? Type1999 { get; set; } + public global::Vapi.ServerMessageSessionDeleted? Type1999 { get; set; } /// /// /// - public global::Vapi.ServerMessageCallDeleteFailedType? Type2000 { get; set; } + public global::Vapi.ServerMessageSessionDeletedType? Type2000 { get; set; } /// /// /// - public global::Vapi.ServerMessage? Type2001 { get; set; } + public global::Vapi.ServerMessageCallDeleted? Type2001 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseAssistantRequest? Type2002 { get; set; } + public global::Vapi.ServerMessageCallDeletedType? Type2002 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseHandoffDestinationRequest? Type2003 { get; set; } + public global::Vapi.ServerMessageCallDeleteFailed? Type2003 { get; set; } /// /// /// - public global::Vapi.KnowledgeBaseResponseDocument? Type2004 { get; set; } + public global::Vapi.ServerMessageCallDeleteFailedType? Type2004 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseKnowledgeBaseRequest? Type2005 { get; set; } + public global::Vapi.ServerMessage? Type2005 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2006 { get; set; } + public global::Vapi.ServerMessageResponseAssistantRequest? Type2006 { get; set; } /// /// /// - public global::Vapi.ToolCallResult? Type2007 { get; set; } + public global::Vapi.ServerMessageResponseHandoffDestinationRequest? Type2007 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2008 { get; set; } + public global::Vapi.KnowledgeBaseResponseDocument? Type2008 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseToolCalls? Type2009 { get; set; } + public global::Vapi.ServerMessageResponseKnowledgeBaseRequest? Type2009 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2010 { get; set; } + public global::System.Collections.Generic.IList? Type2010 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseTransferDestinationRequest? Type2011 { get; set; } + public global::Vapi.ToolCallResult? Type2011 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseVoiceRequest? Type2012 { get; set; } + public global::Vapi.OneOf? Type2012 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponseCallEndpointingRequest? Type2013 { get; set; } + public global::Vapi.ServerMessageResponseToolCalls? Type2013 { get; set; } /// /// /// - public global::Vapi.ServerMessageResponse? Type2014 { get; set; } + public global::System.Collections.Generic.IList? Type2014 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageAddMessage? Type2015 { get; set; } + public global::Vapi.ServerMessageResponseTransferDestinationRequest? Type2015 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageAddMessageType? Type2016 { get; set; } + public global::Vapi.ServerMessageResponseVoiceRequest? Type2016 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControl? Type2017 { get; set; } + public global::Vapi.ServerMessageResponseCallEndpointingRequest? Type2017 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControlType? Type2018 { get; set; } + public global::Vapi.ServerMessageResponse? Type2018 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageControlControl? Type2019 { get; set; } + public global::Vapi.ClientInboundMessageAddMessage? Type2019 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSay? Type2020 { get; set; } + public global::Vapi.ClientInboundMessageAddMessageType? Type2020 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSayType? Type2021 { get; set; } + public global::Vapi.ClientInboundMessageControl? Type2021 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageEndCall? Type2022 { get; set; } + public global::Vapi.ClientInboundMessageControlType? Type2022 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageEndCallType? Type2023 { get; set; } + public global::Vapi.ClientInboundMessageControlControl? Type2023 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageTransfer? Type2024 { get; set; } + public global::Vapi.ClientInboundMessageSay? Type2024 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageTransferType? Type2025 { get; set; } + public global::Vapi.ClientInboundMessageSayType? Type2025 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSendTransportMessage? Type2026 { get; set; } + public global::Vapi.ClientInboundMessageEndCall? Type2026 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessageSendTransportMessageType? Type2027 { get; set; } + public global::Vapi.ClientInboundMessageEndCallType? Type2027 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2028 { get; set; } + public global::Vapi.ClientInboundMessageTransfer? Type2028 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessage? Type2029 { get; set; } + public global::Vapi.ClientInboundMessageTransferType? Type2029 { get; set; } /// /// /// - public global::Vapi.TwilioTransportMessage? Type2030 { get; set; } + public global::Vapi.ClientInboundMessageSendTransportMessage? Type2030 { get; set; } /// /// /// - public global::Vapi.ClientInboundMessage? Type2031 { get; set; } + public global::Vapi.ClientInboundMessageSendTransportMessageType? Type2031 { get; set; } /// /// /// - public global::Vapi.ToolCallResultMessageWarning? Type2032 { get; set; } + public global::Vapi.OneOf? Type2032 { get; set; } /// /// /// - public global::Vapi.ToolCallResultMessageWarningType? Type2033 { get; set; } + public global::Vapi.VapiSipTransportMessage? Type2033 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2034 { get; set; } + public global::Vapi.TwilioTransportMessage? Type2034 { get; set; } /// /// /// - public global::Vapi.TransportCostType? Type2035 { get; set; } + public global::Vapi.ClientInboundMessage? Type2035 { get; set; } /// /// /// - public global::Vapi.TransportCostProvider? Type2036 { get; set; } + public global::Vapi.ToolCallResultMessageWarning? Type2036 { get; set; } /// /// /// - public global::Vapi.TranscriberCostType? Type2037 { get; set; } + public global::Vapi.ToolCallResultMessageWarningType? Type2037 { get; set; } /// /// /// - public global::Vapi.ModelCostType? Type2038 { get; set; } + public global::System.Collections.Generic.IList? Type2038 { get; set; } /// /// /// - public global::Vapi.VoiceCostType? Type2039 { get; set; } + public global::Vapi.TransportCostType? Type2039 { get; set; } /// /// /// - public global::Vapi.VapiCostType? Type2040 { get; set; } + public global::Vapi.TransportCostProvider? Type2040 { get; set; } /// /// /// - public global::Vapi.VapiCostSubType? Type2041 { get; set; } + public global::Vapi.TranscriberCostType? Type2041 { get; set; } /// /// /// - public global::Vapi.AnalysisCostType? Type2042 { get; set; } + public global::Vapi.ModelCostType? Type2042 { get; set; } /// /// /// - public global::Vapi.AnalysisCostAnalysisType? Type2043 { get; set; } + public global::Vapi.VoiceCostType? Type2043 { get; set; } /// /// /// - public global::Vapi.VoicemailDetectionCostType? Type2044 { get; set; } + public global::Vapi.VapiCostType? Type2044 { get; set; } /// /// /// - public global::Vapi.VoicemailDetectionCostProvider? Type2045 { get; set; } + public global::Vapi.VapiCostSubType? Type2045 { get; set; } /// /// /// - public global::Vapi.KnowledgeBaseCostType? Type2046 { get; set; } + public global::Vapi.AnalysisCostType? Type2046 { get; set; } /// /// /// - public global::Vapi.ChatCostType? Type2047 { get; set; } + public global::Vapi.AnalysisCostAnalysisType? Type2047 { get; set; } /// /// /// - public global::Vapi.SessionCostType? Type2048 { get; set; } + public global::Vapi.VoicemailDetectionCostType? Type2048 { get; set; } /// /// /// - public global::Vapi.FunctionToolWithToolCallType? Type2049 { get; set; } + public global::Vapi.VoicemailDetectionCostProvider? Type2049 { get; set; } /// /// /// - public global::Vapi.GhlToolWithToolCallType? Type2050 { get; set; } + public global::Vapi.KnowledgeBaseCostType? Type2050 { get; set; } /// /// /// - public global::Vapi.MakeToolWithToolCallType? Type2051 { get; set; } + public global::Vapi.ChatCostType? Type2051 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallType? Type2052 { get; set; } + public global::Vapi.SessionCostType? Type2052 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallSubType? Type2053 { get; set; } + public global::Vapi.FunctionToolWithToolCallType? Type2053 { get; set; } /// /// /// - public global::Vapi.BashToolWithToolCallName? Type2054 { get; set; } + public global::Vapi.GhlToolWithToolCallType? Type2054 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallType? Type2055 { get; set; } + public global::Vapi.MakeToolWithToolCallType? Type2055 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallSubType? Type2056 { get; set; } + public global::Vapi.BashToolWithToolCallType? Type2056 { get; set; } /// /// /// - public global::Vapi.ComputerToolWithToolCallName? Type2057 { get; set; } + public global::Vapi.BashToolWithToolCallSubType? Type2057 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallType? Type2058 { get; set; } + public global::Vapi.BashToolWithToolCallName? Type2058 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallSubType? Type2059 { get; set; } + public global::Vapi.ComputerToolWithToolCallType? Type2059 { get; set; } /// /// /// - public global::Vapi.TextEditorToolWithToolCallName? Type2060 { get; set; } + public global::Vapi.ComputerToolWithToolCallSubType? Type2060 { get; set; } /// /// /// - public global::Vapi.GoogleCalendarCreateEventToolWithToolCallType? Type2061 { get; set; } + public global::Vapi.ComputerToolWithToolCallName? Type2061 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolWithToolCall? Type2062 { get; set; } + public global::Vapi.TextEditorToolWithToolCallType? Type2062 { get; set; } /// /// /// - public global::Vapi.GoogleSheetsRowAppendToolWithToolCallType? Type2063 { get; set; } + public global::Vapi.TextEditorToolWithToolCallSubType? Type2063 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCall? Type2064 { get; set; } + public global::Vapi.TextEditorToolWithToolCallName? Type2064 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCallType? Type2065 { get; set; } + public global::Vapi.GoogleCalendarCreateEventToolWithToolCallType? Type2065 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCall? Type2066 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolWithToolCall? Type2066 { get; set; } /// /// /// - public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCallType? Type2067 { get; set; } + public global::Vapi.GoogleSheetsRowAppendToolWithToolCallType? Type2067 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolWithToolCall? Type2068 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCall? Type2068 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactCreateToolWithToolCallType? Type2069 { get; set; } + public global::Vapi.GoHighLevelCalendarAvailabilityToolWithToolCallType? Type2069 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolWithToolCall? Type2070 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCall? Type2070 { get; set; } /// /// /// - public global::Vapi.GoHighLevelContactGetToolWithToolCallType? Type2071 { get; set; } + public global::Vapi.GoHighLevelCalendarEventCreateToolWithToolCallType? Type2071 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessageTransport? Type2072 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolWithToolCall? Type2072 { get; set; } /// /// /// - public global::Vapi.VapiSipTransportMessageSipVerb? Type2073 { get; set; } + public global::Vapi.GoHighLevelContactCreateToolWithToolCallType? Type2073 { get; set; } /// /// /// - public global::Vapi.TwilioTransportMessageTransport? Type2074 { get; set; } + public global::Vapi.GoHighLevelContactGetToolWithToolCall? Type2074 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequest? Type2075 { get; set; } + public global::Vapi.GoHighLevelContactGetToolWithToolCallType? Type2075 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequestDiscriminator? Type2076 { get; set; } + public global::Vapi.VapiSipTransportMessageTransport? Type2076 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateRequestDiscriminatorProvider? Type2077 { get; set; } + public global::Vapi.VapiSipTransportMessageSipVerb? Type2077 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequest? Type2078 { get; set; } + public global::Vapi.TwilioTransportMessageTransport? Type2078 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminator? Type2079 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequest? Type2079 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminatorProvider? Type2080 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequestDiscriminator? Type2080 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequest? Type2081 { get; set; } + public global::Vapi.PhoneNumberControllerCreateRequestDiscriminatorProvider? Type2081 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequestDiscriminator? Type2082 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequest? Type2082 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateRequestDiscriminatorType? Type2083 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminator? Type2083 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequest? Type2084 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateRequestDiscriminatorProvider? Type2084 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequestDiscriminator? Type2085 { get; set; } + public global::Vapi.ToolControllerCreateRequest? Type2085 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateRequestDiscriminatorType? Type2086 { get; set; } + public global::Vapi.ToolControllerCreateRequestDiscriminator? Type2086 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequest? Type2087 { get; set; } + public global::Vapi.ToolControllerCreateRequestDiscriminatorType? Type2087 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequestDiscriminator? Type2088 { get; set; } + public global::Vapi.ToolControllerUpdateRequest? Type2088 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateRequestDiscriminatorType? Type2089 { get; set; } + public global::Vapi.ToolControllerUpdateRequestDiscriminator? Type2089 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequest? Type2090 { get; set; } + public global::Vapi.ToolControllerUpdateRequestDiscriminatorType? Type2090 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequestDiscriminator? Type2091 { get; set; } + public global::Vapi.InsightControllerCreateRequest? Type2091 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateRequestDiscriminatorType? Type2092 { get; set; } + public global::Vapi.InsightControllerCreateRequestDiscriminator? Type2092 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequest? Type2093 { get; set; } + public global::Vapi.InsightControllerCreateRequestDiscriminatorType? Type2093 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequestDiscriminator? Type2094 { get; set; } + public global::Vapi.InsightControllerUpdateRequest? Type2094 { get; set; } /// /// /// - public global::Vapi.InsightControllerPreviewRequestDiscriminatorType? Type2095 { get; set; } + public global::Vapi.InsightControllerUpdateRequestDiscriminator? Type2095 { get; set; } /// /// /// - public global::Vapi.ChatControllerListChatsSortOrder? Type2096 { get; set; } + public global::Vapi.InsightControllerUpdateRequestDiscriminatorType? Type2096 { get; set; } /// /// /// - public global::Vapi.ChatControllerListChatsSortBy? Type2097 { get; set; } + public global::Vapi.InsightControllerPreviewRequest? Type2097 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllStatus? Type2098 { get; set; } + public global::Vapi.InsightControllerPreviewRequestDiscriminator? Type2098 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllSortOrder? Type2099 { get; set; } + public global::Vapi.InsightControllerPreviewRequestDiscriminatorType? Type2099 { get; set; } /// /// /// - public global::Vapi.CampaignControllerFindAllSortBy? Type2100 { get; set; } + public global::Vapi.ChatControllerListChatsSortOrder? Type2100 { get; set; } /// /// /// - public global::Vapi.SessionControllerFindAllPaginatedSortOrder? Type2101 { get; set; } + public global::Vapi.ChatControllerListChatsSortBy? Type2101 { get; set; } /// /// /// - public global::Vapi.SessionControllerFindAllPaginatedSortBy? Type2102 { get; set; } + public global::Vapi.CampaignControllerFindAllStatus? Type2102 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllPaginatedSortOrder? Type2103 { get; set; } + public global::Vapi.CampaignControllerFindAllSortOrder? Type2103 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy? Type2104 { get; set; } + public global::Vapi.CampaignControllerFindAllSortBy? Type2104 { get; set; } /// /// /// - public global::Vapi.StructuredOutputControllerFindAllSortOrder? Type2105 { get; set; } + public global::Vapi.SessionControllerFindAllPaginatedSortOrder? Type2105 { get; set; } /// /// /// - public global::Vapi.StructuredOutputControllerFindAllSortBy? Type2106 { get; set; } + public global::Vapi.SessionControllerFindAllPaginatedSortBy? Type2106 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindAllSortOrder? Type2107 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllPaginatedSortOrder? Type2107 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindAllSortBy? Type2108 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllPaginatedSortBy? Type2108 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetPaginatedSortOrder? Type2109 { get; set; } + public global::Vapi.StructuredOutputControllerFindAllSortOrder? Type2109 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetPaginatedSortBy? Type2110 { get; set; } + public global::Vapi.StructuredOutputControllerFindAllSortBy? Type2110 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetRunsPaginatedSortOrder? Type2111 { get; set; } + public global::Vapi.InsightControllerFindAllSortOrder? Type2111 { get; set; } /// /// /// - public global::Vapi.EvalControllerGetRunsPaginatedSortBy? Type2112 { get; set; } + public global::Vapi.InsightControllerFindAllSortBy? Type2112 { get; set; } /// /// /// - public global::Vapi.ScorecardControllerGetPaginatedSortOrder? Type2113 { get; set; } + public global::Vapi.EvalControllerGetPaginatedSortOrder? Type2113 { get; set; } /// /// /// - public global::Vapi.ScorecardControllerGetPaginatedSortBy? Type2114 { get; set; } + public global::Vapi.EvalControllerGetPaginatedSortBy? Type2114 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerCreateProviderResourceProvider? Type2115 { get; set; } + public global::Vapi.EvalControllerGetRunsPaginatedSortOrder? Type2115 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerCreateProviderResourceResourceName? Type2116 { get; set; } + public global::Vapi.EvalControllerGetRunsPaginatedSortBy? Type2116 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedProvider? Type2117 { get; set; } + public global::Vapi.ScorecardControllerGetPaginatedSortOrder? Type2117 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedResourceName? Type2118 { get; set; } + public global::Vapi.ScorecardControllerGetPaginatedSortBy? Type2118 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortOrder? Type2119 { get; set; } + public global::Vapi.ProviderResourceControllerCreateProviderResourceProvider? Type2119 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortBy? Type2120 { get; set; } + public global::Vapi.ProviderResourceControllerCreateProviderResourceResourceName? Type2120 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourceProvider? Type2121 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedProvider? Type2121 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerGetProviderResourceResourceName? Type2122 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedResourceName? Type2122 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerDeleteProviderResourceProvider? Type2123 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortOrder? Type2123 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerDeleteProviderResourceResourceName? Type2124 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourcesPaginatedSortBy? Type2124 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider? Type2125 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourceProvider? Type2125 { get; set; } /// /// /// - public global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName? Type2126 { get; set; } + public global::Vapi.ProviderResourceControllerGetProviderResourceResourceName? Type2126 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2127 { get; set; } + public global::Vapi.ProviderResourceControllerDeleteProviderResourceProvider? Type2127 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2128 { get; set; } + public global::Vapi.ProviderResourceControllerDeleteProviderResourceResourceName? Type2128 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2129 { get; set; } + public global::Vapi.ProviderResourceControllerUpdateProviderResourceProvider? Type2129 { get; set; } /// /// /// - public global::Vapi.OneOf? Type2130 { get; set; } + public global::Vapi.ProviderResourceControllerUpdateProviderResourceResourceName? Type2130 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponse? Type2131 { get; set; } + public global::System.Collections.Generic.IList? Type2131 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponseDiscriminator? Type2132 { get; set; } + public global::Vapi.OneOf? Type2132 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider? Type2133 { get; set; } + public global::Vapi.OneOf? Type2133 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2134 { get; set; } + public global::Vapi.OneOf? Type2134 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItem? Type2135 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponse? Type2135 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminator? Type2136 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponseDiscriminator? Type2136 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminatorProvider? Type2137 { get; set; } + public global::Vapi.PhoneNumberControllerCreateResponseDiscriminatorProvider? Type2137 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponse? Type2138 { get; set; } + public global::System.Collections.Generic.IList? Type2138 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminator? Type2139 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItem? Type2139 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminatorProvider? Type2140 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminator? Type2140 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponse? Type2141 { get; set; } + public global::Vapi.PhoneNumberControllerFindAllResponseItemDiscriminatorProvider? Type2141 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminator? Type2142 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponse? Type2142 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminatorProvider? Type2143 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminator? Type2143 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponse? Type2144 { get; set; } + public global::Vapi.PhoneNumberControllerFindOneResponseDiscriminatorProvider? Type2144 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminator? Type2145 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponse? Type2145 { get; set; } /// /// /// - public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminatorProvider? Type2146 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminator? Type2146 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponse? Type2147 { get; set; } + public global::Vapi.PhoneNumberControllerUpdateResponseDiscriminatorProvider? Type2147 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponseDiscriminator? Type2148 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponse? Type2148 { get; set; } /// /// /// - public global::Vapi.ToolControllerCreateResponseDiscriminatorType? Type2149 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminator? Type2149 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2150 { get; set; } + public global::Vapi.PhoneNumberControllerRemoveResponseDiscriminatorProvider? Type2150 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItem? Type2151 { get; set; } + public global::Vapi.ToolControllerCreateResponse? Type2151 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItemDiscriminator? Type2152 { get; set; } + public global::Vapi.ToolControllerCreateResponseDiscriminator? Type2152 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindAllResponseItemDiscriminatorType? Type2153 { get; set; } + public global::Vapi.ToolControllerCreateResponseDiscriminatorType? Type2153 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponse? Type2154 { get; set; } + public global::System.Collections.Generic.IList? Type2154 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponseDiscriminator? Type2155 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItem? Type2155 { get; set; } /// /// /// - public global::Vapi.ToolControllerFindOneResponseDiscriminatorType? Type2156 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItemDiscriminator? Type2156 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponse? Type2157 { get; set; } + public global::Vapi.ToolControllerFindAllResponseItemDiscriminatorType? Type2157 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponseDiscriminator? Type2158 { get; set; } + public global::Vapi.ToolControllerFindOneResponse? Type2158 { get; set; } /// /// /// - public global::Vapi.ToolControllerUpdateResponseDiscriminatorType? Type2159 { get; set; } + public global::Vapi.ToolControllerFindOneResponseDiscriminator? Type2159 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponse? Type2160 { get; set; } + public global::Vapi.ToolControllerFindOneResponseDiscriminatorType? Type2160 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponseDiscriminator? Type2161 { get; set; } + public global::Vapi.ToolControllerUpdateResponse? Type2161 { get; set; } /// /// /// - public global::Vapi.ToolControllerRemoveResponseDiscriminatorType? Type2162 { get; set; } + public global::Vapi.ToolControllerUpdateResponseDiscriminator? Type2162 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2163 { get; set; } + public global::Vapi.ToolControllerUpdateResponseDiscriminatorType? Type2163 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponse? Type2164 { get; set; } + public global::Vapi.ToolControllerRemoveResponse? Type2164 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponseDiscriminator? Type2165 { get; set; } + public global::Vapi.ToolControllerRemoveResponseDiscriminator? Type2165 { get; set; } /// /// /// - public global::Vapi.InsightControllerCreateResponseDiscriminatorType? Type2166 { get; set; } + public global::Vapi.ToolControllerRemoveResponseDiscriminatorType? Type2166 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponse? Type2167 { get; set; } + public global::System.Collections.Generic.IList? Type2167 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponseDiscriminator? Type2168 { get; set; } + public global::Vapi.InsightControllerCreateResponse? Type2168 { get; set; } /// /// /// - public global::Vapi.InsightControllerUpdateResponseDiscriminatorType? Type2169 { get; set; } + public global::Vapi.InsightControllerCreateResponseDiscriminator? Type2169 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponse? Type2170 { get; set; } + public global::Vapi.InsightControllerCreateResponseDiscriminatorType? Type2170 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponseDiscriminator? Type2171 { get; set; } + public global::Vapi.InsightControllerUpdateResponse? Type2171 { get; set; } /// /// /// - public global::Vapi.InsightControllerFindOneResponseDiscriminatorType? Type2172 { get; set; } + public global::Vapi.InsightControllerUpdateResponseDiscriminator? Type2172 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponse? Type2173 { get; set; } + public global::Vapi.InsightControllerUpdateResponseDiscriminatorType? Type2173 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponseDiscriminator? Type2174 { get; set; } + public global::Vapi.InsightControllerFindOneResponse? Type2174 { get; set; } /// /// /// - public global::Vapi.InsightControllerRemoveResponseDiscriminatorType? Type2175 { get; set; } + public global::Vapi.InsightControllerFindOneResponseDiscriminator? Type2175 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type2176 { get; set; } + public global::Vapi.InsightControllerFindOneResponseDiscriminatorType? Type2176 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerRemoveResponse? Type2177 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerRemoveResponseDiscriminator? Type2178 { get; set; } + /// + /// + /// + public global::Vapi.InsightControllerRemoveResponseDiscriminatorType? Type2179 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.IList? Type2180 { get; set; } /// /// diff --git a/src/libs/Vapi/Generated/Vapi.Models.CallEndedReason.g.cs b/src/libs/Vapi/Generated/Vapi.Models.CallEndedReason.g.cs index 15818f69..8b5a59a0 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.CallEndedReason.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.CallEndedReason.g.cs @@ -1143,6 +1143,10 @@ public enum CallEndedReason /// /// /// + CallInProgressErrorVapifaultXaiVoiceFailed, + /// + /// + /// CallInProgressErrorWarmTransferAssistantCancelled, /// /// @@ -2633,6 +2637,7 @@ public static string ToValueString(this CallEndedReason value) CallEndedReason.CallInProgressErrorVapifaultXaiTranscriberInvalidConfig => "call.in-progress.error-vapifault-xai-transcriber-invalid-config", CallEndedReason.CallInProgressErrorVapifaultXaiTranscriberRateLimited => "call.in-progress.error-vapifault-xai-transcriber-rate-limited", CallEndedReason.CallInProgressErrorVapifaultXaiTranscriberServerError => "call.in-progress.error-vapifault-xai-transcriber-server-error", + CallEndedReason.CallInProgressErrorVapifaultXaiVoiceFailed => "call.in-progress.error-vapifault-xai-voice-failed", CallEndedReason.CallInProgressErrorWarmTransferAssistantCancelled => "call.in-progress.error-warm-transfer-assistant-cancelled", CallEndedReason.CallInProgressErrorWarmTransferMaxDuration => "call.in-progress.error-warm-transfer-max-duration", CallEndedReason.CallInProgressErrorWarmTransferMicrophoneTimeout => "call.in-progress.error-warm-transfer-microphone-timeout", @@ -3225,6 +3230,7 @@ public static string ToValueString(this CallEndedReason value) "call.in-progress.error-vapifault-xai-transcriber-invalid-config" => CallEndedReason.CallInProgressErrorVapifaultXaiTranscriberInvalidConfig, "call.in-progress.error-vapifault-xai-transcriber-rate-limited" => CallEndedReason.CallInProgressErrorVapifaultXaiTranscriberRateLimited, "call.in-progress.error-vapifault-xai-transcriber-server-error" => CallEndedReason.CallInProgressErrorVapifaultXaiTranscriberServerError, + "call.in-progress.error-vapifault-xai-voice-failed" => CallEndedReason.CallInProgressErrorVapifaultXaiVoiceFailed, "call.in-progress.error-warm-transfer-assistant-cancelled" => CallEndedReason.CallInProgressErrorWarmTransferAssistantCancelled, "call.in-progress.error-warm-transfer-max-duration" => CallEndedReason.CallInProgressErrorWarmTransferMaxDuration, "call.in-progress.error-warm-transfer-microphone-timeout" => CallEndedReason.CallInProgressErrorWarmTransferMicrophoneTimeout, diff --git a/src/libs/Vapi/Generated/Vapi.Models.FallbackVapiVoice.g.cs b/src/libs/Vapi/Generated/Vapi.Models.FallbackVapiVoice.g.cs index 685aac3f..daba06e4 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.FallbackVapiVoice.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.FallbackVapiVoice.g.cs @@ -32,6 +32,12 @@ public sealed partial class FallbackVapiVoice [global::System.Text.Json.Serialization.JsonRequired] public required global::Vapi.FallbackVapiVoiceVoiceId VoiceId { get; set; } + /// + /// The Vapi voice routing generation. Version 1 uses legacy mappings; version 2 can use xAI-backed voices when available. When omitted, Version 1 is used. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("version")] + public double? Version { get; set; } + /// /// This is the speed multiplier that will be used.
/// @default 1
@@ -40,6 +46,13 @@ public sealed partial class FallbackVapiVoice [global::System.Text.Json.Serialization.JsonPropertyName("speed")] public double? Speed { get; set; } + /// + /// Language for Vapi voice synthesis. For Version 2, omit this field or set `auto` for automatic language detection. Version 1 supports legacy Vapi language values. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("language")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.FallbackVapiVoiceLanguageJsonConverter))] + public global::Vapi.FallbackVapiVoiceLanguage? Language { get; set; } + /// /// List of pronunciation dictionary locators for custom word pronunciations. /// @@ -72,11 +85,17 @@ public sealed partial class FallbackVapiVoice /// /// This is the voice provider that will be used. /// + /// + /// The Vapi voice routing generation. Version 1 uses legacy mappings; version 2 can use xAI-backed voices when available. When omitted, Version 1 is used. + /// /// /// This is the speed multiplier that will be used.
/// @default 1
/// Default Value: 1 /// + /// + /// Language for Vapi voice synthesis. For Version 2, omit this field or set `auto` for automatic language detection. Version 1 supports legacy Vapi language values. + /// /// /// List of pronunciation dictionary locators for custom word pronunciations. /// @@ -90,14 +109,18 @@ public FallbackVapiVoice( global::Vapi.FallbackVapiVoiceVoiceId voiceId, bool? cachingEnabled, global::Vapi.FallbackVapiVoiceProvider provider, + double? version, double? speed, + global::Vapi.FallbackVapiVoiceLanguage? language, global::System.Collections.Generic.IList? pronunciationDictionary, global::Vapi.ChunkPlan? chunkPlan) { this.CachingEnabled = cachingEnabled; this.Provider = provider; this.VoiceId = voiceId; + this.Version = version; this.Speed = speed; + this.Language = language; this.PronunciationDictionary = pronunciationDictionary; this.ChunkPlan = chunkPlan; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.FallbackVapiVoiceLanguage.g.cs b/src/libs/Vapi/Generated/Vapi.Models.FallbackVapiVoiceLanguage.g.cs new file mode 100644 index 00000000..f7c5017b --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.FallbackVapiVoiceLanguage.g.cs @@ -0,0 +1,381 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// Language for Vapi voice synthesis. For Version 2, omit this field or set `auto` for automatic language detection. Version 1 supports legacy Vapi language values. + /// + public enum FallbackVapiVoiceLanguage + { + /// + /// + /// + Ar, + /// + /// + /// + ArAe, + /// + /// + /// + ArEg, + /// + /// + /// + ArSa, + /// + /// + /// + Auto, + /// + /// + /// + Bg, + /// + /// + /// + Bn, + /// + /// + /// + Cs, + /// + /// + /// + Da, + /// + /// + /// + De, + /// + /// + /// + El, + /// + /// + /// + En, + /// + /// + /// + EnAu, + /// + /// + /// + EnCa, + /// + /// + /// + EnGb, + /// + /// + /// + EnUs, + /// + /// + /// + Es, + /// + /// + /// + EsEs, + /// + /// + /// + EsMx, + /// + /// + /// + Fi, + /// + /// + /// + Fil, + /// + /// + /// + Fr, + /// + /// + /// + FrCa, + /// + /// + /// + FrFr, + /// + /// + /// + Gu, + /// + /// + /// + He, + /// + /// + /// + Hi, + /// + /// + /// + Hr, + /// + /// + /// + Hu, + /// + /// + /// + Id, + /// + /// + /// + It, + /// + /// + /// + Ja, + /// + /// + /// + Ka, + /// + /// + /// + Kn, + /// + /// + /// + Ko, + /// + /// + /// + Ml, + /// + /// + /// + Mr, + /// + /// + /// + Ms, + /// + /// + /// + Nl, + /// + /// + /// + No, + /// + /// + /// + Pa, + /// + /// + /// + Pl, + /// + /// + /// + Pt, + /// + /// + /// + PtBr, + /// + /// + /// + PtPt, + /// + /// + /// + Ro, + /// + /// + /// + Ru, + /// + /// + /// + Sk, + /// + /// + /// + Sv, + /// + /// + /// + Ta, + /// + /// + /// + Te, + /// + /// + /// + Th, + /// + /// + /// + Tl, + /// + /// + /// + Tr, + /// + /// + /// + Uk, + /// + /// + /// + Vi, + /// + /// + /// + Zh, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class FallbackVapiVoiceLanguageExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this FallbackVapiVoiceLanguage value) + { + return value switch + { + FallbackVapiVoiceLanguage.Ar => "ar", + FallbackVapiVoiceLanguage.ArAe => "ar-AE", + FallbackVapiVoiceLanguage.ArEg => "ar-EG", + FallbackVapiVoiceLanguage.ArSa => "ar-SA", + FallbackVapiVoiceLanguage.Auto => "auto", + FallbackVapiVoiceLanguage.Bg => "bg", + FallbackVapiVoiceLanguage.Bn => "bn", + FallbackVapiVoiceLanguage.Cs => "cs", + FallbackVapiVoiceLanguage.Da => "da", + FallbackVapiVoiceLanguage.De => "de", + FallbackVapiVoiceLanguage.El => "el", + FallbackVapiVoiceLanguage.En => "en", + FallbackVapiVoiceLanguage.EnAu => "en-AU", + FallbackVapiVoiceLanguage.EnCa => "en-CA", + FallbackVapiVoiceLanguage.EnGb => "en-GB", + FallbackVapiVoiceLanguage.EnUs => "en-US", + FallbackVapiVoiceLanguage.Es => "es", + FallbackVapiVoiceLanguage.EsEs => "es-ES", + FallbackVapiVoiceLanguage.EsMx => "es-MX", + FallbackVapiVoiceLanguage.Fi => "fi", + FallbackVapiVoiceLanguage.Fil => "fil", + FallbackVapiVoiceLanguage.Fr => "fr", + FallbackVapiVoiceLanguage.FrCa => "fr-CA", + FallbackVapiVoiceLanguage.FrFr => "fr-FR", + FallbackVapiVoiceLanguage.Gu => "gu", + FallbackVapiVoiceLanguage.He => "he", + FallbackVapiVoiceLanguage.Hi => "hi", + FallbackVapiVoiceLanguage.Hr => "hr", + FallbackVapiVoiceLanguage.Hu => "hu", + FallbackVapiVoiceLanguage.Id => "id", + FallbackVapiVoiceLanguage.It => "it", + FallbackVapiVoiceLanguage.Ja => "ja", + FallbackVapiVoiceLanguage.Ka => "ka", + FallbackVapiVoiceLanguage.Kn => "kn", + FallbackVapiVoiceLanguage.Ko => "ko", + FallbackVapiVoiceLanguage.Ml => "ml", + FallbackVapiVoiceLanguage.Mr => "mr", + FallbackVapiVoiceLanguage.Ms => "ms", + FallbackVapiVoiceLanguage.Nl => "nl", + FallbackVapiVoiceLanguage.No => "no", + FallbackVapiVoiceLanguage.Pa => "pa", + FallbackVapiVoiceLanguage.Pl => "pl", + FallbackVapiVoiceLanguage.Pt => "pt", + FallbackVapiVoiceLanguage.PtBr => "pt-BR", + FallbackVapiVoiceLanguage.PtPt => "pt-PT", + FallbackVapiVoiceLanguage.Ro => "ro", + FallbackVapiVoiceLanguage.Ru => "ru", + FallbackVapiVoiceLanguage.Sk => "sk", + FallbackVapiVoiceLanguage.Sv => "sv", + FallbackVapiVoiceLanguage.Ta => "ta", + FallbackVapiVoiceLanguage.Te => "te", + FallbackVapiVoiceLanguage.Th => "th", + FallbackVapiVoiceLanguage.Tl => "tl", + FallbackVapiVoiceLanguage.Tr => "tr", + FallbackVapiVoiceLanguage.Uk => "uk", + FallbackVapiVoiceLanguage.Vi => "vi", + FallbackVapiVoiceLanguage.Zh => "zh", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static FallbackVapiVoiceLanguage? ToEnum(string value) + { + return value switch + { + "ar" => FallbackVapiVoiceLanguage.Ar, + "ar-AE" => FallbackVapiVoiceLanguage.ArAe, + "ar-EG" => FallbackVapiVoiceLanguage.ArEg, + "ar-SA" => FallbackVapiVoiceLanguage.ArSa, + "auto" => FallbackVapiVoiceLanguage.Auto, + "bg" => FallbackVapiVoiceLanguage.Bg, + "bn" => FallbackVapiVoiceLanguage.Bn, + "cs" => FallbackVapiVoiceLanguage.Cs, + "da" => FallbackVapiVoiceLanguage.Da, + "de" => FallbackVapiVoiceLanguage.De, + "el" => FallbackVapiVoiceLanguage.El, + "en" => FallbackVapiVoiceLanguage.En, + "en-AU" => FallbackVapiVoiceLanguage.EnAu, + "en-CA" => FallbackVapiVoiceLanguage.EnCa, + "en-GB" => FallbackVapiVoiceLanguage.EnGb, + "en-US" => FallbackVapiVoiceLanguage.EnUs, + "es" => FallbackVapiVoiceLanguage.Es, + "es-ES" => FallbackVapiVoiceLanguage.EsEs, + "es-MX" => FallbackVapiVoiceLanguage.EsMx, + "fi" => FallbackVapiVoiceLanguage.Fi, + "fil" => FallbackVapiVoiceLanguage.Fil, + "fr" => FallbackVapiVoiceLanguage.Fr, + "fr-CA" => FallbackVapiVoiceLanguage.FrCa, + "fr-FR" => FallbackVapiVoiceLanguage.FrFr, + "gu" => FallbackVapiVoiceLanguage.Gu, + "he" => FallbackVapiVoiceLanguage.He, + "hi" => FallbackVapiVoiceLanguage.Hi, + "hr" => FallbackVapiVoiceLanguage.Hr, + "hu" => FallbackVapiVoiceLanguage.Hu, + "id" => FallbackVapiVoiceLanguage.Id, + "it" => FallbackVapiVoiceLanguage.It, + "ja" => FallbackVapiVoiceLanguage.Ja, + "ka" => FallbackVapiVoiceLanguage.Ka, + "kn" => FallbackVapiVoiceLanguage.Kn, + "ko" => FallbackVapiVoiceLanguage.Ko, + "ml" => FallbackVapiVoiceLanguage.Ml, + "mr" => FallbackVapiVoiceLanguage.Mr, + "ms" => FallbackVapiVoiceLanguage.Ms, + "nl" => FallbackVapiVoiceLanguage.Nl, + "no" => FallbackVapiVoiceLanguage.No, + "pa" => FallbackVapiVoiceLanguage.Pa, + "pl" => FallbackVapiVoiceLanguage.Pl, + "pt" => FallbackVapiVoiceLanguage.Pt, + "pt-BR" => FallbackVapiVoiceLanguage.PtBr, + "pt-PT" => FallbackVapiVoiceLanguage.PtPt, + "ro" => FallbackVapiVoiceLanguage.Ro, + "ru" => FallbackVapiVoiceLanguage.Ru, + "sk" => FallbackVapiVoiceLanguage.Sk, + "sv" => FallbackVapiVoiceLanguage.Sv, + "ta" => FallbackVapiVoiceLanguage.Ta, + "te" => FallbackVapiVoiceLanguage.Te, + "th" => FallbackVapiVoiceLanguage.Th, + "tl" => FallbackVapiVoiceLanguage.Tl, + "tr" => FallbackVapiVoiceLanguage.Tr, + "uk" => FallbackVapiVoiceLanguage.Uk, + "vi" => FallbackVapiVoiceLanguage.Vi, + "zh" => FallbackVapiVoiceLanguage.Zh, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.FallbackXaiVoice.g.cs b/src/libs/Vapi/Generated/Vapi.Models.FallbackXaiVoice.g.cs index beede838..8235084b 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.FallbackXaiVoice.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.FallbackXaiVoice.g.cs @@ -42,6 +42,13 @@ public sealed partial class FallbackXaiVoice [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.FallbackXaiVoiceLanguageJsonConverter))] public global::Vapi.FallbackXaiVoiceLanguage? Language { get; set; } + /// + /// Speed multiplier for xAI TTS synthesis.
+ /// Default Value: 1.1F + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("speed")] + public double? Speed { get; set; } + /// /// This is the plan for chunking the model output before it is sent to the voice provider. /// @@ -73,6 +80,10 @@ public sealed partial class FallbackXaiVoice /// BCP-47 language code for xAI TTS synthesis.
/// Default Value: en /// + /// + /// Speed multiplier for xAI TTS synthesis.
+ /// Default Value: 1.1F + /// /// /// This is the plan for chunking the model output before it is sent to the voice provider. /// @@ -84,12 +95,14 @@ public FallbackXaiVoice( bool? cachingEnabled, global::Vapi.FallbackXaiVoiceProvider provider, global::Vapi.FallbackXaiVoiceLanguage? language, + double? speed, global::Vapi.ChunkPlan? chunkPlan) { this.CachingEnabled = cachingEnabled; this.Provider = provider; this.VoiceId = voiceId; this.Language = language; + this.Speed = speed; this.ChunkPlan = chunkPlan; } diff --git a/src/libs/Vapi/Generated/Vapi.Models.InviteUserDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.InviteUserDTO.g.cs index ff4d4ce3..9590bb00 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.InviteUserDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.InviteUserDTO.g.cs @@ -19,9 +19,9 @@ public sealed partial class InviteUserDTO /// ///
[global::System.Text.Json.Serialization.JsonPropertyName("role")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.InviteUserDTORoleJsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.OneOfJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::Vapi.InviteUserDTORole Role { get; set; } + public required global::Vapi.OneOf Role { get; set; } /// /// @@ -46,7 +46,7 @@ public sealed partial class InviteUserDTO #endif public InviteUserDTO( global::System.Collections.Generic.IList emails, - global::Vapi.InviteUserDTORole role, + global::Vapi.OneOf role, string? redirectTo) { this.Emails = emails ?? throw new global::System.ArgumentNullException(nameof(emails)); diff --git a/src/libs/Vapi/Generated/Vapi.Models.ServerMessageEndOfCallReportEndedReason.g.cs b/src/libs/Vapi/Generated/Vapi.Models.ServerMessageEndOfCallReportEndedReason.g.cs index 6bfb8417..0f294f95 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.ServerMessageEndOfCallReportEndedReason.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.ServerMessageEndOfCallReportEndedReason.g.cs @@ -1143,6 +1143,10 @@ public enum ServerMessageEndOfCallReportEndedReason /// /// /// + CallInProgressErrorVapifaultXaiVoiceFailed, + /// + /// + /// CallInProgressErrorWarmTransferAssistantCancelled, /// /// @@ -2633,6 +2637,7 @@ public static string ToValueString(this ServerMessageEndOfCallReportEndedReason ServerMessageEndOfCallReportEndedReason.CallInProgressErrorVapifaultXaiTranscriberInvalidConfig => "call.in-progress.error-vapifault-xai-transcriber-invalid-config", ServerMessageEndOfCallReportEndedReason.CallInProgressErrorVapifaultXaiTranscriberRateLimited => "call.in-progress.error-vapifault-xai-transcriber-rate-limited", ServerMessageEndOfCallReportEndedReason.CallInProgressErrorVapifaultXaiTranscriberServerError => "call.in-progress.error-vapifault-xai-transcriber-server-error", + ServerMessageEndOfCallReportEndedReason.CallInProgressErrorVapifaultXaiVoiceFailed => "call.in-progress.error-vapifault-xai-voice-failed", ServerMessageEndOfCallReportEndedReason.CallInProgressErrorWarmTransferAssistantCancelled => "call.in-progress.error-warm-transfer-assistant-cancelled", ServerMessageEndOfCallReportEndedReason.CallInProgressErrorWarmTransferMaxDuration => "call.in-progress.error-warm-transfer-max-duration", ServerMessageEndOfCallReportEndedReason.CallInProgressErrorWarmTransferMicrophoneTimeout => "call.in-progress.error-warm-transfer-microphone-timeout", @@ -3225,6 +3230,7 @@ public static string ToValueString(this ServerMessageEndOfCallReportEndedReason "call.in-progress.error-vapifault-xai-transcriber-invalid-config" => ServerMessageEndOfCallReportEndedReason.CallInProgressErrorVapifaultXaiTranscriberInvalidConfig, "call.in-progress.error-vapifault-xai-transcriber-rate-limited" => ServerMessageEndOfCallReportEndedReason.CallInProgressErrorVapifaultXaiTranscriberRateLimited, "call.in-progress.error-vapifault-xai-transcriber-server-error" => ServerMessageEndOfCallReportEndedReason.CallInProgressErrorVapifaultXaiTranscriberServerError, + "call.in-progress.error-vapifault-xai-voice-failed" => ServerMessageEndOfCallReportEndedReason.CallInProgressErrorVapifaultXaiVoiceFailed, "call.in-progress.error-warm-transfer-assistant-cancelled" => ServerMessageEndOfCallReportEndedReason.CallInProgressErrorWarmTransferAssistantCancelled, "call.in-progress.error-warm-transfer-max-duration" => ServerMessageEndOfCallReportEndedReason.CallInProgressErrorWarmTransferMaxDuration, "call.in-progress.error-warm-transfer-microphone-timeout" => ServerMessageEndOfCallReportEndedReason.CallInProgressErrorWarmTransferMicrophoneTimeout, diff --git a/src/libs/Vapi/Generated/Vapi.Models.ServerMessageStatusUpdateEndedReason.g.cs b/src/libs/Vapi/Generated/Vapi.Models.ServerMessageStatusUpdateEndedReason.g.cs index 0aecfb61..c225743a 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.ServerMessageStatusUpdateEndedReason.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.ServerMessageStatusUpdateEndedReason.g.cs @@ -1143,6 +1143,10 @@ public enum ServerMessageStatusUpdateEndedReason /// /// /// + CallInProgressErrorVapifaultXaiVoiceFailed, + /// + /// + /// CallInProgressErrorWarmTransferAssistantCancelled, /// /// @@ -2633,6 +2637,7 @@ public static string ToValueString(this ServerMessageStatusUpdateEndedReason val ServerMessageStatusUpdateEndedReason.CallInProgressErrorVapifaultXaiTranscriberInvalidConfig => "call.in-progress.error-vapifault-xai-transcriber-invalid-config", ServerMessageStatusUpdateEndedReason.CallInProgressErrorVapifaultXaiTranscriberRateLimited => "call.in-progress.error-vapifault-xai-transcriber-rate-limited", ServerMessageStatusUpdateEndedReason.CallInProgressErrorVapifaultXaiTranscriberServerError => "call.in-progress.error-vapifault-xai-transcriber-server-error", + ServerMessageStatusUpdateEndedReason.CallInProgressErrorVapifaultXaiVoiceFailed => "call.in-progress.error-vapifault-xai-voice-failed", ServerMessageStatusUpdateEndedReason.CallInProgressErrorWarmTransferAssistantCancelled => "call.in-progress.error-warm-transfer-assistant-cancelled", ServerMessageStatusUpdateEndedReason.CallInProgressErrorWarmTransferMaxDuration => "call.in-progress.error-warm-transfer-max-duration", ServerMessageStatusUpdateEndedReason.CallInProgressErrorWarmTransferMicrophoneTimeout => "call.in-progress.error-warm-transfer-microphone-timeout", @@ -3225,6 +3230,7 @@ public static string ToValueString(this ServerMessageStatusUpdateEndedReason val "call.in-progress.error-vapifault-xai-transcriber-invalid-config" => ServerMessageStatusUpdateEndedReason.CallInProgressErrorVapifaultXaiTranscriberInvalidConfig, "call.in-progress.error-vapifault-xai-transcriber-rate-limited" => ServerMessageStatusUpdateEndedReason.CallInProgressErrorVapifaultXaiTranscriberRateLimited, "call.in-progress.error-vapifault-xai-transcriber-server-error" => ServerMessageStatusUpdateEndedReason.CallInProgressErrorVapifaultXaiTranscriberServerError, + "call.in-progress.error-vapifault-xai-voice-failed" => ServerMessageStatusUpdateEndedReason.CallInProgressErrorVapifaultXaiVoiceFailed, "call.in-progress.error-warm-transfer-assistant-cancelled" => ServerMessageStatusUpdateEndedReason.CallInProgressErrorWarmTransferAssistantCancelled, "call.in-progress.error-warm-transfer-max-duration" => ServerMessageStatusUpdateEndedReason.CallInProgressErrorWarmTransferMaxDuration, "call.in-progress.error-warm-transfer-microphone-timeout" => ServerMessageStatusUpdateEndedReason.CallInProgressErrorWarmTransferMicrophoneTimeout, diff --git a/src/libs/Vapi/Generated/Vapi.Models.UpdateUserRoleDTO.g.cs b/src/libs/Vapi/Generated/Vapi.Models.UpdateUserRoleDTO.g.cs index eb4c4cf4..c7ead213 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.UpdateUserRoleDTO.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.UpdateUserRoleDTO.g.cs @@ -19,9 +19,9 @@ public sealed partial class UpdateUserRoleDTO /// /// [global::System.Text.Json.Serialization.JsonPropertyName("role")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.UpdateUserRoleDTORoleJsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.OneOfJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::Vapi.UpdateUserRoleDTORole Role { get; set; } + public required global::Vapi.OneOf Role { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -39,7 +39,7 @@ public sealed partial class UpdateUserRoleDTO #endif public UpdateUserRoleDTO( string userId, - global::Vapi.UpdateUserRoleDTORole role) + global::Vapi.OneOf role) { this.UserId = userId ?? throw new global::System.ArgumentNullException(nameof(userId)); this.Role = role; diff --git a/src/libs/Vapi/Generated/Vapi.Models.VapiVoice.g.cs b/src/libs/Vapi/Generated/Vapi.Models.VapiVoice.g.cs index bb80ab03..9d0de98a 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.VapiVoice.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.VapiVoice.g.cs @@ -32,6 +32,12 @@ public sealed partial class VapiVoice [global::System.Text.Json.Serialization.JsonRequired] public required global::Vapi.VapiVoiceVoiceId VoiceId { get; set; } + /// + /// The Vapi voice routing generation. Version 1 uses legacy mappings; version 2 can use xAI-backed voices when available. When omitted, Version 1 is used. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("version")] + public double? Version { get; set; } + /// /// This is the speed multiplier that will be used.
/// @default 1
@@ -40,6 +46,13 @@ public sealed partial class VapiVoice [global::System.Text.Json.Serialization.JsonPropertyName("speed")] public double? Speed { get; set; } + /// + /// Language for Vapi voice synthesis. For Version 2, omit this field or set `auto` for automatic language detection. Version 1 supports legacy Vapi language values. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("language")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.VapiVoiceLanguageJsonConverter))] + public global::Vapi.VapiVoiceLanguage? Language { get; set; } + /// /// List of pronunciation dictionary locators for custom word pronunciations. /// @@ -78,11 +91,17 @@ public sealed partial class VapiVoice /// /// This is the voice provider that will be used. /// + /// + /// The Vapi voice routing generation. Version 1 uses legacy mappings; version 2 can use xAI-backed voices when available. When omitted, Version 1 is used. + /// /// /// This is the speed multiplier that will be used.
/// @default 1
/// Default Value: 1 /// + /// + /// Language for Vapi voice synthesis. For Version 2, omit this field or set `auto` for automatic language detection. Version 1 supports legacy Vapi language values. + /// /// /// List of pronunciation dictionary locators for custom word pronunciations. /// @@ -99,7 +118,9 @@ public VapiVoice( global::Vapi.VapiVoiceVoiceId voiceId, bool? cachingEnabled, global::Vapi.VapiVoiceProvider provider, + double? version, double? speed, + global::Vapi.VapiVoiceLanguage? language, global::System.Collections.Generic.IList? pronunciationDictionary, global::Vapi.ChunkPlan? chunkPlan, global::Vapi.FallbackPlan? fallbackPlan) @@ -107,7 +128,9 @@ public VapiVoice( this.CachingEnabled = cachingEnabled; this.Provider = provider; this.VoiceId = voiceId; + this.Version = version; this.Speed = speed; + this.Language = language; this.PronunciationDictionary = pronunciationDictionary; this.ChunkPlan = chunkPlan; this.FallbackPlan = fallbackPlan; diff --git a/src/libs/Vapi/Generated/Vapi.Models.VapiVoiceLanguage.g.cs b/src/libs/Vapi/Generated/Vapi.Models.VapiVoiceLanguage.g.cs new file mode 100644 index 00000000..51c2aa3f --- /dev/null +++ b/src/libs/Vapi/Generated/Vapi.Models.VapiVoiceLanguage.g.cs @@ -0,0 +1,381 @@ + +#nullable enable + +namespace Vapi +{ + /// + /// Language for Vapi voice synthesis. For Version 2, omit this field or set `auto` for automatic language detection. Version 1 supports legacy Vapi language values. + /// + public enum VapiVoiceLanguage + { + /// + /// + /// + Ar, + /// + /// + /// + ArAe, + /// + /// + /// + ArEg, + /// + /// + /// + ArSa, + /// + /// + /// + Auto, + /// + /// + /// + Bg, + /// + /// + /// + Bn, + /// + /// + /// + Cs, + /// + /// + /// + Da, + /// + /// + /// + De, + /// + /// + /// + El, + /// + /// + /// + En, + /// + /// + /// + EnAu, + /// + /// + /// + EnCa, + /// + /// + /// + EnGb, + /// + /// + /// + EnUs, + /// + /// + /// + Es, + /// + /// + /// + EsEs, + /// + /// + /// + EsMx, + /// + /// + /// + Fi, + /// + /// + /// + Fil, + /// + /// + /// + Fr, + /// + /// + /// + FrCa, + /// + /// + /// + FrFr, + /// + /// + /// + Gu, + /// + /// + /// + He, + /// + /// + /// + Hi, + /// + /// + /// + Hr, + /// + /// + /// + Hu, + /// + /// + /// + Id, + /// + /// + /// + It, + /// + /// + /// + Ja, + /// + /// + /// + Ka, + /// + /// + /// + Kn, + /// + /// + /// + Ko, + /// + /// + /// + Ml, + /// + /// + /// + Mr, + /// + /// + /// + Ms, + /// + /// + /// + Nl, + /// + /// + /// + No, + /// + /// + /// + Pa, + /// + /// + /// + Pl, + /// + /// + /// + Pt, + /// + /// + /// + PtBr, + /// + /// + /// + PtPt, + /// + /// + /// + Ro, + /// + /// + /// + Ru, + /// + /// + /// + Sk, + /// + /// + /// + Sv, + /// + /// + /// + Ta, + /// + /// + /// + Te, + /// + /// + /// + Th, + /// + /// + /// + Tl, + /// + /// + /// + Tr, + /// + /// + /// + Uk, + /// + /// + /// + Vi, + /// + /// + /// + Zh, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class VapiVoiceLanguageExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this VapiVoiceLanguage value) + { + return value switch + { + VapiVoiceLanguage.Ar => "ar", + VapiVoiceLanguage.ArAe => "ar-AE", + VapiVoiceLanguage.ArEg => "ar-EG", + VapiVoiceLanguage.ArSa => "ar-SA", + VapiVoiceLanguage.Auto => "auto", + VapiVoiceLanguage.Bg => "bg", + VapiVoiceLanguage.Bn => "bn", + VapiVoiceLanguage.Cs => "cs", + VapiVoiceLanguage.Da => "da", + VapiVoiceLanguage.De => "de", + VapiVoiceLanguage.El => "el", + VapiVoiceLanguage.En => "en", + VapiVoiceLanguage.EnAu => "en-AU", + VapiVoiceLanguage.EnCa => "en-CA", + VapiVoiceLanguage.EnGb => "en-GB", + VapiVoiceLanguage.EnUs => "en-US", + VapiVoiceLanguage.Es => "es", + VapiVoiceLanguage.EsEs => "es-ES", + VapiVoiceLanguage.EsMx => "es-MX", + VapiVoiceLanguage.Fi => "fi", + VapiVoiceLanguage.Fil => "fil", + VapiVoiceLanguage.Fr => "fr", + VapiVoiceLanguage.FrCa => "fr-CA", + VapiVoiceLanguage.FrFr => "fr-FR", + VapiVoiceLanguage.Gu => "gu", + VapiVoiceLanguage.He => "he", + VapiVoiceLanguage.Hi => "hi", + VapiVoiceLanguage.Hr => "hr", + VapiVoiceLanguage.Hu => "hu", + VapiVoiceLanguage.Id => "id", + VapiVoiceLanguage.It => "it", + VapiVoiceLanguage.Ja => "ja", + VapiVoiceLanguage.Ka => "ka", + VapiVoiceLanguage.Kn => "kn", + VapiVoiceLanguage.Ko => "ko", + VapiVoiceLanguage.Ml => "ml", + VapiVoiceLanguage.Mr => "mr", + VapiVoiceLanguage.Ms => "ms", + VapiVoiceLanguage.Nl => "nl", + VapiVoiceLanguage.No => "no", + VapiVoiceLanguage.Pa => "pa", + VapiVoiceLanguage.Pl => "pl", + VapiVoiceLanguage.Pt => "pt", + VapiVoiceLanguage.PtBr => "pt-BR", + VapiVoiceLanguage.PtPt => "pt-PT", + VapiVoiceLanguage.Ro => "ro", + VapiVoiceLanguage.Ru => "ru", + VapiVoiceLanguage.Sk => "sk", + VapiVoiceLanguage.Sv => "sv", + VapiVoiceLanguage.Ta => "ta", + VapiVoiceLanguage.Te => "te", + VapiVoiceLanguage.Th => "th", + VapiVoiceLanguage.Tl => "tl", + VapiVoiceLanguage.Tr => "tr", + VapiVoiceLanguage.Uk => "uk", + VapiVoiceLanguage.Vi => "vi", + VapiVoiceLanguage.Zh => "zh", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static VapiVoiceLanguage? ToEnum(string value) + { + return value switch + { + "ar" => VapiVoiceLanguage.Ar, + "ar-AE" => VapiVoiceLanguage.ArAe, + "ar-EG" => VapiVoiceLanguage.ArEg, + "ar-SA" => VapiVoiceLanguage.ArSa, + "auto" => VapiVoiceLanguage.Auto, + "bg" => VapiVoiceLanguage.Bg, + "bn" => VapiVoiceLanguage.Bn, + "cs" => VapiVoiceLanguage.Cs, + "da" => VapiVoiceLanguage.Da, + "de" => VapiVoiceLanguage.De, + "el" => VapiVoiceLanguage.El, + "en" => VapiVoiceLanguage.En, + "en-AU" => VapiVoiceLanguage.EnAu, + "en-CA" => VapiVoiceLanguage.EnCa, + "en-GB" => VapiVoiceLanguage.EnGb, + "en-US" => VapiVoiceLanguage.EnUs, + "es" => VapiVoiceLanguage.Es, + "es-ES" => VapiVoiceLanguage.EsEs, + "es-MX" => VapiVoiceLanguage.EsMx, + "fi" => VapiVoiceLanguage.Fi, + "fil" => VapiVoiceLanguage.Fil, + "fr" => VapiVoiceLanguage.Fr, + "fr-CA" => VapiVoiceLanguage.FrCa, + "fr-FR" => VapiVoiceLanguage.FrFr, + "gu" => VapiVoiceLanguage.Gu, + "he" => VapiVoiceLanguage.He, + "hi" => VapiVoiceLanguage.Hi, + "hr" => VapiVoiceLanguage.Hr, + "hu" => VapiVoiceLanguage.Hu, + "id" => VapiVoiceLanguage.Id, + "it" => VapiVoiceLanguage.It, + "ja" => VapiVoiceLanguage.Ja, + "ka" => VapiVoiceLanguage.Ka, + "kn" => VapiVoiceLanguage.Kn, + "ko" => VapiVoiceLanguage.Ko, + "ml" => VapiVoiceLanguage.Ml, + "mr" => VapiVoiceLanguage.Mr, + "ms" => VapiVoiceLanguage.Ms, + "nl" => VapiVoiceLanguage.Nl, + "no" => VapiVoiceLanguage.No, + "pa" => VapiVoiceLanguage.Pa, + "pl" => VapiVoiceLanguage.Pl, + "pt" => VapiVoiceLanguage.Pt, + "pt-BR" => VapiVoiceLanguage.PtBr, + "pt-PT" => VapiVoiceLanguage.PtPt, + "ro" => VapiVoiceLanguage.Ro, + "ru" => VapiVoiceLanguage.Ru, + "sk" => VapiVoiceLanguage.Sk, + "sv" => VapiVoiceLanguage.Sv, + "ta" => VapiVoiceLanguage.Ta, + "te" => VapiVoiceLanguage.Te, + "th" => VapiVoiceLanguage.Th, + "tl" => VapiVoiceLanguage.Tl, + "tr" => VapiVoiceLanguage.Tr, + "uk" => VapiVoiceLanguage.Uk, + "vi" => VapiVoiceLanguage.Vi, + "zh" => VapiVoiceLanguage.Zh, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/Vapi/Generated/Vapi.Models.XaiVoice.g.cs b/src/libs/Vapi/Generated/Vapi.Models.XaiVoice.g.cs index 615023fa..1c44df20 100644 --- a/src/libs/Vapi/Generated/Vapi.Models.XaiVoice.g.cs +++ b/src/libs/Vapi/Generated/Vapi.Models.XaiVoice.g.cs @@ -42,6 +42,13 @@ public sealed partial class XaiVoice [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vapi.JsonConverters.XaiVoiceLanguageJsonConverter))] public global::Vapi.XaiVoiceLanguage? Language { get; set; } + /// + /// Speed multiplier for xAI TTS synthesis.
+ /// Default Value: 1.1F + ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("speed")] + public double? Speed { get; set; } + /// /// This is the plan for chunking the model output before it is sent to the voice provider. /// @@ -79,6 +86,10 @@ public sealed partial class XaiVoice /// BCP-47 language code for xAI TTS synthesis.
/// Default Value: en /// + /// + /// Speed multiplier for xAI TTS synthesis.
+ /// Default Value: 1.1F + /// /// /// This is the plan for chunking the model output before it is sent to the voice provider. /// @@ -93,6 +104,7 @@ public XaiVoice( bool? cachingEnabled, global::Vapi.XaiVoiceProvider provider, global::Vapi.XaiVoiceLanguage? language, + double? speed, global::Vapi.ChunkPlan? chunkPlan, global::Vapi.FallbackPlan? fallbackPlan) { @@ -100,6 +112,7 @@ public XaiVoice( this.Provider = provider; this.VoiceId = voiceId; this.Language = language; + this.Speed = speed; this.ChunkPlan = chunkPlan; this.FallbackPlan = fallbackPlan; } diff --git a/src/libs/Vapi/openapi.yaml b/src/libs/Vapi/openapi.yaml index 40028082..e1b1bdbb 100644 --- a/src/libs/Vapi/openapi.yaml +++ b/src/libs/Vapi/openapi.yaml @@ -23878,6 +23878,14 @@ "Zoe" ] }, + "version": { + "type": "number", + "description": "The Vapi voice routing generation. Version 1 uses legacy mappings; version 2 can use xAI-backed voices when available. When omitted, Version 1 is used.", + "enum": [ + 1, + 2 + ] + }, "speed": { "type": "number", "description": "This is the speed multiplier that will be used.\n\n@default 1", @@ -23885,6 +23893,69 @@ "maximum": 2, "default": 1 }, + "language": { + "type": "string", + "description": "Language for Vapi voice synthesis. For Version 2, omit this field or set `auto` for automatic language detection. Version 1 supports legacy Vapi language values.", + "enum": [ + "ar", + "ar-AE", + "ar-EG", + "ar-SA", + "auto", + "bg", + "bn", + "cs", + "da", + "de", + "el", + "en", + "en-AU", + "en-CA", + "en-GB", + "en-US", + "es", + "es-ES", + "es-MX", + "fi", + "fil", + "fr", + "fr-CA", + "fr-FR", + "gu", + "he", + "hi", + "hr", + "hu", + "id", + "it", + "ja", + "ka", + "kn", + "ko", + "ml", + "mr", + "ms", + "nl", + "no", + "pa", + "pl", + "pt", + "pt-BR", + "pt-PT", + "ro", + "ru", + "sk", + "sv", + "ta", + "te", + "th", + "tl", + "tr", + "uk", + "vi", + "zh" + ] + }, "pronunciationDictionary": { "description": "List of pronunciation dictionary locators for custom word pronunciations.", "type": "array", @@ -24481,6 +24552,13 @@ ], "default": "en" }, + "speed": { + "type": "number", + "description": "Speed multiplier for xAI TTS synthesis.", + "minimum": 0.7, + "maximum": 1.5, + "default": 1.1 + }, "chunkPlan": { "description": "This is the plan for chunking the model output before it is sent to the voice provider.", "allOf": [ @@ -26006,6 +26084,14 @@ "Zoe" ] }, + "version": { + "type": "number", + "description": "The Vapi voice routing generation. Version 1 uses legacy mappings; version 2 can use xAI-backed voices when available. When omitted, Version 1 is used.", + "enum": [ + 1, + 2 + ] + }, "speed": { "type": "number", "description": "This is the speed multiplier that will be used.\n\n@default 1", @@ -26013,6 +26099,69 @@ "maximum": 2, "default": 1 }, + "language": { + "type": "string", + "description": "Language for Vapi voice synthesis. For Version 2, omit this field or set `auto` for automatic language detection. Version 1 supports legacy Vapi language values.", + "enum": [ + "ar", + "ar-AE", + "ar-EG", + "ar-SA", + "auto", + "bg", + "bn", + "cs", + "da", + "de", + "el", + "en", + "en-AU", + "en-CA", + "en-GB", + "en-US", + "es", + "es-ES", + "es-MX", + "fi", + "fil", + "fr", + "fr-CA", + "fr-FR", + "gu", + "he", + "hi", + "hr", + "hu", + "id", + "it", + "ja", + "ka", + "kn", + "ko", + "ml", + "mr", + "ms", + "nl", + "no", + "pa", + "pl", + "pt", + "pt-BR", + "pt-PT", + "ro", + "ru", + "sk", + "sv", + "ta", + "te", + "th", + "tl", + "tr", + "uk", + "vi", + "zh" + ] + }, "pronunciationDictionary": { "description": "List of pronunciation dictionary locators for custom word pronunciations.", "type": "array", @@ -26242,6 +26391,13 @@ ], "default": "en" }, + "speed": { + "type": "number", + "description": "Speed multiplier for xAI TTS synthesis.", + "minimum": 0.7, + "maximum": 1.5, + "default": 1.1 + }, "chunkPlan": { "description": "This is the plan for chunking the model output before it is sent to the voice provider.", "allOf": [ @@ -35262,6 +35418,7 @@ "call.in-progress.error-vapifault-xai-transcriber-invalid-config", "call.in-progress.error-vapifault-xai-transcriber-rate-limited", "call.in-progress.error-vapifault-xai-transcriber-server-error", + "call.in-progress.error-vapifault-xai-voice-failed", "call.in-progress.error-warm-transfer-assistant-cancelled", "call.in-progress.error-warm-transfer-max-duration", "call.in-progress.error-warm-transfer-microphone-timeout", @@ -51884,12 +52041,21 @@ } }, "role": { - "enum": [ - "admin", - "editor", - "viewer" - ], - "type": "string" + "pattern": "ORG_ROLE_OR_CUSTOM_ROLE_PATTERN", + "oneOf": [ + { + "type": "string", + "enum": [ + "admin", + "editor", + "viewer" + ] + }, + { + "type": "string", + "pattern": "^org-[a-z0-9-]+$" + } + ] }, "redirectTo": { "type": "string" @@ -51907,12 +52073,21 @@ "type": "string" }, "role": { - "enum": [ - "admin", - "editor", - "viewer" - ], - "type": "string" + "pattern": "ORG_ROLE_OR_CUSTOM_ROLE_PATTERN", + "oneOf": [ + { + "type": "string", + "enum": [ + "admin", + "editor", + "viewer" + ] + }, + { + "type": "string", + "pattern": "^org-[a-z0-9-]+$" + } + ] } }, "required": [ @@ -60980,6 +61155,7 @@ "call.in-progress.error-vapifault-xai-transcriber-invalid-config", "call.in-progress.error-vapifault-xai-transcriber-rate-limited", "call.in-progress.error-vapifault-xai-transcriber-server-error", + "call.in-progress.error-vapifault-xai-voice-failed", "call.in-progress.error-warm-transfer-assistant-cancelled", "call.in-progress.error-warm-transfer-max-duration", "call.in-progress.error-warm-transfer-microphone-timeout", @@ -62350,6 +62526,7 @@ "call.in-progress.error-vapifault-xai-transcriber-invalid-config", "call.in-progress.error-vapifault-xai-transcriber-rate-limited", "call.in-progress.error-vapifault-xai-transcriber-server-error", + "call.in-progress.error-vapifault-xai-voice-failed", "call.in-progress.error-warm-transfer-assistant-cancelled", "call.in-progress.error-warm-transfer-max-duration", "call.in-progress.error-warm-transfer-microphone-timeout",