diff --git a/src/libs/ResembleAI/Generated/ResembleAI.IVoicesClient.CreateVoice.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.IVoicesClient.CreateVoice.g.cs
index d81e01a..1ce015e 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.IVoicesClient.CreateVoice.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.IVoicesClient.CreateVoice.g.cs
@@ -35,9 +35,6 @@ public partial interface IVoicesClient
/// Create a new voice
///
///
- ///
- /// Default Value: professional
- ///
///
///
///
@@ -48,7 +45,6 @@ public partial interface IVoicesClient
///
global::System.Threading.Tasks.Task CreateVoiceAsync(
string name,
- global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType? voiceType = default,
string? datasetUrl = default,
string? callbackUri = default,
string? language = default,
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType.g.cs
deleted file mode 100644
index 888ca27..0000000
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType.g.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-#nullable enable
-
-namespace ResembleAI.JsonConverters
-{
- ///
- public sealed class VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType 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::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeExtensions.ToEnum(stringValue) ?? default;
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
-
- writer.WriteStringValue(global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeExtensions.ToValueString(value));
- }
- }
-}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeNullable.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeNullable.g.cs
deleted file mode 100644
index 8af3840..0000000
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeNullable.g.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#nullable enable
-
-namespace ResembleAI.JsonConverters
-{
- ///
- public sealed class VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
- {
- ///
- public override global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType? 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::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeExtensions.ToEnum(stringValue);
- }
-
- break;
- }
- case global::System.Text.Json.JsonTokenType.Number:
- {
- var numValue = reader.GetInt32();
- return (global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType)numValue;
- }
- case global::System.Text.Json.JsonTokenType.Null:
- {
- return default(global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType?);
- }
- default:
- throw new global::System.ArgumentOutOfRangeException(nameof(reader));
- }
-
- return default;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType? 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::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeExtensions.ToValueString(value.Value));
- }
- }
- }
-}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
index 830f575..8a19d33 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
@@ -237,10 +237,6 @@ namespace ResembleAI
typeof(global::ResembleAI.JsonConverters.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItemMediaTypeNullableJsonConverter),
- typeof(global::ResembleAI.JsonConverters.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeJsonConverter),
-
- typeof(global::ResembleAI.JsonConverters.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceTypeNullableJsonConverter),
-
typeof(global::ResembleAI.JsonConverters.PronunciationsGetParametersStatusJsonConverter),
typeof(global::ResembleAI.JsonConverters.PronunciationsGetParametersStatusNullableJsonConverter),
@@ -572,7 +568,6 @@ namespace ResembleAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsApiSupport))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.VoicesListVoicesResponse200))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType), TypeInfoPropertyName = "VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech))]
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
index 563441b..10c584e 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
@@ -1188,611 +1188,607 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType? Type290 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem? Type290 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem? Type291 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus? Type291 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus? Type292 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type292 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type293 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type293 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type294 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type294 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type295 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemApiSupport? Type295 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemApiSupport? Type296 { get; set; }
+ public global::ResembleAI.VoicesCreateVoiceResponse200? Type296 { get; set; }
///
///
///
- public global::ResembleAI.VoicesCreateVoiceResponse200? Type297 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItem? Type297 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItem? Type298 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatus? Type298 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatus? Type299 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type299 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type300 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type300 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type301 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type301 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type302 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemApiSupport? Type302 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemApiSupport? Type303 { get; set; }
+ public global::ResembleAI.VoicesGetVoiceResponse200? Type303 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetVoiceResponse200? Type304 { get; set; }
+ public global::ResembleAI.VoicesDeleteVoiceResponse200? Type304 { get; set; }
///
///
///
- public global::ResembleAI.VoicesDeleteVoiceResponse200? Type305 { get; set; }
+ public global::ResembleAI.VoicesBuildVoiceResponse200? Type305 { get; set; }
///
///
///
- public global::ResembleAI.VoicesBuildVoiceResponse200? Type306 { get; set; }
+ public global::ResembleAI.VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems? Type306 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems? Type307 { get; set; }
+ public global::ResembleAI.VoiceDesignGenerateVoiceDesignResponse200? Type307 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignGenerateVoiceDesignResponse200? Type308 { get; set; }
+ public global::System.Collections.Generic.IList? Type308 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type309 { get; set; }
+ public global::ResembleAI.VoiceDesignCreateVoiceFromCandidateResponse200? Type309 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignCreateVoiceFromCandidateResponse200? Type310 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems? Type310 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems? Type311 { get; set; }
+ public global::ResembleAI.RecordingsListRecordingsResponse200? Type311 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsListRecordingsResponse200? Type312 { get; set; }
+ public global::System.Collections.Generic.IList? Type312 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type313 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem? Type313 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem? Type314 { get; set; }
+ public global::ResembleAI.RecordingsCreateRecordingResponse200? Type314 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsCreateRecordingResponse200? Type315 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem? Type315 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem? Type316 { get; set; }
+ public global::ResembleAI.RecordingsGetRecordingResponse200? Type316 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsGetRecordingResponse200? Type317 { get; set; }
+ public global::ResembleAI.RecordingsDeleteRecordingResponse200? Type317 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsDeleteRecordingResponse200? Type318 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem? Type318 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem? Type319 { get; set; }
+ public global::ResembleAI.RecordingsUpdateRecordingResponse200? Type319 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsUpdateRecordingResponse200? Type320 { get; set; }
+ public global::ResembleAI.TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems? Type320 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems? Type321 { get; set; }
+ public global::ResembleAI.TermSubstitutionsListTermSubstitutionsResponse200? Type321 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsListTermSubstitutionsResponse200? Type322 { get; set; }
+ public global::System.Collections.Generic.IList? Type322 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type323 { get; set; }
+ public global::ResembleAI.TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem? Type323 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem? Type324 { get; set; }
+ public global::ResembleAI.TermSubstitutionsCreateTermSubstitutionResponse200? Type324 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsCreateTermSubstitutionResponse200? Type325 { get; set; }
+ public global::ResembleAI.TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem? Type325 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem? Type326 { get; set; }
+ public global::ResembleAI.TermSubstitutionsGetTermSubstitutionResponse200? Type326 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsGetTermSubstitutionResponse200? Type327 { get; set; }
+ public global::ResembleAI.TermSubstitutionsDeleteTermSubstitutionResponse200? Type327 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsDeleteTermSubstitutionResponse200? Type328 { get; set; }
+ public global::ResembleAI.PronunciationsGetParametersStatus? Type328 { get; set; }
///
///
///
- public global::ResembleAI.PronunciationsGetParametersStatus? Type329 { get; set; }
+ public global::ResembleAI.CustomPronunciationStatus? Type329 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationStatus? Type330 { get; set; }
+ public global::ResembleAI.CustomPronunciation? Type330 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciation? Type331 { get; set; }
+ public global::ResembleAI.CustomPronunciationsListPronunciationsResponse200? Type331 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsListPronunciationsResponse200? Type332 { get; set; }
+ public global::System.Collections.Generic.IList? Type332 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type333 { get; set; }
+ public global::ResembleAI.CustomPronunciationsCreatePronunciationResponse201? Type333 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsCreatePronunciationResponse201? Type334 { get; set; }
+ public global::ResembleAI.PronunciationsBulkPostResponsesContentApplicationJsonSchemaErrorsItems? Type334 { get; set; }
///
///
///
- public global::ResembleAI.PronunciationsBulkPostResponsesContentApplicationJsonSchemaErrorsItems? Type335 { get; set; }
+ public global::ResembleAI.CustomPronunciationsBulkCreatePronunciationsResponse201? Type335 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsBulkCreatePronunciationsResponse201? Type336 { get; set; }
+ public global::System.Collections.Generic.IList? Type336 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type337 { get; set; }
+ public global::ResembleAI.CustomPronunciationsGetPronunciationResponse200? Type337 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsGetPronunciationResponse200? Type338 { get; set; }
+ public global::ResembleAI.CustomPronunciationsDeletePronunciationResponse200? Type338 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsDeletePronunciationResponse200? Type339 { get; set; }
+ public global::ResembleAI.CustomPronunciationsUpdatePronunciationResponse200? Type339 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsUpdatePronunciationResponse200? Type340 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsGetResponsesContentApplicationJsonSchemaItemsItems? Type340 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsGetResponsesContentApplicationJsonSchemaItemsItems? Type341 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsListVoiceSettingsPresetsResponse200? Type341 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsListVoiceSettingsPresetsResponse200? Type342 { get; set; }
+ public global::System.Collections.Generic.IList? Type342 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type343 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsPostResponsesContentApplicationJsonSchemaData? Type343 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsPostResponsesContentApplicationJsonSchemaData? Type344 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsCreateVoiceSettingsPresetResponse201? Type344 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsCreateVoiceSettingsPresetResponse201? Type345 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUuidGetResponsesContentApplicationJsonSchemaData? Type345 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUuidGetResponsesContentApplicationJsonSchemaData? Type346 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsGetVoiceSettingsPresetResponse200? Type346 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsGetVoiceSettingsPresetResponse200? Type347 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsDeleteVoiceSettingsPresetResponse200? Type347 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsDeleteVoiceSettingsPresetResponse200? Type348 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUuidPatchResponsesContentApplicationJsonSchemaData? Type348 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUuidPatchResponsesContentApplicationJsonSchemaData? Type349 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUpdateVoiceSettingsPresetResponse200? Type349 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUpdateVoiceSettingsPresetResponse200? Type350 { get; set; }
+ public global::ResembleAI.ProjectsGetResponsesContentApplicationJsonSchemaItemsItems? Type350 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsGetResponsesContentApplicationJsonSchemaItemsItems? Type351 { get; set; }
+ public global::ResembleAI.ProjectsListProjectsResponse200? Type351 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsListProjectsResponse200? Type352 { get; set; }
+ public global::System.Collections.Generic.IList? Type352 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type353 { get; set; }
+ public global::ResembleAI.ProjectsPostResponsesContentApplicationJsonSchemaItem? Type353 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsPostResponsesContentApplicationJsonSchemaItem? Type354 { get; set; }
+ public global::ResembleAI.ProjectsCreateProjectResponse200? Type354 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsCreateProjectResponse200? Type355 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidGetResponsesContentApplicationJsonSchemaItem? Type355 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidGetResponsesContentApplicationJsonSchemaItem? Type356 { get; set; }
+ public global::ResembleAI.ProjectsGetProjectResponse200? Type356 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsGetProjectResponse200? Type357 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidPutResponsesContentApplicationJsonSchemaItem? Type357 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidPutResponsesContentApplicationJsonSchemaItem? Type358 { get; set; }
+ public global::ResembleAI.ProjectsUpdateProjectResponse200? Type358 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsUpdateProjectResponse200? Type359 { get; set; }
+ public global::ResembleAI.ProjectsDeleteProjectResponse200? Type359 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsDeleteProjectResponse200? Type360 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsGetResponsesContentApplicationJsonSchemaItemsItems? Type360 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsGetResponsesContentApplicationJsonSchemaItemsItems? Type361 { get; set; }
+ public global::ResembleAI.ClipsListClipsResponse200? Type361 { get; set; }
///
///
///
- public global::ResembleAI.ClipsListClipsResponse200? Type362 { get; set; }
+ public global::System.Collections.Generic.IList? Type362 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type363 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsClipUuidGetResponsesContentApplicationJsonSchemaItem? Type363 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsClipUuidGetResponsesContentApplicationJsonSchemaItem? Type364 { get; set; }
+ public global::ResembleAI.ClipsGetClipResponse200? Type364 { get; set; }
///
///
///
- public global::ResembleAI.ClipsGetClipResponse200? Type365 { get; set; }
+ public global::ResembleAI.ClipsDeleteClipResponse200? Type365 { get; set; }
///
///
///
- public global::ResembleAI.ClipsDeleteClipResponse200? Type366 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsClipUuidPatchResponsesContentApplicationJsonSchemaItem? Type366 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsClipUuidPatchResponsesContentApplicationJsonSchemaItem? Type367 { get; set; }
+ public global::ResembleAI.ClipsUpdateClipResponse200? Type367 { get; set; }
///
///
///
- public global::ResembleAI.ClipsUpdateClipResponse200? Type368 { get; set; }
+ public global::ResembleAI.AccountGetResponsesContentApplicationJsonSchemaItem? Type368 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetResponsesContentApplicationJsonSchemaItem? Type369 { get; set; }
+ public global::ResembleAI.AccountGetAccountResponse200? Type369 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetAccountResponse200? Type370 { get; set; }
+ public global::ResembleAI.AccountTeamsGetResponsesContentApplicationJsonSchemaItemsItems? Type370 { get; set; }
///
///
///
- public global::ResembleAI.AccountTeamsGetResponsesContentApplicationJsonSchemaItemsItems? Type371 { get; set; }
+ public global::ResembleAI.AccountGetTeamsResponse200? Type371 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetTeamsResponse200? Type372 { get; set; }
+ public global::System.Collections.Generic.IList? Type372 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type373 { get; set; }
+ public global::ResembleAI.AccountTeamsTeamUuidGetResponsesContentApplicationJsonSchemaItem? Type373 { get; set; }
///
///
///
- public global::ResembleAI.AccountTeamsTeamUuidGetResponsesContentApplicationJsonSchemaItem? Type374 { get; set; }
+ public global::ResembleAI.AccountGetTeamResponse200? Type374 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetTeamResponse200? Type375 { get; set; }
+ public global::ResembleAI.AccountBillingUsageGetResponsesContentApplicationJsonSchemaItem? Type375 { get; set; }
///
///
///
- public global::ResembleAI.AccountBillingUsageGetResponsesContentApplicationJsonSchemaItem? Type376 { get; set; }
+ public global::ResembleAI.AccountGetBillingUsageResponse200? Type376 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetBillingUsageResponse200? Type377 { get; set; }
+ public global::ResembleAI.DuetVoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type377 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type378 { get; set; }
+ public global::ResembleAI.DuetsListDuetVoicesResponse200? Type378 { get; set; }
///
///
///
- public global::ResembleAI.DuetsListDuetVoicesResponse200? Type379 { get; set; }
+ public global::System.Collections.Generic.IList? Type379 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type380 { get; set; }
+ public global::ResembleAI.DuetVoicesPostResponsesContentApplicationJsonSchemaItem? Type380 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesPostResponsesContentApplicationJsonSchemaItem? Type381 { get; set; }
+ public global::ResembleAI.DuetsCreateDuetVoiceResponse200? Type381 { get; set; }
///
///
///
- public global::ResembleAI.DuetsCreateDuetVoiceResponse200? Type382 { get; set; }
+ public global::ResembleAI.DuetVoicesIdPutResponsesContentApplicationJsonSchemaItem? Type382 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesIdPutResponsesContentApplicationJsonSchemaItem? Type383 { get; set; }
+ public global::ResembleAI.DuetsUpdateDuetVoiceResponse200? Type383 { get; set; }
///
///
///
- public global::ResembleAI.DuetsUpdateDuetVoiceResponse200? Type384 { get; set; }
+ public global::ResembleAI.DuetsDeleteDuetVoiceResponse200? Type384 { get; set; }
///
///
///
- public global::ResembleAI.DuetsDeleteDuetVoiceResponse200? Type385 { get; set; }
+ public global::ResembleAI.DuetVoicePairsGetResponsesContentApplicationJsonSchemaItemsItems? Type385 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicePairsGetResponsesContentApplicationJsonSchemaItemsItems? Type386 { get; set; }
+ public global::ResembleAI.DuetsListDuetVoicePairsResponse200? Type386 { get; set; }
///
///
///
- public global::ResembleAI.DuetsListDuetVoicePairsResponse200? Type387 { get; set; }
+ public global::System.Collections.Generic.IList? Type387 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type388 { get; set; }
+ public global::ResembleAI.DuetVoicePairsPostResponsesContentApplicationJsonSchemaItem? Type388 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicePairsPostResponsesContentApplicationJsonSchemaItem? Type389 { get; set; }
+ public global::ResembleAI.DuetsCreateDuetVoicePairResponse200? Type389 { get; set; }
///
///
///
- public global::ResembleAI.DuetsCreateDuetVoicePairResponse200? Type390 { get; set; }
+ public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItemsSpeaker? Type390 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItemsSpeaker? Type391 { get; set; }
+ public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItems? Type391 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItems? Type392 { get; set; }
+ public global::ResembleAI.DuetPostResponsesContentApplicationJsonSchemaItem? Type392 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostResponsesContentApplicationJsonSchemaItem? Type393 { get; set; }
+ public global::ResembleAI.DuetsGenerateDuetResponse200? Type393 { get; set; }
///
///
///
- public global::ResembleAI.DuetsGenerateDuetResponse200? Type394 { get; set; }
+ public global::ResembleAI.SynthesizeRequest? Type394 { get; set; }
///
///
///
- public global::ResembleAI.SynthesizeRequest? Type395 { get; set; }
+ public global::ResembleAI.StreamSynthesizeRequest? Type395 { get; set; }
///
///
///
- public global::ResembleAI.StreamSynthesizeRequest? Type396 { get; set; }
+ public global::ResembleAI.CreateTranscriptRequest? Type396 { get; set; }
///
///
///
- public global::ResembleAI.CreateTranscriptRequest? Type397 { get; set; }
+ public global::ResembleAI.AskTranscriptQuestionRequest? Type397 { get; set; }
///
///
///
- public global::ResembleAI.AskTranscriptQuestionRequest? Type398 { get; set; }
+ public global::ResembleAI.CreateAudioEnhancementRequest? Type398 { get; set; }
///
///
///
- public global::ResembleAI.CreateAudioEnhancementRequest? Type399 { get; set; }
+ public global::ResembleAI.CreateAgentRequest? Type399 { get; set; }
///
///
///
- public global::ResembleAI.CreateAgentRequest? Type400 { get; set; }
+ public global::System.Collections.Generic.IList? Type400 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type401 { get; set; }
+ public global::ResembleAI.UpdateAgentRequest? Type401 { get; set; }
///
///
///
- public global::ResembleAI.UpdateAgentRequest? Type402 { get; set; }
+ public global::System.Collections.Generic.IList