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 0000000..4661198
--- /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 0000000..45b8785
--- /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 0000000..88d0e4d
--- /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 0000000..aca92f9
--- /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 393a22e..83e28bb 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 0e17c9f..c3b6f45 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; }
///