diff --git a/src/libs/ResembleAI/Generated/ResembleAI.ISubpackageDeepfakeDetectionClient.CreateDetection.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.ISubpackageDeepfakeDetectionClient.CreateDetection.g.cs
index 94fcb55..d0573da 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.ISubpackageDeepfakeDetectionClient.CreateDetection.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.ISubpackageDeepfakeDetectionClient.CreateDetection.g.cs
@@ -77,6 +77,12 @@ public partial interface ISubpackageDeepfakeDetectionClient
///
/// Use talking_head for face-swaps
///
+ ///
+ /// Video only. Selects which detection components run for a video file:
+ /// `audio` (audio track only), `video` (visual frames only), or `all` (both — the default).
+ /// Ignored for audio and image inputs. Invalid values are rejected with HTTP 400.
+ /// Default Value: all
+ ///
///
/// Run multimodal intelligence analysis on the media
/// Default Value: false
@@ -110,6 +116,7 @@ public partial interface ISubpackageDeepfakeDetectionClient
double? endRegion = default,
double? maxVideoSecs = default,
global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModelTypes? modelTypes = default,
+ global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality? modality = default,
bool? intelligence = default,
bool? audioSourceTracing = default,
bool? useReverseSearch = default,
@@ -155,6 +162,12 @@ public partial interface ISubpackageDeepfakeDetectionClient
///
/// Use talking_head for face-swaps
///
+ ///
+ /// Video only. Selects which detection components run for a video file:
+ /// `audio` (audio track only), `video` (visual frames only), or `all` (both — the default).
+ /// Ignored for audio and image inputs. Invalid values are rejected with HTTP 400.
+ /// Default Value: all
+ ///
///
/// Run multimodal intelligence analysis on the media
/// Default Value: false
@@ -188,6 +201,7 @@ public partial interface ISubpackageDeepfakeDetectionClient
double? endRegion = default,
double? maxVideoSecs = default,
global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModelTypes? modelTypes = default,
+ global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality? modality = default,
bool? intelligence = default,
bool? audioSourceTracing = default,
bool? useReverseSearch = default,
@@ -232,6 +246,12 @@ public partial interface ISubpackageDeepfakeDetectionClient
///
/// Use talking_head for face-swaps
///
+ ///
+ /// Video only. Selects which detection components run for a video file:
+ /// `audio` (audio track only), `video` (visual frames only), or `all` (both — the default).
+ /// Ignored for audio and image inputs. Invalid values are rejected with HTTP 400.
+ /// Default Value: all
+ ///
///
/// Run multimodal intelligence analysis on the media
/// Default Value: false
@@ -265,6 +285,7 @@ public partial interface ISubpackageDeepfakeDetectionClient
double? endRegion = default,
double? maxVideoSecs = default,
global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModelTypes? modelTypes = default,
+ global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality? modality = default,
bool? intelligence = default,
bool? audioSourceTracing = default,
bool? useReverseSearch = default,
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality.g.cs
new file mode 100644
index 0000000..511c832
--- /dev/null
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace ResembleAI.JsonConverters
+{
+ ///
+ public sealed class DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality 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.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityNullable.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityNullable.g.cs
new file mode 100644
index 0000000..60f9410
--- /dev/null
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace ResembleAI.JsonConverters
+{
+ ///
+ public sealed class DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality? 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.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality? 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.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModality.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModality.g.cs
new file mode 100644
index 0000000..7dca60f
--- /dev/null
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModality.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace ResembleAI.JsonConverters
+{
+ ///
+ public sealed class DetectPostRequestBodyContentMultipartFormDataSchemaModalityJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality 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.DetectPostRequestBodyContentMultipartFormDataSchemaModalityExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModalityExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModalityNullable.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModalityNullable.g.cs
new file mode 100644
index 0000000..563a05d
--- /dev/null
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModalityNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace ResembleAI.JsonConverters
+{
+ ///
+ public sealed class DetectPostRequestBodyContentMultipartFormDataSchemaModalityNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality? 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.DetectPostRequestBodyContentMultipartFormDataSchemaModalityExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality? 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.DetectPostRequestBodyContentMultipartFormDataSchemaModalityExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemModality.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemModality.g.cs
new file mode 100644
index 0000000..869b47c
--- /dev/null
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemModality.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace ResembleAI.JsonConverters
+{
+ ///
+ public sealed class DetectPostResponsesContentApplicationJsonSchemaItemModalityJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality 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.DetectPostResponsesContentApplicationJsonSchemaItemModalityExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModalityExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemModalityNullable.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemModalityNullable.g.cs
new file mode 100644
index 0000000..403216b
--- /dev/null
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemModalityNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace ResembleAI.JsonConverters
+{
+ ///
+ public sealed class DetectPostResponsesContentApplicationJsonSchemaItemModalityNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality? 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.DetectPostResponsesContentApplicationJsonSchemaItemModalityExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality? 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.DetectPostResponsesContentApplicationJsonSchemaItemModalityExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality.g.cs
new file mode 100644
index 0000000..6cd3940
--- /dev/null
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace ResembleAI.JsonConverters
+{
+ ///
+ public sealed class DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality 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.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityNullable.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityNullable.g.cs
new file mode 100644
index 0000000..c5af6c2
--- /dev/null
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace ResembleAI.JsonConverters
+{
+ ///
+ public sealed class DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality? 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.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality? 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.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
index dd98ab1..830f575 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs
@@ -125,10 +125,22 @@ namespace ResembleAI
typeof(global::ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsStatusNullableJsonConverter),
+ typeof(global::ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityJsonConverter),
+
+ typeof(global::ResembleAI.JsonConverters.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModalityNullableJsonConverter),
+
typeof(global::ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModelTypesJsonConverter),
typeof(global::ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModelTypesNullableJsonConverter),
+ typeof(global::ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModalityJsonConverter),
+
+ typeof(global::ResembleAI.JsonConverters.DetectPostRequestBodyContentMultipartFormDataSchemaModalityNullableJsonConverter),
+
+ typeof(global::ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemModalityJsonConverter),
+
+ typeof(global::ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemModalityNullableJsonConverter),
+
typeof(global::ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudTypeJsonConverter),
typeof(global::ResembleAI.JsonConverters.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudTypeNullableJsonConverter),
@@ -153,6 +165,10 @@ namespace ResembleAI
typeof(global::ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessmentNullableJsonConverter),
+ typeof(global::ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityJsonConverter),
+
+ typeof(global::ResembleAI.JsonConverters.DetectUuidGetResponsesContentApplicationJsonSchemaItemModalityNullableJsonConverter),
+
typeof(global::ResembleAI.JsonConverters.DetectBatchStatusJsonConverter),
typeof(global::ResembleAI.JsonConverters.DetectBatchStatusNullableJsonConverter),
@@ -425,6 +441,7 @@ namespace ResembleAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SecureUploadsCreateSecureUploadResponse200))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsMediaType), TypeInfoPropertyName = "DetectGetResponsesContentApplicationJsonSchemaItemsItemsMediaType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsStatus), TypeInfoPropertyName = "DetectGetResponsesContentApplicationJsonSchemaItemsItemsStatus2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality), TypeInfoPropertyName = "DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAudioMetrics))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectImageMetricsChildrenItems))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectImageMetrics))]
@@ -446,6 +463,8 @@ namespace ResembleAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DeepfakeDetectionListDetectionsResponse200))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModelTypes), TypeInfoPropertyName = "DetectPostRequestBodyContentMultipartFormDataSchemaModelTypes2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality), TypeInfoPropertyName = "DetectPostRequestBodyContentMultipartFormDataSchemaModality2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality), TypeInfoPropertyName = "DetectPostResponsesContentApplicationJsonSchemaItemModality2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType), TypeInfoPropertyName = "DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Fraud))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment), TypeInfoPropertyName = "DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment2")]
@@ -468,6 +487,7 @@ namespace ResembleAI
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescription1))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescription), TypeInfoPropertyName = "DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescription2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality), TypeInfoPropertyName = "DetectUuidGetResponsesContentApplicationJsonSchemaItemModality2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItem))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfDetectUuidGetResponsesContentApplicationJsonSchemaItemAudioSourceTracingObject2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfDetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceObject2")]
diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
index 2c736b0..563441b 100644
--- a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
+++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs
@@ -664,1119 +664,1135 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::ResembleAI.DetectAudioMetrics? Type159 { get; set; }
+ public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsModality? Type159 { get; set; }
///
///
///
- public global::ResembleAI.DetectImageMetricsChildrenItems? Type160 { get; set; }
+ public global::ResembleAI.DetectAudioMetrics? Type160 { get; set; }
///
///
///
- public global::ResembleAI.DetectImageMetrics? Type161 { get; set; }
+ public global::ResembleAI.DetectImageMetricsChildrenItems? Type161 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type162 { get; set; }
+ public global::ResembleAI.DetectImageMetrics? Type162 { get; set; }
///
///
///
- public global::ResembleAI.DetectVideoMetricsChildrenItemsChildrenItemsChildrenItems? Type163 { get; set; }
+ public global::System.Collections.Generic.IList? Type163 { get; set; }
///
///
///
- public global::ResembleAI.DetectVideoMetricsChildrenItemsChildrenItems? Type164 { get; set; }
+ public global::ResembleAI.DetectVideoMetricsChildrenItemsChildrenItemsChildrenItems? Type164 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type165 { get; set; }
+ public global::ResembleAI.DetectVideoMetricsChildrenItemsChildrenItems? Type165 { get; set; }
///
///
///
- public global::ResembleAI.DetectVideoMetricsChildrenItems? Type166 { get; set; }
+ public global::System.Collections.Generic.IList? Type166 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type167 { get; set; }
+ public global::ResembleAI.DetectVideoMetricsChildrenItems? Type167 { get; set; }
///
///
///
- public global::ResembleAI.DetectVideoMetrics? Type168 { get; set; }
+ public global::System.Collections.Generic.IList? Type168 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type169 { get; set; }
+ public global::ResembleAI.DetectVideoMetrics? Type169 { get; set; }
///
///
///
- public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsAudioSourceTracing? Type170 { get; set; }
+ public global::System.Collections.Generic.IList? Type170 { get; set; }
///
///
///
- public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsIntelligence? Type171 { get; set; }
+ public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsAudioSourceTracing? Type171 { get; set; }
///
///
///
- public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsExtraParams? Type172 { get; set; }
+ public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsIntelligence? Type172 { get; set; }
///
///
///
- public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItems? Type173 { get; set; }
+ public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsExtraParams? Type173 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type174 { get; set; }
+ public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItems? Type174 { get; set; }
///
///
///
- public object? Type175 { get; set; }
+ public global::ResembleAI.OneOf? Type175 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type176 { get; set; }
+ public object? Type176 { get; set; }
///
///
///
- public global::ResembleAI.DeepfakeDetectionListDetectionsResponse200? Type177 { get; set; }
+ public global::ResembleAI.OneOf? Type177 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type178 { get; set; }
+ public global::ResembleAI.DeepfakeDetectionListDetectionsResponse200? Type178 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModelTypes? Type179 { get; set; }
+ public global::System.Collections.Generic.IList? Type179 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType? Type180 { get; set; }
+ public global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModelTypes? Type180 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Fraud? Type181 { get; set; }
+ public global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality? Type181 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment? Type182 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality? Type182 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Liveness? Type183 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType? Type183 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1DigitallyAltered? Type184 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Fraud? Type184 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription1? Type185 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment? Type185 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription? Type186 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Liveness? Type186 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligence? Type187 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1DigitallyAltered? Type187 { get; set; }
///
///
///
- public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItem? Type188 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription1? Type188 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type189 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription? Type189 { get; set; }
///
///
///
- public global::ResembleAI.DeepfakeDetectionCreateDetectionResponse200? Type190 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligence? Type190 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemMediaType? Type191 { get; set; }
+ public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItem? Type191 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type192 { get; set; }
+ public global::ResembleAI.OneOf? Type192 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemAudioSourceTracing? Type193 { get; set; }
+ public global::ResembleAI.DeepfakeDetectionCreateDetectionResponse200? Type193 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType? Type194 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemMediaType? Type194 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Fraud? Type195 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type195 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment? Type196 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemAudioSourceTracing? Type196 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Liveness? Type197 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType? Type197 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1DigitallyAltered? Type198 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Fraud? Type198 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescription1? Type199 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment? Type199 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescription? Type200 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Liveness? Type200 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence? Type201 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1DigitallyAltered? Type201 { get; set; }
///
///
///
- public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItem? Type202 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescription1? Type202 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type203 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceDescription? Type203 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type204 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence? Type204 { get; set; }
///
///
///
- public global::ResembleAI.DeepfakeDetectionGetDetectionResponse200? Type205 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality? Type205 { get; set; }
///
///
///
- public global::ResembleAI.DetectBatchStatus? Type206 { get; set; }
+ public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItem? Type206 { get; set; }
///
///
///
- public global::ResembleAI.DetectBatch? Type207 { get; set; }
+ public global::ResembleAI.OneOf? Type207 { get; set; }
///
///
///
- public global::ResembleAI.DeepfakeDetectionCreateDetectBatchResponse202? Type208 { get; set; }
+ public global::ResembleAI.OneOf? Type208 { get; set; }
///
///
///
- public global::ResembleAI.DeepfakeDetectionGetDetectBatchResponse200? Type209 { get; set; }
+ public global::ResembleAI.DeepfakeDetectionGetDetectionResponse200? Type209 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencePostRequestBodyContentApplicationJsonSchemaMediaType? Type210 { get; set; }
+ public global::ResembleAI.DetectBatchStatus? Type210 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItemMediaType? Type211 { get; set; }
+ public global::ResembleAI.DetectBatch? Type211 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItem? Type212 { get; set; }
+ public global::ResembleAI.DeepfakeDetectionCreateDetectBatchResponse202? Type212 { get; set; }
///
///
///
- public global::ResembleAI.IntelligenceRunIntelligenceResponse200? Type213 { get; set; }
+ public global::ResembleAI.DeepfakeDetectionGetDetectBatchResponse200? Type213 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraudType? Type214 { get; set; }
+ public global::ResembleAI.IntelligencePostRequestBodyContentApplicationJsonSchemaMediaType? Type214 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraud? Type215 { get; set; }
+ public global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItemMediaType? Type215 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLivenessAssessment? Type216 { get; set; }
+ public global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItem? Type216 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLiveness? Type217 { get; set; }
+ public global::ResembleAI.IntelligenceRunIntelligenceResponse200? Type217 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionDigitallyAltered? Type218 { get; set; }
+ public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraudType? Type218 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescription? Type219 { get; set; }
+ public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraud? Type219 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsMediaType? Type220 { get; set; }
+ public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLivenessAssessment? Type220 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItems? Type221 { get; set; }
+ public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLiveness? Type221 { get; set; }
///
///
///
- public global::ResembleAI.IntelligenceListIntelligencesResponse200? Type222 { get; set; }
+ public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionDigitallyAltered? Type222 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type223 { get; set; }
+ public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescription? Type223 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionFraudType? Type224 { get; set; }
+ public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsMediaType? Type224 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionFraud? Type225 { get; set; }
+ public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItems? Type225 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionLivenessAssessment? Type226 { get; set; }
+ public global::ResembleAI.IntelligenceListIntelligencesResponse200? Type226 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionLiveness? Type227 { get; set; }
+ public global::System.Collections.Generic.IList? Type227 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionDigitallyAltered? Type228 { get; set; }
+ public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionFraudType? Type228 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescription? Type229 { get; set; }
+ public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionFraud? Type229 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemMediaType? Type230 { get; set; }
+ public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionLivenessAssessment? Type230 { get; set; }
///
///
///
- public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItem? Type231 { get; set; }
+ public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionLiveness? Type231 { get; set; }
///
///
///
- public global::ResembleAI.IntelligenceGetIntelligenceResponse200? Type232 { get; set; }
+ public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionDigitallyAltered? Type232 { get; set; }
///
///
///
- public global::ResembleAI.DetectsUuidIntelligencePostResponsesContentApplicationJsonSchemaItemStatus? Type233 { get; set; }
+ public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescription? Type233 { get; set; }
///
///
///
- public global::ResembleAI.DetectsUuidIntelligencePostResponsesContentApplicationJsonSchemaItem? Type234 { get; set; }
+ public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemMediaType? Type234 { get; set; }
///
///
///
- public global::ResembleAI.DetectIntelligenceAskDetectIntelligenceQuestionResponse202? Type235 { get; set; }
+ public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItem? Type235 { get; set; }
///
///
///
- public global::ResembleAI.DetectsUuidIntelligenceQuestionUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type236 { get; set; }
+ public global::ResembleAI.IntelligenceGetIntelligenceResponse200? Type236 { get; set; }
///
///
///
- public global::ResembleAI.DetectsUuidIntelligenceQuestionUuidGetResponsesContentApplicationJsonSchemaItem? Type237 { get; set; }
+ public global::ResembleAI.DetectsUuidIntelligencePostResponsesContentApplicationJsonSchemaItemStatus? Type237 { get; set; }
///
///
///
- public global::ResembleAI.DetectIntelligenceGetDetectIntelligenceQuestionResponse200? Type238 { get; set; }
+ public global::ResembleAI.DetectsUuidIntelligencePostResponsesContentApplicationJsonSchemaItem? Type238 { get; set; }
///
///
///
- public global::ResembleAI.AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItemsResults? Type239 { get; set; }
+ public global::ResembleAI.DetectIntelligenceAskDetectIntelligenceQuestionResponse202? Type239 { get; set; }
///
///
///
- public global::ResembleAI.AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItems? Type240 { get; set; }
+ public global::ResembleAI.DetectsUuidIntelligenceQuestionUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type240 { get; set; }
///
///
///
- public global::ResembleAI.AudioSourceTracingListAudioSourceTracingsResponse200? Type241 { get; set; }
+ public global::ResembleAI.DetectsUuidIntelligenceQuestionUuidGetResponsesContentApplicationJsonSchemaItem? Type241 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type242 { get; set; }
+ public global::ResembleAI.DetectIntelligenceGetDetectIntelligenceQuestionResponse200? Type242 { get; set; }
///
///
///
- public global::ResembleAI.AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItemResults? Type243 { get; set; }
+ public global::ResembleAI.AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItemsResults? Type243 { get; set; }
///
///
///
- public global::ResembleAI.AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItem? Type244 { get; set; }
+ public global::ResembleAI.AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItems? Type244 { get; set; }
///
///
///
- public global::ResembleAI.AudioSourceTracingGetAudioSourceTracingResponse200? Type245 { get; set; }
+ public global::ResembleAI.AudioSourceTracingListAudioSourceTracingsResponse200? Type245 { get; set; }
///
///
///
- public global::ResembleAI.IdentityGetResponsesContentApplicationJsonSchemaItemsItems? Type246 { get; set; }
+ public global::System.Collections.Generic.IList? Type246 { get; set; }
///
///
///
- public global::ResembleAI.IdentityListIdentitiesResponse200? Type247 { get; set; }
+ public global::ResembleAI.AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItemResults? Type247 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type248 { get; set; }
+ public global::ResembleAI.AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItem? Type248 { get; set; }
///
///
///
- public global::ResembleAI.IdentityPostResponsesContentApplicationJsonSchemaItem? Type249 { get; set; }
+ public global::ResembleAI.AudioSourceTracingGetAudioSourceTracingResponse200? Type249 { get; set; }
///
///
///
- public global::ResembleAI.IdentityCreateIdentityResponse200? Type250 { get; set; }
+ public global::ResembleAI.IdentityGetResponsesContentApplicationJsonSchemaItemsItems? Type250 { get; set; }
///
///
///
- public global::ResembleAI.IdentitySearchPostResponsesContentApplicationJsonSchemaMatchesItems? Type251 { get; set; }
+ public global::ResembleAI.IdentityListIdentitiesResponse200? Type251 { get; set; }
///
///
///
- public global::ResembleAI.IdentitySearchIdentitiesResponse200? Type252 { get; set; }
+ public global::System.Collections.Generic.IList? Type252 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type253 { get; set; }
+ public global::ResembleAI.IdentityPostResponsesContentApplicationJsonSchemaItem? Type253 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkApplyPostParametersPrefer? Type254 { get; set; }
+ public global::ResembleAI.IdentityCreateIdentityResponse200? Type254 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkApplyPostResponsesContentApplicationJsonSchemaItemMediaType? Type255 { get; set; }
+ public global::ResembleAI.IdentitySearchPostResponsesContentApplicationJsonSchemaMatchesItems? Type255 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkApplyPostResponsesContentApplicationJsonSchemaItemMetrics? Type256 { get; set; }
+ public global::ResembleAI.IdentitySearchIdentitiesResponse200? Type256 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkApplyPostResponsesContentApplicationJsonSchemaItem? Type257 { get; set; }
+ public global::System.Collections.Generic.IList? Type257 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type258 { get; set; }
+ public global::ResembleAI.WatermarkApplyPostParametersPrefer? Type258 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkApplyWatermarkResponse200? Type259 { get; set; }
+ public global::ResembleAI.WatermarkApplyPostResponsesContentApplicationJsonSchemaItemMediaType? Type259 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkApplyUuidResultGetResponsesContentApplicationJsonSchemaItemMediaType? Type260 { get; set; }
+ public global::ResembleAI.WatermarkApplyPostResponsesContentApplicationJsonSchemaItemMetrics? Type260 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkApplyUuidResultGetResponsesContentApplicationJsonSchemaItemMetrics? Type261 { get; set; }
+ public global::ResembleAI.WatermarkApplyPostResponsesContentApplicationJsonSchemaItem? Type261 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkApplyUuidResultGetResponsesContentApplicationJsonSchemaItem? Type262 { get; set; }
+ public global::ResembleAI.OneOf? Type262 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type263 { get; set; }
+ public global::ResembleAI.WatermarkApplyWatermarkResponse200? Type263 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkGetWatermarkApplyResultResponse200? Type264 { get; set; }
+ public global::ResembleAI.WatermarkApplyUuidResultGetResponsesContentApplicationJsonSchemaItemMediaType? Type264 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectPostParametersPrefer? Type265 { get; set; }
+ public global::ResembleAI.WatermarkApplyUuidResultGetResponsesContentApplicationJsonSchemaItemMetrics? Type265 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectPostResponsesContentApplicationJsonSchemaItemMediaType? Type266 { get; set; }
+ public global::ResembleAI.WatermarkApplyUuidResultGetResponsesContentApplicationJsonSchemaItem? Type266 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectPostResponsesContentApplicationJsonSchemaItemMetrics? Type267 { get; set; }
+ public global::ResembleAI.OneOf? Type267 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectPostResponsesContentApplicationJsonSchemaItem? Type268 { get; set; }
+ public global::ResembleAI.WatermarkGetWatermarkApplyResultResponse200? Type268 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type269 { get; set; }
+ public global::ResembleAI.WatermarkDetectPostParametersPrefer? Type269 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectWatermarkResponse200? Type270 { get; set; }
+ public global::ResembleAI.WatermarkDetectPostResponsesContentApplicationJsonSchemaItemMediaType? Type270 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItemMediaType? Type271 { get; set; }
+ public global::ResembleAI.WatermarkDetectPostResponsesContentApplicationJsonSchemaItemMetrics? Type271 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItemMetricsHasWatermark? Type272 { get; set; }
+ public global::ResembleAI.WatermarkDetectPostResponsesContentApplicationJsonSchemaItem? Type272 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type273 { get; set; }
+ public global::ResembleAI.OneOf? Type273 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItemMetrics? Type274 { get; set; }
+ public global::ResembleAI.WatermarkDetectWatermarkResponse200? Type274 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItem? Type275 { get; set; }
+ public global::ResembleAI.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItemMediaType? Type275 { get; set; }
///
///
///
- public global::ResembleAI.OneOf? Type276 { get; set; }
+ public global::ResembleAI.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItemMetricsHasWatermark? Type276 { get; set; }
///
///
///
- public global::ResembleAI.WatermarkGetWatermarkDetectionResultResponse200? Type277 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type277 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type278 { get; set; }
+ public global::ResembleAI.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItemMetrics? Type278 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatus? Type279 { get; set; }
+ public global::ResembleAI.WatermarkDetectUuidResultGetResponsesContentApplicationJsonSchemaItem? Type279 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusTextToSpeech? Type280 { get; set; }
+ public global::ResembleAI.OneOf? Type280 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusFill? Type281 { get; set; }
+ public global::ResembleAI.WatermarkGetWatermarkDetectionResultResponse200? Type281 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusVoiceConversion? Type282 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type282 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsApiSupport? Type283 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatus? Type283 { get; set; }
///
///
///
- public global::ResembleAI.VoicesListVoicesResponse200? Type284 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusTextToSpeech? Type284 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type285 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusFill? Type285 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType? Type286 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusVoiceConversion? Type286 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem? Type287 { get; set; }
+ public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsApiSupport? Type287 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus? Type288 { get; set; }
+ public global::ResembleAI.VoicesListVoicesResponse200? Type288 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type289 { get; set; }
+ public global::System.Collections.Generic.IList? Type289 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type290 { get; set; }
+ public global::ResembleAI.VoicesPostRequestBodyContentApplicationJsonSchemaVoiceType? Type290 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type291 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem? Type291 { get; set; }
///
///
///
- public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemApiSupport? Type292 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus? Type292 { get; set; }
///
///
///
- public global::ResembleAI.VoicesCreateVoiceResponse200? Type293 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type293 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItem? Type294 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type294 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatus? Type295 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type295 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type296 { get; set; }
+ public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemApiSupport? Type296 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type297 { get; set; }
+ public global::ResembleAI.VoicesCreateVoiceResponse200? Type297 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type298 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItem? Type298 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemApiSupport? Type299 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatus? Type299 { get; set; }
///
///
///
- public global::ResembleAI.VoicesGetVoiceResponse200? Type300 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type300 { get; set; }
///
///
///
- public global::ResembleAI.VoicesDeleteVoiceResponse200? Type301 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type301 { get; set; }
///
///
///
- public global::ResembleAI.VoicesBuildVoiceResponse200? Type302 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type302 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems? Type303 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemApiSupport? Type303 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignGenerateVoiceDesignResponse200? Type304 { get; set; }
+ public global::ResembleAI.VoicesGetVoiceResponse200? Type304 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type305 { get; set; }
+ public global::ResembleAI.VoicesDeleteVoiceResponse200? Type305 { get; set; }
///
///
///
- public global::ResembleAI.VoiceDesignCreateVoiceFromCandidateResponse200? Type306 { get; set; }
+ public global::ResembleAI.VoicesBuildVoiceResponse200? Type306 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems? Type307 { get; set; }
+ public global::ResembleAI.VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems? Type307 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsListRecordingsResponse200? Type308 { get; set; }
+ public global::ResembleAI.VoiceDesignGenerateVoiceDesignResponse200? Type308 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type309 { get; set; }
+ public global::System.Collections.Generic.IList? Type309 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem? Type310 { get; set; }
+ public global::ResembleAI.VoiceDesignCreateVoiceFromCandidateResponse200? Type310 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsCreateRecordingResponse200? Type311 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems? Type311 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem? Type312 { get; set; }
+ public global::ResembleAI.RecordingsListRecordingsResponse200? Type312 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsGetRecordingResponse200? Type313 { get; set; }
+ public global::System.Collections.Generic.IList? Type313 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsDeleteRecordingResponse200? Type314 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem? Type314 { get; set; }
///
///
///
- public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem? Type315 { get; set; }
+ public global::ResembleAI.RecordingsCreateRecordingResponse200? Type315 { get; set; }
///
///
///
- public global::ResembleAI.RecordingsUpdateRecordingResponse200? Type316 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem? Type316 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems? Type317 { get; set; }
+ public global::ResembleAI.RecordingsGetRecordingResponse200? Type317 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsListTermSubstitutionsResponse200? Type318 { get; set; }
+ public global::ResembleAI.RecordingsDeleteRecordingResponse200? Type318 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type319 { get; set; }
+ public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem? Type319 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem? Type320 { get; set; }
+ public global::ResembleAI.RecordingsUpdateRecordingResponse200? Type320 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsCreateTermSubstitutionResponse200? Type321 { get; set; }
+ public global::ResembleAI.TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems? Type321 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem? Type322 { get; set; }
+ public global::ResembleAI.TermSubstitutionsListTermSubstitutionsResponse200? Type322 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsGetTermSubstitutionResponse200? Type323 { get; set; }
+ public global::System.Collections.Generic.IList? Type323 { get; set; }
///
///
///
- public global::ResembleAI.TermSubstitutionsDeleteTermSubstitutionResponse200? Type324 { get; set; }
+ public global::ResembleAI.TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem? Type324 { get; set; }
///
///
///
- public global::ResembleAI.PronunciationsGetParametersStatus? Type325 { get; set; }
+ public global::ResembleAI.TermSubstitutionsCreateTermSubstitutionResponse200? Type325 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationStatus? Type326 { get; set; }
+ public global::ResembleAI.TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem? Type326 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciation? Type327 { get; set; }
+ public global::ResembleAI.TermSubstitutionsGetTermSubstitutionResponse200? Type327 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsListPronunciationsResponse200? Type328 { get; set; }
+ public global::ResembleAI.TermSubstitutionsDeleteTermSubstitutionResponse200? Type328 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type329 { get; set; }
+ public global::ResembleAI.PronunciationsGetParametersStatus? Type329 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsCreatePronunciationResponse201? Type330 { get; set; }
+ public global::ResembleAI.CustomPronunciationStatus? Type330 { get; set; }
///
///
///
- public global::ResembleAI.PronunciationsBulkPostResponsesContentApplicationJsonSchemaErrorsItems? Type331 { get; set; }
+ public global::ResembleAI.CustomPronunciation? Type331 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsBulkCreatePronunciationsResponse201? Type332 { get; set; }
+ public global::ResembleAI.CustomPronunciationsListPronunciationsResponse200? Type332 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type333 { get; set; }
+ public global::System.Collections.Generic.IList? Type333 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsGetPronunciationResponse200? Type334 { get; set; }
+ public global::ResembleAI.CustomPronunciationsCreatePronunciationResponse201? Type334 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsDeletePronunciationResponse200? Type335 { get; set; }
+ public global::ResembleAI.PronunciationsBulkPostResponsesContentApplicationJsonSchemaErrorsItems? Type335 { get; set; }
///
///
///
- public global::ResembleAI.CustomPronunciationsUpdatePronunciationResponse200? Type336 { get; set; }
+ public global::ResembleAI.CustomPronunciationsBulkCreatePronunciationsResponse201? Type336 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsGetResponsesContentApplicationJsonSchemaItemsItems? Type337 { get; set; }
+ public global::System.Collections.Generic.IList? Type337 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsListVoiceSettingsPresetsResponse200? Type338 { get; set; }
+ public global::ResembleAI.CustomPronunciationsGetPronunciationResponse200? Type338 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type339 { get; set; }
+ public global::ResembleAI.CustomPronunciationsDeletePronunciationResponse200? Type339 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsPostResponsesContentApplicationJsonSchemaData? Type340 { get; set; }
+ public global::ResembleAI.CustomPronunciationsUpdatePronunciationResponse200? Type340 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsCreateVoiceSettingsPresetResponse201? Type341 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsGetResponsesContentApplicationJsonSchemaItemsItems? Type341 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUuidGetResponsesContentApplicationJsonSchemaData? Type342 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsListVoiceSettingsPresetsResponse200? Type342 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsGetVoiceSettingsPresetResponse200? Type343 { get; set; }
+ public global::System.Collections.Generic.IList? Type343 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsDeleteVoiceSettingsPresetResponse200? Type344 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsPostResponsesContentApplicationJsonSchemaData? Type344 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUuidPatchResponsesContentApplicationJsonSchemaData? Type345 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsCreateVoiceSettingsPresetResponse201? Type345 { get; set; }
///
///
///
- public global::ResembleAI.VoiceSettingsPresetsUpdateVoiceSettingsPresetResponse200? Type346 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUuidGetResponsesContentApplicationJsonSchemaData? Type346 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsGetResponsesContentApplicationJsonSchemaItemsItems? Type347 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsGetVoiceSettingsPresetResponse200? Type347 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsListProjectsResponse200? Type348 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsDeleteVoiceSettingsPresetResponse200? Type348 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type349 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUuidPatchResponsesContentApplicationJsonSchemaData? Type349 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsPostResponsesContentApplicationJsonSchemaItem? Type350 { get; set; }
+ public global::ResembleAI.VoiceSettingsPresetsUpdateVoiceSettingsPresetResponse200? Type350 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsCreateProjectResponse200? Type351 { get; set; }
+ public global::ResembleAI.ProjectsGetResponsesContentApplicationJsonSchemaItemsItems? Type351 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidGetResponsesContentApplicationJsonSchemaItem? Type352 { get; set; }
+ public global::ResembleAI.ProjectsListProjectsResponse200? Type352 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsGetProjectResponse200? Type353 { get; set; }
+ public global::System.Collections.Generic.IList? Type353 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidPutResponsesContentApplicationJsonSchemaItem? Type354 { get; set; }
+ public global::ResembleAI.ProjectsPostResponsesContentApplicationJsonSchemaItem? Type354 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsUpdateProjectResponse200? Type355 { get; set; }
+ public global::ResembleAI.ProjectsCreateProjectResponse200? Type355 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsDeleteProjectResponse200? Type356 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidGetResponsesContentApplicationJsonSchemaItem? Type356 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsGetResponsesContentApplicationJsonSchemaItemsItems? Type357 { get; set; }
+ public global::ResembleAI.ProjectsGetProjectResponse200? Type357 { get; set; }
///
///
///
- public global::ResembleAI.ClipsListClipsResponse200? Type358 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidPutResponsesContentApplicationJsonSchemaItem? Type358 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type359 { get; set; }
+ public global::ResembleAI.ProjectsUpdateProjectResponse200? Type359 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsClipUuidGetResponsesContentApplicationJsonSchemaItem? Type360 { get; set; }
+ public global::ResembleAI.ProjectsDeleteProjectResponse200? Type360 { get; set; }
///
///
///
- public global::ResembleAI.ClipsGetClipResponse200? Type361 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsGetResponsesContentApplicationJsonSchemaItemsItems? Type361 { get; set; }
///
///
///
- public global::ResembleAI.ClipsDeleteClipResponse200? Type362 { get; set; }
+ public global::ResembleAI.ClipsListClipsResponse200? Type362 { get; set; }
///
///
///
- public global::ResembleAI.ProjectsProjectUuidClipsClipUuidPatchResponsesContentApplicationJsonSchemaItem? Type363 { get; set; }
+ public global::System.Collections.Generic.IList? Type363 { get; set; }
///
///
///
- public global::ResembleAI.ClipsUpdateClipResponse200? Type364 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsClipUuidGetResponsesContentApplicationJsonSchemaItem? Type364 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetResponsesContentApplicationJsonSchemaItem? Type365 { get; set; }
+ public global::ResembleAI.ClipsGetClipResponse200? Type365 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetAccountResponse200? Type366 { get; set; }
+ public global::ResembleAI.ClipsDeleteClipResponse200? Type366 { get; set; }
///
///
///
- public global::ResembleAI.AccountTeamsGetResponsesContentApplicationJsonSchemaItemsItems? Type367 { get; set; }
+ public global::ResembleAI.ProjectsProjectUuidClipsClipUuidPatchResponsesContentApplicationJsonSchemaItem? Type367 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetTeamsResponse200? Type368 { get; set; }
+ public global::ResembleAI.ClipsUpdateClipResponse200? Type368 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type369 { get; set; }
+ public global::ResembleAI.AccountGetResponsesContentApplicationJsonSchemaItem? Type369 { get; set; }
///
///
///
- public global::ResembleAI.AccountTeamsTeamUuidGetResponsesContentApplicationJsonSchemaItem? Type370 { get; set; }
+ public global::ResembleAI.AccountGetAccountResponse200? Type370 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetTeamResponse200? Type371 { get; set; }
+ public global::ResembleAI.AccountTeamsGetResponsesContentApplicationJsonSchemaItemsItems? Type371 { get; set; }
///
///
///
- public global::ResembleAI.AccountBillingUsageGetResponsesContentApplicationJsonSchemaItem? Type372 { get; set; }
+ public global::ResembleAI.AccountGetTeamsResponse200? Type372 { get; set; }
///
///
///
- public global::ResembleAI.AccountGetBillingUsageResponse200? Type373 { get; set; }
+ public global::System.Collections.Generic.IList? Type373 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type374 { get; set; }
+ public global::ResembleAI.AccountTeamsTeamUuidGetResponsesContentApplicationJsonSchemaItem? Type374 { get; set; }
///
///
///
- public global::ResembleAI.DuetsListDuetVoicesResponse200? Type375 { get; set; }
+ public global::ResembleAI.AccountGetTeamResponse200? Type375 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type376 { get; set; }
+ public global::ResembleAI.AccountBillingUsageGetResponsesContentApplicationJsonSchemaItem? Type376 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesPostResponsesContentApplicationJsonSchemaItem? Type377 { get; set; }
+ public global::ResembleAI.AccountGetBillingUsageResponse200? Type377 { get; set; }
///
///
///
- public global::ResembleAI.DuetsCreateDuetVoiceResponse200? Type378 { get; set; }
+ public global::ResembleAI.DuetVoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type378 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicesIdPutResponsesContentApplicationJsonSchemaItem? Type379 { get; set; }
+ public global::ResembleAI.DuetsListDuetVoicesResponse200? Type379 { get; set; }
///
///
///
- public global::ResembleAI.DuetsUpdateDuetVoiceResponse200? Type380 { get; set; }
+ public global::System.Collections.Generic.IList? Type380 { get; set; }
///
///
///
- public global::ResembleAI.DuetsDeleteDuetVoiceResponse200? Type381 { get; set; }
+ public global::ResembleAI.DuetVoicesPostResponsesContentApplicationJsonSchemaItem? Type381 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicePairsGetResponsesContentApplicationJsonSchemaItemsItems? Type382 { get; set; }
+ public global::ResembleAI.DuetsCreateDuetVoiceResponse200? Type382 { get; set; }
///
///
///
- public global::ResembleAI.DuetsListDuetVoicePairsResponse200? Type383 { get; set; }
+ public global::ResembleAI.DuetVoicesIdPutResponsesContentApplicationJsonSchemaItem? Type383 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type384 { get; set; }
+ public global::ResembleAI.DuetsUpdateDuetVoiceResponse200? Type384 { get; set; }
///
///
///
- public global::ResembleAI.DuetVoicePairsPostResponsesContentApplicationJsonSchemaItem? Type385 { get; set; }
+ public global::ResembleAI.DuetsDeleteDuetVoiceResponse200? Type385 { get; set; }
///
///
///
- public global::ResembleAI.DuetsCreateDuetVoicePairResponse200? Type386 { get; set; }
+ public global::ResembleAI.DuetVoicePairsGetResponsesContentApplicationJsonSchemaItemsItems? Type386 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItemsSpeaker? Type387 { get; set; }
+ public global::ResembleAI.DuetsListDuetVoicePairsResponse200? Type387 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItems? Type388 { get; set; }
+ public global::System.Collections.Generic.IList? Type388 { get; set; }
///
///
///
- public global::ResembleAI.DuetPostResponsesContentApplicationJsonSchemaItem? Type389 { get; set; }
+ public global::ResembleAI.DuetVoicePairsPostResponsesContentApplicationJsonSchemaItem? Type389 { get; set; }
///
///
///
- public global::ResembleAI.DuetsGenerateDuetResponse200? Type390 { get; set; }
+ public global::ResembleAI.DuetsCreateDuetVoicePairResponse200? Type390 { get; set; }
///
///
///
- public global::ResembleAI.SynthesizeRequest? Type391 { get; set; }
+ public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItemsSpeaker? Type391 { get; set; }
///
///
///
- public global::ResembleAI.StreamSynthesizeRequest? Type392 { get; set; }
+ public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItems? Type392 { get; set; }
///
///
///
- public global::ResembleAI.CreateTranscriptRequest? Type393 { get; set; }
+ public global::ResembleAI.DuetPostResponsesContentApplicationJsonSchemaItem? Type393 { get; set; }
///
///
///
- public global::ResembleAI.AskTranscriptQuestionRequest? Type394 { get; set; }
+ public global::ResembleAI.DuetsGenerateDuetResponse200? Type394 { get; set; }
///
///
///
- public global::ResembleAI.CreateAudioEnhancementRequest? Type395 { get; set; }
+ public global::ResembleAI.SynthesizeRequest? Type395 { get; set; }
///
///
///
- public global::ResembleAI.CreateAgentRequest? Type396 { get; set; }
+ public global::ResembleAI.StreamSynthesizeRequest? Type396 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type397 { get; set; }
+ public global::ResembleAI.CreateTranscriptRequest? Type397 { get; set; }
///
///
///
- public global::ResembleAI.UpdateAgentRequest? Type398 { get; set; }
+ public global::ResembleAI.AskTranscriptQuestionRequest? Type398 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList