From 8fb7ad41bc8e18a7f1faaa7b35138aa8f1582094 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 29 Aug 2026 01:38:26 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../ResembleAI.JsonConverters.OneOf2.g.cs | 161 --- .../ResembleAI.JsonSerializerContext.g.cs | 71 +- ...ResembleAI.JsonSerializerContextTypes.g.cs | 947 +++++++++--------- ...leAI.Models.BillingAutoReloadResponse.g.cs | 5 +- .../ResembleAI.Models.BillingPlan.g.cs | 5 +- .../ResembleAI.Models.BillingPlanProduct.g.cs | 5 +- ...mbleAI.Models.BillingSubscriptionItem.g.cs | 5 +- ...AI.Models.BillingSubscriptionResponse.g.cs | 6 +- ...esembleAI.Models.DetectAgentRunResult.g.cs | 5 +- .../ResembleAI.Models.DetectFeedback.g.cs | 5 +- ...embleAI.Models.DetectFeedbackVerdict2.g.cs | 21 + ...ontentApplicationJsonSchemaItemsItems.g.cs | 10 +- ...bleAI.Models.DetectIntelligenceResult.g.cs | 5 +- ...onsesContentApplicationJsonSchemaItem.g.cs | 5 +- ...onsesContentApplicationJsonSchemaItem.g.cs | 10 +- ...ResembleAI.Models.WatermarkDetectItem.g.cs | 5 +- ...odels.WatermarkVisionDetectionMetrics.g.cs | 5 +- ...termarkVisionDetectionMetricsVerdict2.g.cs | 19 + .../Generated/ResembleAI.OneOf.2.Json.g.cs | 141 --- .../Generated/ResembleAI.OneOf.2.g.cs | 294 ------ .../Generated/ResembleAI.PathBuilder.g.cs | 9 +- 21 files changed, 534 insertions(+), 1205 deletions(-) delete mode 100644 src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.OneOf2.g.cs create mode 100644 src/libs/ResembleAI/Generated/ResembleAI.Models.DetectFeedbackVerdict2.g.cs create mode 100644 src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkVisionDetectionMetricsVerdict2.g.cs delete mode 100644 src/libs/ResembleAI/Generated/ResembleAI.OneOf.2.Json.g.cs delete mode 100644 src/libs/ResembleAI/Generated/ResembleAI.OneOf.2.g.cs diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.OneOf2.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.OneOf2.g.cs deleted file mode 100644 index 097d95c..0000000 --- a/src/libs/ResembleAI/Generated/ResembleAI.JsonConverters.OneOf2.g.cs +++ /dev/null @@ -1,161 +0,0 @@ -#nullable enable - -namespace ResembleAI.JsonConverters -{ - /// - public class OneOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter> - { - /// - public override global::ResembleAI.OneOf Read( - ref global::System.Text.Json.Utf8JsonReader reader, - global::System.Type typeToConvert, - global::System.Text.Json.JsonSerializerOptions options) - { - options = options ?? throw new global::System.ArgumentNullException(nameof(options)); - var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); - - - using var __jsonDocument = global::System.Text.Json.JsonDocument.ParseValue(ref reader); - var __rawJson = __jsonDocument.RootElement.GetRawText(); - var __jsonProps = new global::System.Collections.Generic.HashSet(); - if (__jsonDocument.RootElement.ValueKind == global::System.Text.Json.JsonValueKind.Object) - { - foreach (var __jsonProp in __jsonDocument.RootElement.EnumerateObject()) - { - __jsonProps.Add(__jsonProp.Name); - } - } - - var __score0 = 0; - { - var __ti = typeInfoResolver.GetTypeInfo(typeof(T1), options); - if (__ti != null && __ti.Kind == global::System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object) - { - foreach (var __prop in __ti.Properties) - { - if (__jsonProps.Contains(__prop.Name)) __score0++; - } - } - } - var __score1 = 0; - { - var __ti = typeInfoResolver.GetTypeInfo(typeof(T2), options); - if (__ti != null && __ti.Kind == global::System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object) - { - foreach (var __prop in __ti.Properties) - { - if (__jsonProps.Contains(__prop.Name)) __score1++; - } - } - } - var __bestScore = 0; - var __bestIndex = -1; - if (__score0 > __bestScore) { __bestScore = __score0; __bestIndex = 0; } - if (__score1 > __bestScore) { __bestScore = __score1; __bestIndex = 1; } - - T1? value1 = default; - T2? value2 = default; - if (__bestIndex >= 0) - { - if (__bestIndex == 0) - { - try - { - - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - value1 = global::System.Text.Json.JsonSerializer.Deserialize(__rawJson, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - catch (global::System.InvalidOperationException) - { - } - } - - else if (__bestIndex == 1) - { - try - { - - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - value2 = global::System.Text.Json.JsonSerializer.Deserialize(__rawJson, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - catch (global::System.InvalidOperationException) - { - } - } - } - - if (value1 == null && value2 == null) - { - try - { - - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - value1 = global::System.Text.Json.JsonSerializer.Deserialize(__rawJson, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - catch (global::System.InvalidOperationException) - { - } - } - - if (value1 == null && value2 == null) - { - try - { - - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - value2 = global::System.Text.Json.JsonSerializer.Deserialize(__rawJson, typeInfo); - } - catch (global::System.Text.Json.JsonException) - { - } - catch (global::System.InvalidOperationException) - { - } - } - - var __value = new global::ResembleAI.OneOf( - value1, - - value2 - ); - - return __value; - } - - /// - public override void Write( - global::System.Text.Json.Utf8JsonWriter writer, - global::ResembleAI.OneOf value, - global::System.Text.Json.JsonSerializerOptions options) - { - options = options ?? throw new global::System.ArgumentNullException(nameof(options)); - var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set."); - - if (value.IsValue1) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value1!, typeInfo); - } - else if (value.IsValue2) - { - var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T2), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ?? - throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T2).Name}"); - global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value2!, typeInfo); - } - } - } -} \ No newline at end of file diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs index bdd27a6..a8a5f76 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContext.g.cs @@ -16,6 +16,7 @@ namespace ResembleAI })] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Text.Json.JsonElement?))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsMediaType), TypeInfoPropertyName = "DetectGetResponsesContentApplicationJsonSchemaItemsItemsMediaType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsStatus), TypeInfoPropertyName = "DetectGetResponsesContentApplicationJsonSchemaItemsItemsStatus2")] @@ -42,8 +43,6 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsExtraParams))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItems))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(bool))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfDetectGetResponsesContentApplicationJsonSchemaItemsItemsAudioSourceTracingObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfDetectGetResponsesContentApplicationJsonSchemaItemsItemsIntelligenceObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.DateTime))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DeepfakeDetectionListDetectionsResponse200))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(int))] @@ -60,7 +59,6 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription), TypeInfoPropertyName = "DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligence))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItem))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfDetectPostResponsesContentApplicationJsonSchemaItemIntelligenceObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DeepfakeDetectionCreateDetectionResponse200))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemMediaType), TypeInfoPropertyName = "DetectUuidGetResponsesContentApplicationJsonSchemaItemMediaType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemStatus), TypeInfoPropertyName = "DetectUuidGetResponsesContentApplicationJsonSchemaItemStatus2")] @@ -74,13 +72,10 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectIntelligenceResultDescription1))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectIntelligenceResultDescription), TypeInfoPropertyName = "DetectIntelligenceResultDescription2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectIntelligenceResult))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfDetectIntelligenceResultDescriptionObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence), TypeInfoPropertyName = "DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence2")] [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")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DeepfakeDetectionGetDetectionResponse200))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.Error))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary>))] @@ -93,7 +88,6 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectFeedbackVerdict), TypeInfoPropertyName = "DetectFeedbackVerdict2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectFeedbackMediaType), TypeInfoPropertyName = "DetectFeedbackMediaType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectFeedback))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfDetectFeedbackVerdictObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DeepfakeDetectionGetDetectFeedbackResponse200))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidFeedbackPostRequestBodyContentApplicationJsonSchemaType), TypeInfoPropertyName = "DetectUuidFeedbackPostRequestBodyContentApplicationJsonSchemaType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DeepfakeDetectionCreateDetectFeedbackResponse200))] @@ -106,7 +100,6 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentRunSummaryStatus), TypeInfoPropertyName = "DetectAgentRunSummaryStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentRunResultVerdict))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentRunResult))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfDetectAgentRunResultVerdictObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentRunSummaryInputs))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentRunSummary))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Guid))] @@ -214,10 +207,8 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.WatermarkVisionDetectionMetrics))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfWatermarkVisionDetectionMetricsVerdictObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.WatermarkDetectItemMetrics), TypeInfoPropertyName = "WatermarkDetectItemMetrics2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.WatermarkDetectItem))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfWatermarkDetectItemMetricsObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.WatermarkDetectResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SignalSubmissionInputModality), TypeInfoPropertyName = "SignalSubmissionInputModality2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SignalSubmissionVerdict), TypeInfoPropertyName = "SignalSubmissionVerdict2")] @@ -417,9 +408,7 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingProductFamily))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingPlanProduct))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfBillingProductFamilyObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingPlan))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfBillingPlanFamilyObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingPlansResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] @@ -430,11 +419,9 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingSubscriptionProduct))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingSubscriptionPlanProduct))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingSubscriptionItem))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfBillingSubscriptionPlanProductObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingSubscription))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingSubscriptionResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfBillingSubscriptionObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingForbiddenError))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingProductQuantityChange))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingUpdateProductsRequest))] @@ -456,7 +443,6 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingAutoReloadSetting))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingAutoReloadResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf), TypeInfoPropertyName = "OneOfBillingAutoReloadSettingObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingUpdateAutoReloadRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingWalletUpdateBillingAutoReloadResponse200))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.UpdateBillingAutoReloadRequestUnprocessableEntityError), TypeInfoPropertyName = "UpdateBillingAutoReloadRequestUnprocessableEntityError2")] @@ -504,8 +490,6 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(double?))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectC2PaManifestValidationState?), TypeInfoPropertyName = "NullableDetectC2PaManifestValidationState2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(bool?))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDetectGetResponsesContentApplicationJsonSchemaItemsItemsAudioSourceTracingObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDetectGetResponsesContentApplicationJsonSchemaItemsItemsIntelligenceObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.DateTime?))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(int?))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality?), TypeInfoPropertyName = "NullableDetectPostRequestBodyContentMultipartFormDataSchemaModality2")] @@ -514,40 +498,34 @@ namespace ResembleAI [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType?), TypeInfoPropertyName = "NullableDetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment?), TypeInfoPropertyName = "NullableDetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription?), TypeInfoPropertyName = "NullableDetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription2")] - internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext - { - } - - /// - /// - /// - [global::System.Text.Json.Serialization.JsonSourceGenerationOptions( - DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull, - Converters = new global::System.Type[] - { - })] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDetectPostResponsesContentApplicationJsonSchemaItemIntelligenceObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemMediaType?), TypeInfoPropertyName = "NullableDetectUuidGetResponsesContentApplicationJsonSchemaItemMediaType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemStatus?), TypeInfoPropertyName = "NullableDetectUuidGetResponsesContentApplicationJsonSchemaItemStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectIntelligenceResultStatus?), TypeInfoPropertyName = "NullableDetectIntelligenceResultStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1FraudType?), TypeInfoPropertyName = "NullableDetectIntelligenceResultDescriptionOneOf1FraudType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1LivenessAssessment?), TypeInfoPropertyName = "NullableDetectIntelligenceResultDescriptionOneOf1LivenessAssessment2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectIntelligenceResultDescription?), TypeInfoPropertyName = "NullableDetectIntelligenceResultDescription2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDetectIntelligenceResultDescriptionObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence?), TypeInfoPropertyName = "NullableDetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality?), TypeInfoPropertyName = "NullableDetectUuidGetResponsesContentApplicationJsonSchemaItemModality2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDetectUuidGetResponsesContentApplicationJsonSchemaItemAudioSourceTracingObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligenceObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectBatchStatus?), TypeInfoPropertyName = "NullableDetectBatchStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectFeedbackType?), TypeInfoPropertyName = "NullableDetectFeedbackType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectFeedbackVote?), TypeInfoPropertyName = "NullableDetectFeedbackVote2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectFeedbackVerdict?), TypeInfoPropertyName = "NullableDetectFeedbackVerdict2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectFeedbackMediaType?), TypeInfoPropertyName = "NullableDetectFeedbackMediaType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDetectFeedbackVerdictObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectUuidFeedbackPostRequestBodyContentApplicationJsonSchemaType?), TypeInfoPropertyName = "NullableDetectUuidFeedbackPostRequestBodyContentApplicationJsonSchemaType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentTier?), TypeInfoPropertyName = "NullableDetectAgentTier2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.DetectAgentRunSummaryStatus?), TypeInfoPropertyName = "NullableDetectAgentRunSummaryStatus2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfDetectAgentRunResultVerdictObject2")] + internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext + { + } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonSourceGenerationOptions( + DefaultIgnoreCondition = global::System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull, + Converters = new global::System.Type[] + { + })] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Guid?))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.IntelligencePostRequestBodyContentApplicationJsonSchemaMediaType?), TypeInfoPropertyName = "NullableIntelligencePostRequestBodyContentApplicationJsonSchemaMediaType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItemMediaType?), TypeInfoPropertyName = "NullableIntelligencePostResponsesContentApplicationJsonSchemaItemMediaType2")] @@ -589,9 +567,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.WatermarkVisionModelResultModelVersion?), TypeInfoPropertyName = "NullableWatermarkVisionModelResultModelVersion2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.WatermarkVisionModelResultStatus?), TypeInfoPropertyName = "NullableWatermarkVisionModelResultStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.WatermarkVisionDetectionMetricsVerdict?), TypeInfoPropertyName = "NullableWatermarkVisionDetectionMetricsVerdict2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfWatermarkVisionDetectionMetricsVerdictObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.WatermarkDetectItemMetrics?), TypeInfoPropertyName = "NullableWatermarkDetectItemMetrics2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfWatermarkDetectItemMetricsObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SignalSubmissionInputModality?), TypeInfoPropertyName = "NullableSignalSubmissionInputModality2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SignalSubmissionVerdict?), TypeInfoPropertyName = "NullableSignalSubmissionVerdict2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.SignalScoreItemInputModality?), TypeInfoPropertyName = "NullableSignalScoreItemInputModality2")] @@ -616,17 +592,12 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingPlanPlanType?), TypeInfoPropertyName = "NullableBillingPlanPlanType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingPlanBillingInterval?), TypeInfoPropertyName = "NullableBillingPlanBillingInterval2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingPlanProductCategory?), TypeInfoPropertyName = "NullableBillingPlanProductCategory2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfBillingProductFamilyObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfBillingPlanFamilyObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingSubscriptionStatus?), TypeInfoPropertyName = "NullableBillingSubscriptionStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingSubscriptionProductCategory?), TypeInfoPropertyName = "NullableBillingSubscriptionProductCategory2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfBillingSubscriptionPlanProductObject2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfBillingSubscriptionObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.UpdateBillingSubscriptionProductsRequestUnprocessableEntityError?), TypeInfoPropertyName = "NullableUpdateBillingSubscriptionProductsRequestUnprocessableEntityError2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.ConfirmBillingSubscriptionPaymentRequestUnprocessableEntityError?), TypeInfoPropertyName = "NullableConfirmBillingSubscriptionPaymentRequestUnprocessableEntityError2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.ChangeBillingPlanRequestUnprocessableEntityError?), TypeInfoPropertyName = "NullableChangeBillingPlanRequestUnprocessableEntityError2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.BillingWalletTransactionTransactionType?), TypeInfoPropertyName = "NullableBillingWalletTransactionTransactionType2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.OneOf?), TypeInfoPropertyName = "NullableOneOfBillingAutoReloadSettingObject2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::ResembleAI.UpdateBillingAutoReloadRequestUnprocessableEntityError?), TypeInfoPropertyName = "NullableUpdateBillingAutoReloadRequestUnprocessableEntityError2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] @@ -638,7 +609,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary>))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] @@ -730,21 +700,6 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o options.Converters.Add(new global::ResembleAI.JsonConverters.ConfirmBillingSubscriptionPaymentRequestUnprocessableEntityErrorJsonConverter()); options.Converters.Add(new global::ResembleAI.JsonConverters.ChangeBillingPlanRequestUnprocessableEntityErrorJsonConverter()); options.Converters.Add(new global::ResembleAI.JsonConverters.UpdateBillingAutoReloadRequestUnprocessableEntityErrorJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); - options.Converters.Add(new global::ResembleAI.JsonConverters.OneOfJsonConverter()); options.Converters.Add(new global::ResembleAI.JsonConverters.UnixTimestampJsonConverter()); options.Converters.Add(new LazyEnumJsonConverterFactory()); diff --git a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs index 5a67307..b1426df 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.JsonSerializerContextTypes.g.cs @@ -20,6 +20,11 @@ public sealed partial class JsonSerializerContextTypes /// public global::System.Collections.Generic.Dictionary? StringObjectDictionary { get; set; } + /// + /// Runtime object lists used by dynamic JSON payloads such as tool arguments. + /// + public global::System.Collections.Generic.List? ObjectList { get; set; } + /// /// /// @@ -128,1827 +133,1767 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::ResembleAI.OneOf? Type25 { get; set; } - /// - /// - /// - public global::ResembleAI.OneOf? Type26 { get; set; } - /// - /// - /// - public global::System.DateTime? Type27 { get; set; } - /// - /// - /// - public global::ResembleAI.DeepfakeDetectionListDetectionsResponse200? Type28 { get; set; } - /// - /// - /// - public int? Type29 { get; set; } - /// - /// - /// - public global::System.Collections.Generic.IList? Type30 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality? Type31 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality? Type32 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceStatus? Type33 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType? Type34 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Fraud? Type35 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment? Type36 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Liveness? Type37 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1DigitallyAltered? Type38 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription1? Type39 { get; set; } - /// - /// - /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription? Type40 { get; set; } + public global::System.DateTime? Type25 { get; set; } /// /// /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligence? Type41 { get; set; } + public global::ResembleAI.DeepfakeDetectionListDetectionsResponse200? Type26 { get; set; } /// /// /// - public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItem? Type42 { get; set; } + public int? Type27 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type43 { get; set; } + public global::System.Collections.Generic.IList? Type28 { get; set; } /// /// /// - public global::ResembleAI.DeepfakeDetectionCreateDetectionResponse200? Type44 { get; set; } + public global::ResembleAI.DetectPostRequestBodyContentMultipartFormDataSchemaModality? Type29 { get; set; } /// /// /// - public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemMediaType? Type45 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality? Type30 { get; set; } /// /// /// - public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type46 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceStatus? Type31 { get; set; } /// /// /// - public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemAudioSourceTracing? Type47 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1FraudType? Type32 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResultStatus? Type48 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Fraud? Type33 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1FraudType? Type49 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1LivenessAssessment? Type34 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1Fraud? Type50 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1Liveness? Type35 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1LivenessAssessment? Type51 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescriptionOneOf1DigitallyAltered? Type36 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1Liveness? Type52 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription1? Type37 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1DigitallyAltered? Type53 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligenceDescription? Type38 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResultDescription1? Type54 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligence? Type39 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResultDescription? Type55 { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItem? Type40 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceResult? Type56 { get; set; } + public global::ResembleAI.DeepfakeDetectionCreateDetectionResponse200? Type41 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type57 { get; set; } + public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemMediaType? Type42 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type58 { get; set; } + public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type43 { get; set; } /// /// /// - public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence? Type59 { get; set; } + public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemAudioSourceTracing? Type44 { get; set; } /// /// /// - public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality? Type60 { get; set; } + public global::ResembleAI.DetectIntelligenceResultStatus? Type45 { get; set; } /// /// /// - public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItem? Type61 { get; set; } + public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1FraudType? Type46 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type62 { get; set; } + public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1Fraud? Type47 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type63 { get; set; } + public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1LivenessAssessment? Type48 { get; set; } /// /// /// - public global::ResembleAI.DeepfakeDetectionGetDetectionResponse200? Type64 { get; set; } + public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1Liveness? Type49 { get; set; } /// /// /// - public global::ResembleAI.Error? Type65 { get; set; } + public global::ResembleAI.DetectIntelligenceResultDescriptionOneOf1DigitallyAltered? Type50 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>? Type66 { get; set; } + public global::ResembleAI.DetectIntelligenceResultDescription1? Type51 { get; set; } /// /// /// - public global::ResembleAI.DetectBatchStatus? Type67 { get; set; } + public global::ResembleAI.DetectIntelligenceResultDescription? Type52 { get; set; } /// /// /// - public global::ResembleAI.DetectBatch? Type68 { get; set; } + public global::ResembleAI.DetectIntelligenceResult? Type53 { get; set; } /// /// /// - public global::ResembleAI.DeepfakeDetectionCreateDetectBatchResponse202? Type69 { get; set; } + public global::System.Collections.Generic.IList? Type54 { get; set; } /// /// /// - public global::ResembleAI.DeepfakeDetectionGetDetectBatchResponse200? Type70 { get; set; } + public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence? Type55 { get; set; } /// /// /// - public global::ResembleAI.DetectFeedbackType? Type71 { get; set; } + public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality? Type56 { get; set; } /// /// /// - public global::ResembleAI.DetectFeedbackVote? Type72 { get; set; } + public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItem? Type57 { get; set; } /// /// /// - public global::ResembleAI.DetectFeedbackVerdict? Type73 { get; set; } + public global::ResembleAI.DeepfakeDetectionGetDetectionResponse200? Type58 { get; set; } /// /// /// - public global::ResembleAI.DetectFeedbackMediaType? Type74 { get; set; } + public global::ResembleAI.Error? Type59 { get; set; } /// /// /// - public global::ResembleAI.DetectFeedback? Type75 { get; set; } + public global::System.Collections.Generic.Dictionary>? Type60 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type76 { get; set; } + public global::ResembleAI.DetectBatchStatus? Type61 { get; set; } /// /// /// - public global::ResembleAI.DeepfakeDetectionGetDetectFeedbackResponse200? Type77 { get; set; } + public global::ResembleAI.DetectBatch? Type62 { get; set; } /// /// /// - public global::ResembleAI.DetectUuidFeedbackPostRequestBodyContentApplicationJsonSchemaType? Type78 { get; set; } + public global::ResembleAI.DeepfakeDetectionCreateDetectBatchResponse202? Type63 { get; set; } /// /// /// - public global::ResembleAI.DeepfakeDetectionCreateDetectFeedbackResponse200? Type79 { get; set; } + public global::ResembleAI.DeepfakeDetectionGetDetectBatchResponse200? Type64 { get; set; } /// /// /// - public global::ResembleAI.DeepfakeDetectionDeleteDetectFeedbackResponse200? Type80 { get; set; } + public global::ResembleAI.DetectFeedbackType? Type65 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentTier? Type81 { get; set; } + public global::ResembleAI.DetectFeedbackVote? Type66 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentCapabilities? Type82 { get; set; } + public global::ResembleAI.DetectFeedbackVerdict? Type67 { get; set; } /// /// /// - public global::ResembleAI.DetectAgent? Type83 { get; set; } + public global::ResembleAI.DetectFeedbackMediaType? Type68 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentsListDetectAgentsResponse200? Type84 { get; set; } + public global::ResembleAI.DetectFeedback? Type69 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type85 { get; set; } + public global::ResembleAI.DeepfakeDetectionGetDetectFeedbackResponse200? Type70 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentRunSummaryStatus? Type86 { get; set; } + public global::ResembleAI.DetectUuidFeedbackPostRequestBodyContentApplicationJsonSchemaType? Type71 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentRunResultVerdict? Type87 { get; set; } + public global::ResembleAI.DeepfakeDetectionCreateDetectFeedbackResponse200? Type72 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentRunResult? Type88 { get; set; } + public global::ResembleAI.DeepfakeDetectionDeleteDetectFeedbackResponse200? Type73 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type89 { get; set; } + public global::ResembleAI.DetectAgentTier? Type74 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentRunSummaryInputs? Type90 { get; set; } + public global::ResembleAI.DetectAgentCapabilities? Type75 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentRunSummary? Type91 { get; set; } + public global::ResembleAI.DetectAgent? Type76 { get; set; } /// /// /// - public global::System.Guid? Type92 { get; set; } + public global::ResembleAI.DetectAgentsListDetectAgentsResponse200? Type77 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentsListDetectAgentInvestigationRunsResponse200? Type93 { get; set; } + public global::System.Collections.Generic.IList? Type78 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type94 { get; set; } + public global::ResembleAI.DetectAgentRunSummaryStatus? Type79 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentRun? Type95 { get; set; } + public global::ResembleAI.DetectAgentRunResultVerdict? Type80 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type96 { get; set; } + public global::ResembleAI.DetectAgentRunResult? Type81 { get; set; } /// /// /// - public global::ResembleAI.DetectAgentsGetDetectAgentInvestigationRunResponse200? Type97 { get; set; } + public global::ResembleAI.DetectAgentRunSummaryInputs? Type82 { get; set; } /// /// /// - public global::ResembleAI.IntelligencePostRequestBodyContentApplicationJsonSchemaMediaType? Type98 { get; set; } + public global::ResembleAI.DetectAgentRunSummary? Type83 { get; set; } /// /// /// - public global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItemMediaType? Type99 { get; set; } + public global::System.Guid? Type84 { get; set; } /// /// /// - public global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItem? Type100 { get; set; } + public global::ResembleAI.DetectAgentsListDetectAgentInvestigationRunsResponse200? Type85 { get; set; } /// /// /// - public global::ResembleAI.IntelligenceRunIntelligenceResponse200? Type101 { get; set; } + public global::System.Collections.Generic.IList? Type86 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraudType? Type102 { get; set; } + public global::ResembleAI.DetectAgentRun? Type87 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraud? Type103 { get; set; } + public global::System.Collections.Generic.IList? Type88 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLivenessAssessment? Type104 { get; set; } + public global::ResembleAI.DetectAgentsGetDetectAgentInvestigationRunResponse200? Type89 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLiveness? Type105 { get; set; } + public global::ResembleAI.IntelligencePostRequestBodyContentApplicationJsonSchemaMediaType? Type90 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionDigitallyAltered? Type106 { get; set; } + public global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItemMediaType? Type91 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescription? Type107 { get; set; } + public global::ResembleAI.IntelligencePostResponsesContentApplicationJsonSchemaItem? Type92 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsMediaType? Type108 { get; set; } + public global::ResembleAI.IntelligenceRunIntelligenceResponse200? Type93 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItems? Type109 { get; set; } + public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraudType? Type94 { get; set; } /// /// /// - public global::ResembleAI.IntelligenceListIntelligencesResponse200? Type110 { get; set; } + public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionFraud? Type95 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type111 { get; set; } + public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLivenessAssessment? Type96 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionFraudType? Type112 { get; set; } + public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionLiveness? Type97 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionFraud? Type113 { get; set; } + public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescriptionDigitallyAltered? Type98 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionLivenessAssessment? Type114 { get; set; } + public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsDescription? Type99 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionLiveness? Type115 { get; set; } + public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItemsMediaType? Type100 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionDigitallyAltered? Type116 { get; set; } + public global::ResembleAI.IntelligencesGetResponsesContentApplicationJsonSchemaItemsItems? Type101 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescription? Type117 { get; set; } + public global::ResembleAI.IntelligenceListIntelligencesResponse200? Type102 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemMediaType? Type118 { get; set; } + public global::System.Collections.Generic.IList? Type103 { get; set; } /// /// /// - public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItem? Type119 { get; set; } + public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionFraudType? Type104 { get; set; } /// /// /// - public global::ResembleAI.IntelligenceGetIntelligenceResponse200? Type120 { get; set; } + public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionFraud? Type105 { get; set; } /// /// /// - public global::ResembleAI.DetectsUuidIntelligencePostResponsesContentApplicationJsonSchemaItemStatus? Type121 { get; set; } + public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionLivenessAssessment? Type106 { get; set; } /// /// /// - public global::ResembleAI.DetectsUuidIntelligencePostResponsesContentApplicationJsonSchemaItem? Type122 { get; set; } + public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionLiveness? Type107 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceAskDetectIntelligenceQuestionResponse202? Type123 { get; set; } + public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescriptionDigitallyAltered? Type108 { get; set; } /// /// /// - public global::ResembleAI.DetectsUuidIntelligenceQuestionUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type124 { get; set; } + public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemDescription? Type109 { get; set; } /// /// /// - public global::ResembleAI.DetectsUuidIntelligenceQuestionUuidGetResponsesContentApplicationJsonSchemaItem? Type125 { get; set; } + public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItemMediaType? Type110 { get; set; } /// /// /// - public global::ResembleAI.DetectIntelligenceGetDetectIntelligenceQuestionResponse200? Type126 { get; set; } + public global::ResembleAI.IntelligencesUuidGetResponsesContentApplicationJsonSchemaItem? Type111 { get; set; } /// /// /// - public global::ResembleAI.AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItemsResults? Type127 { get; set; } + public global::ResembleAI.IntelligenceGetIntelligenceResponse200? Type112 { get; set; } /// /// /// - public global::ResembleAI.AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItems? Type128 { get; set; } + public global::ResembleAI.DetectsUuidIntelligencePostResponsesContentApplicationJsonSchemaItemStatus? Type113 { get; set; } /// /// /// - public global::ResembleAI.AudioSourceTracingListAudioSourceTracingsResponse200? Type129 { get; set; } + public global::ResembleAI.DetectsUuidIntelligencePostResponsesContentApplicationJsonSchemaItem? Type114 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type130 { get; set; } + public global::ResembleAI.DetectIntelligenceAskDetectIntelligenceQuestionResponse202? Type115 { get; set; } /// /// /// - public global::ResembleAI.AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItemResults? Type131 { get; set; } + public global::ResembleAI.DetectsUuidIntelligenceQuestionUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type116 { get; set; } /// /// /// - public global::ResembleAI.AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItem? Type132 { get; set; } + public global::ResembleAI.DetectsUuidIntelligenceQuestionUuidGetResponsesContentApplicationJsonSchemaItem? Type117 { get; set; } /// /// /// - public global::ResembleAI.AudioSourceTracingGetAudioSourceTracingResponse200? Type133 { get; set; } + public global::ResembleAI.DetectIntelligenceGetDetectIntelligenceQuestionResponse200? Type118 { get; set; } /// /// /// - public global::ResembleAI.IdentitySummaryVisibility? Type134 { get; set; } + public global::ResembleAI.AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItemsResults? Type119 { get; set; } /// /// /// - public global::ResembleAI.IdentitySummaryIdentityType? Type135 { get; set; } + public global::ResembleAI.AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItems? Type120 { get; set; } /// /// /// - public global::ResembleAI.IdentitySummary? Type136 { get; set; } + public global::ResembleAI.AudioSourceTracingListAudioSourceTracingsResponse200? Type121 { get; set; } /// /// /// - public global::ResembleAI.IdentityListIdentitiesResponse200? Type137 { get; set; } + public global::System.Collections.Generic.IList? Type122 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type138 { get; set; } + public global::ResembleAI.AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItemResults? Type123 { get; set; } /// /// /// - public global::ResembleAI.IdentityCreateIdentityRequest0? Type139 { get; set; } + public global::ResembleAI.AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItem? Type124 { get; set; } /// /// /// - public global::ResembleAI.IdentityPostRequestBodyContentApplicationJsonSchemaOneOf1IdentityIdentityType? Type140 { get; set; } + public global::ResembleAI.AudioSourceTracingGetAudioSourceTracingResponse200? Type125 { get; set; } /// /// /// - public global::ResembleAI.IdentityPostRequestBodyContentApplicationJsonSchemaOneOf1IdentityVisibility? Type141 { get; set; } + public global::ResembleAI.IdentitySummaryVisibility? Type126 { get; set; } /// /// /// - public global::ResembleAI.IdentityPostRequestBodyContentApplicationJsonSchemaOneOf1Identity? Type142 { get; set; } + public global::ResembleAI.IdentitySummaryIdentityType? Type127 { get; set; } /// /// /// - public global::ResembleAI.IdentityCreateIdentityRequest1? Type143 { get; set; } + public global::ResembleAI.IdentitySummary? Type128 { get; set; } /// /// /// - public global::ResembleAI.IdentityCreateIdentityRequest? Type144 { get; set; } + public global::ResembleAI.IdentityListIdentitiesResponse200? Type129 { get; set; } /// /// /// - public global::ResembleAI.IdentityCreateIdentityResponse200? Type145 { get; set; } + public global::System.Collections.Generic.IList? Type130 { get; set; } /// /// /// - public global::ResembleAI.IdentityDeleteIdentityResponse200? Type146 { get; set; } + public global::ResembleAI.IdentityCreateIdentityRequest0? Type131 { get; set; } /// /// /// - public global::ResembleAI.IdentityUuidAttachmentsPostRequestBodyContentMultipartFormDataSchemaModality? Type147 { get; set; } + public global::ResembleAI.IdentityPostRequestBodyContentApplicationJsonSchemaOneOf1IdentityIdentityType? Type132 { get; set; } /// /// /// - public global::ResembleAI.IdentityIdentityType? Type148 { get; set; } + public global::ResembleAI.IdentityPostRequestBodyContentApplicationJsonSchemaOneOf1IdentityVisibility? Type133 { get; set; } /// /// /// - public global::ResembleAI.IdentityVisibility? Type149 { get; set; } + public global::ResembleAI.IdentityPostRequestBodyContentApplicationJsonSchemaOneOf1Identity? Type134 { get; set; } /// /// /// - public global::ResembleAI.IdentityAttachment? Type150 { get; set; } + public global::ResembleAI.IdentityCreateIdentityRequest1? Type135 { get; set; } /// /// /// - public global::ResembleAI.IdentityEmbeddingsItemsModality? Type151 { get; set; } + public global::ResembleAI.IdentityCreateIdentityRequest? Type136 { get; set; } /// /// /// - public global::ResembleAI.IdentityEmbeddingsItems? Type152 { get; set; } + public global::ResembleAI.IdentityCreateIdentityResponse200? Type137 { get; set; } /// /// /// - public global::ResembleAI.IdentityProjectsItems? Type153 { get; set; } + public global::ResembleAI.IdentityDeleteIdentityResponse200? Type138 { get; set; } /// /// /// - public global::ResembleAI.Identity? Type154 { get; set; } + public global::ResembleAI.IdentityUuidAttachmentsPostRequestBodyContentMultipartFormDataSchemaModality? Type139 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type155 { get; set; } + public global::ResembleAI.IdentityIdentityType? Type140 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type156 { get; set; } + public global::ResembleAI.IdentityVisibility? Type141 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type157 { get; set; } + public global::ResembleAI.IdentityAttachment? Type142 { get; set; } /// /// /// - public global::ResembleAI.IdentityDeleteIdentityAttachmentResponse204? Type158 { get; set; } + public global::ResembleAI.IdentityEmbeddingsItemsModality? Type143 { get; set; } /// /// /// - public global::ResembleAI.IdentitySearchPostRequestBodyContentApplicationJsonSchemaModality? Type159 { get; set; } + public global::ResembleAI.IdentityEmbeddingsItems? Type144 { get; set; } /// /// /// - public global::ResembleAI.IdentitySearchPostResponsesContentApplicationJsonSchemaModality? Type160 { get; set; } + public global::ResembleAI.IdentityProjectsItems? Type145 { get; set; } /// /// /// - public global::ResembleAI.IdentitySearchPostResponsesContentApplicationJsonSchemaItem? Type161 { get; set; } + public global::ResembleAI.Identity? Type146 { get; set; } /// /// /// - public global::ResembleAI.IdentitySearchIdentitiesResponse200? Type162 { get; set; } + public global::System.Collections.Generic.IList? Type147 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type163 { get; set; } + public global::System.Collections.Generic.IList? Type148 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyPostParametersPrefer? Type164 { get; set; } + public global::System.Collections.Generic.IList? Type149 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyRequest? Type165 { get; set; } + public global::ResembleAI.IdentityDeleteIdentityAttachmentResponse204? Type150 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyItemMediaType? Type166 { get; set; } + public global::ResembleAI.IdentitySearchPostRequestBodyContentApplicationJsonSchemaModality? Type151 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyItemOperationType? Type167 { get; set; } + public global::ResembleAI.IdentitySearchPostResponsesContentApplicationJsonSchemaModality? Type152 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyItemStatus? Type168 { get; set; } + public global::ResembleAI.IdentitySearchPostResponsesContentApplicationJsonSchemaItem? Type153 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyItemModelVersion? Type169 { get; set; } + public global::ResembleAI.IdentitySearchIdentitiesResponse200? Type154 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyMetrics? Type170 { get; set; } + public global::System.Collections.Generic.Dictionary? Type155 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyItem? Type171 { get; set; } + public global::ResembleAI.WatermarkApplyPostParametersPrefer? Type156 { get; set; } /// /// /// - public global::ResembleAI.WatermarkApplyResponse? Type172 { get; set; } + public global::ResembleAI.WatermarkApplyRequest? Type157 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectPostParametersPrefer? Type173 { get; set; } + public global::ResembleAI.WatermarkApplyItemMediaType? Type158 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectRequest? Type174 { get; set; } + public global::ResembleAI.WatermarkApplyItemOperationType? Type159 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectItemMediaType? Type175 { get; set; } + public global::ResembleAI.WatermarkApplyItemStatus? Type160 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectItemOperationType? Type176 { get; set; } + public global::ResembleAI.WatermarkApplyItemModelVersion? Type161 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectItemStatus? Type177 { get; set; } + public global::ResembleAI.WatermarkApplyMetrics? Type162 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectItemModelVersion? Type178 { get; set; } + public global::ResembleAI.WatermarkApplyItem? Type163 { get; set; } /// /// /// - public global::ResembleAI.WatermarkAudioDetectionMetricsOverallStatus? Type179 { get; set; } + public global::ResembleAI.WatermarkApplyResponse? Type164 { get; set; } /// /// /// - public global::ResembleAI.WatermarkAudioDetectionMetricsDetectedModelVersionsItems? Type180 { get; set; } + public global::ResembleAI.WatermarkDetectPostParametersPrefer? Type165 { get; set; } /// /// /// - public global::ResembleAI.WatermarkAudioModelResultModelVersion? Type181 { get; set; } + public global::ResembleAI.WatermarkDetectRequest? Type166 { get; set; } /// /// /// - public global::ResembleAI.WatermarkAudioModelResultStatus? Type182 { get; set; } + public global::ResembleAI.WatermarkDetectItemMediaType? Type167 { get; set; } /// /// /// - public global::ResembleAI.WatermarkAudioModelResult? Type183 { get; set; } + public global::ResembleAI.WatermarkDetectItemOperationType? Type168 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type184 { get; set; } + public global::ResembleAI.WatermarkDetectItemStatus? Type169 { get; set; } /// /// /// - public global::ResembleAI.WatermarkAudioDetectionMetrics? Type185 { get; set; } + public global::ResembleAI.WatermarkDetectItemModelVersion? Type170 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type186 { get; set; } + public global::ResembleAI.WatermarkAudioDetectionMetricsOverallStatus? Type171 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type187 { get; set; } + public global::ResembleAI.WatermarkAudioDetectionMetricsDetectedModelVersionsItems? Type172 { get; set; } /// /// /// - public global::ResembleAI.WatermarkVisionDetectionMetricsOverallStatus? Type188 { get; set; } + public global::ResembleAI.WatermarkAudioModelResultModelVersion? Type173 { get; set; } /// /// /// - public global::ResembleAI.WatermarkVisionDetectionMetricsDetectedModelVersionsItems? Type189 { get; set; } + public global::ResembleAI.WatermarkAudioModelResultStatus? Type174 { get; set; } /// /// /// - public global::ResembleAI.WatermarkVisionModelResultModelVersion? Type190 { get; set; } + public global::ResembleAI.WatermarkAudioModelResult? Type175 { get; set; } /// /// /// - public global::ResembleAI.WatermarkVisionModelResultStatus? Type191 { get; set; } + public global::System.Collections.Generic.Dictionary? Type176 { get; set; } /// /// /// - public global::ResembleAI.WatermarkVisionModelResult? Type192 { get; set; } + public global::ResembleAI.WatermarkAudioDetectionMetrics? Type177 { get; set; } /// /// /// - public global::ResembleAI.WatermarkVisionDetectionMetricsVerdict? Type193 { get; set; } + public global::System.Collections.Generic.IList? Type178 { get; set; } /// /// /// - public global::ResembleAI.WatermarkVisionDetectionMetrics? Type194 { get; set; } + public global::System.Collections.Generic.IList? Type179 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type195 { get; set; } + public global::ResembleAI.WatermarkVisionDetectionMetricsOverallStatus? Type180 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type196 { get; set; } + public global::ResembleAI.WatermarkVisionDetectionMetricsDetectedModelVersionsItems? Type181 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type197 { get; set; } + public global::ResembleAI.WatermarkVisionModelResultModelVersion? Type182 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectItemMetrics? Type198 { get; set; } + public global::ResembleAI.WatermarkVisionModelResultStatus? Type183 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectItem? Type199 { get; set; } + public global::ResembleAI.WatermarkVisionModelResult? Type184 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type200 { get; set; } + public global::ResembleAI.WatermarkVisionDetectionMetricsVerdict? Type185 { get; set; } /// /// /// - public global::ResembleAI.WatermarkDetectResponse? Type201 { get; set; } + public global::ResembleAI.WatermarkVisionDetectionMetrics? Type186 { get; set; } /// /// /// - public global::ResembleAI.SignalSubmissionInputModality? Type202 { get; set; } + public global::System.Collections.Generic.IList? Type187 { get; set; } /// /// /// - public global::ResembleAI.SignalSubmissionVerdict? Type203 { get; set; } + public global::System.Collections.Generic.IList? Type188 { get; set; } /// /// /// - public global::ResembleAI.SignalCategoryScore? Type204 { get; set; } + public global::ResembleAI.WatermarkDetectItemMetrics? Type189 { get; set; } /// /// /// - public global::ResembleAI.SignalScoreItemInputModality? Type205 { get; set; } + public global::ResembleAI.WatermarkDetectItem? Type190 { get; set; } /// /// /// - public global::ResembleAI.SignalScoreItemVerdict? Type206 { get; set; } + public global::ResembleAI.WatermarkDetectResponse? Type191 { get; set; } /// /// /// - public global::ResembleAI.SignalTopMatch? Type207 { get; set; } + public global::ResembleAI.SignalSubmissionInputModality? Type192 { get; set; } /// /// /// - public global::ResembleAI.SignalScoreItem? Type208 { get; set; } + public global::ResembleAI.SignalSubmissionVerdict? Type193 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type209 { get; set; } + public global::ResembleAI.SignalCategoryScore? Type194 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type210 { get; set; } + public global::ResembleAI.SignalScoreItemInputModality? Type195 { get; set; } /// /// /// - public global::ResembleAI.SignalSubmission? Type211 { get; set; } + public global::ResembleAI.SignalScoreItemVerdict? Type196 { get; set; } /// /// /// - public global::ResembleAI.SignalSubmissionListResponse? Type212 { get; set; } + public global::ResembleAI.SignalTopMatch? Type197 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type213 { get; set; } + public global::ResembleAI.SignalScoreItem? Type198 { get; set; } /// /// /// - public global::ResembleAI.SignalError? Type214 { get; set; } + public global::System.Collections.Generic.IList? Type199 { get; set; } /// /// /// - public long? Type215 { get; set; } + public global::System.Collections.Generic.IList? Type200 { get; set; } /// /// /// - public global::ResembleAI.SignalScoreResponse? Type216 { get; set; } + public global::ResembleAI.SignalSubmission? Type201 { get; set; } /// /// /// - public global::ResembleAI.SignalSuccessResponse? Type217 { get; set; } + public global::ResembleAI.SignalSubmissionListResponse? Type202 { get; set; } /// /// /// - public global::ResembleAI.SignalSettings? Type218 { get; set; } + public global::System.Collections.Generic.IList? Type203 { get; set; } /// /// /// - public global::ResembleAI.SignalBuiltInCategory? Type219 { get; set; } + public global::ResembleAI.SignalError? Type204 { get; set; } /// /// /// - public global::ResembleAI.SignalCustomCategoryStatus? Type220 { get; set; } + public long? Type205 { get; set; } /// /// /// - public global::ResembleAI.SignalCustomCategoryOverlapsItems? Type221 { get; set; } + public global::ResembleAI.SignalScoreResponse? Type206 { get; set; } /// /// /// - public global::ResembleAI.SignalScenario? Type222 { get; set; } + public global::ResembleAI.SignalSuccessResponse? Type207 { get; set; } /// /// /// - public global::ResembleAI.SignalCustomCategory? Type223 { get; set; } + public global::ResembleAI.SignalSettings? Type208 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type224 { get; set; } + public global::ResembleAI.SignalBuiltInCategory? Type209 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type225 { get; set; } + public global::ResembleAI.SignalCustomCategoryStatus? Type210 { get; set; } /// /// /// - public global::ResembleAI.SignalCalibrationWarningsItems? Type226 { get; set; } + public global::ResembleAI.SignalCustomCategoryOverlapsItems? Type211 { get; set; } /// /// /// - public global::ResembleAI.SignalCalibration? Type227 { get; set; } + public global::ResembleAI.SignalScenario? Type212 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type228 { get; set; } + public global::ResembleAI.SignalCustomCategory? Type213 { get; set; } /// /// /// - public global::ResembleAI.SignalCustomCategoryListResponse? Type229 { get; set; } + public global::System.Collections.Generic.IList? Type214 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type230 { get; set; } + public global::System.Collections.Generic.IList? Type215 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type231 { get; set; } + public global::ResembleAI.SignalCalibrationWarningsItems? Type216 { get; set; } /// /// /// - public global::ResembleAI.SignalCustomCategoryCreateRequest? Type232 { get; set; } + public global::ResembleAI.SignalCalibration? Type217 { get; set; } /// /// /// - public global::ResembleAI.SignalCustomCategoryResponse? Type233 { get; set; } + public global::System.Collections.Generic.IList? Type218 { get; set; } /// /// /// - public global::ResembleAI.SignalCustomCategoryUpdateRequest? Type234 { get; set; } + public global::ResembleAI.SignalCustomCategoryListResponse? Type219 { get; set; } /// /// /// - public global::ResembleAI.SignalSettingsUpdateRequest? Type235 { get; set; } + public global::System.Collections.Generic.IList? Type220 { get; set; } /// /// /// - public global::ResembleAI.SignalSettingsResponse? Type236 { get; set; } + public global::System.Collections.Generic.IList? Type221 { get; set; } /// /// /// - public global::ResembleAI.SecureUploadsCreateSecureUploadResponse200? Type237 { get; set; } + public global::ResembleAI.SignalCustomCategoryCreateRequest? Type222 { get; set; } /// /// /// - public global::ResembleAI.SynthesizePostRequestBodyContentApplicationJsonSchemaPrecision? Type238 { get; set; } + public global::ResembleAI.SignalCustomCategoryResponse? Type223 { get; set; } /// /// /// - public global::ResembleAI.SynthesizePostRequestBodyContentApplicationJsonSchemaOutputFormat? Type239 { get; set; } + public global::ResembleAI.SignalCustomCategoryUpdateRequest? Type224 { get; set; } /// /// /// - public global::ResembleAI.SynthesizePostRequestBodyContentApplicationJsonSchemaSampleRate? Type240 { get; set; } + public global::ResembleAI.SignalSettingsUpdateRequest? Type225 { get; set; } /// /// /// - public global::ResembleAI.AudioTimestamps? Type241 { get; set; } + public global::ResembleAI.SignalSettingsResponse? Type226 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type242 { get; set; } + public global::ResembleAI.SecureUploadsCreateSecureUploadResponse200? Type227 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type243 { get; set; } + public global::ResembleAI.SynthesizePostRequestBodyContentApplicationJsonSchemaPrecision? Type228 { get; set; } /// /// /// - public global::ResembleAI.TextToSpeechSynthesizeResponse200? Type244 { get; set; } + public global::ResembleAI.SynthesizePostRequestBodyContentApplicationJsonSchemaOutputFormat? Type229 { get; set; } /// /// /// - public byte[]? Type245 { get; set; } + public global::ResembleAI.SynthesizePostRequestBodyContentApplicationJsonSchemaSampleRate? Type230 { get; set; } /// /// /// - public global::ResembleAI.StreamPostRequestBodyContentApplicationJsonSchemaPrecision? Type246 { get; set; } + public global::ResembleAI.AudioTimestamps? Type231 { get; set; } /// /// /// - public global::ResembleAI.StreamPostRequestBodyContentApplicationJsonSchemaSampleRate? Type247 { get; set; } + public global::System.Collections.Generic.IList>? Type232 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextGetResponsesContentApplicationJsonSchemaItemsItems? Type248 { get; set; } + public global::System.Collections.Generic.IList? Type233 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextGetResponsesContentApplicationJsonSchemaMeta? Type249 { get; set; } + public global::ResembleAI.TextToSpeechSynthesizeResponse200? Type234 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextListTranscriptsResponse200? Type250 { get; set; } + public byte[]? Type235 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type251 { get; set; } + public global::ResembleAI.StreamPostRequestBodyContentApplicationJsonSchemaPrecision? Type236 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextPostResponsesContentApplicationJsonSchemaItemStatus? Type252 { get; set; } + public global::ResembleAI.StreamPostRequestBodyContentApplicationJsonSchemaSampleRate? Type237 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextPostResponsesContentApplicationJsonSchemaItem? Type253 { get; set; } + public global::ResembleAI.SpeechToTextGetResponsesContentApplicationJsonSchemaItemsItems? Type238 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextCreateTranscriptResponse200? Type254 { get; set; } + public global::ResembleAI.SpeechToTextGetResponsesContentApplicationJsonSchemaMeta? Type239 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type255 { get; set; } + public global::ResembleAI.SpeechToTextListTranscriptsResponse200? Type240 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemWordsItems? Type256 { get; set; } + public global::System.Collections.Generic.IList? Type241 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItem? Type257 { get; set; } + public global::ResembleAI.SpeechToTextPostResponsesContentApplicationJsonSchemaItemStatus? Type242 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type258 { get; set; } + public global::ResembleAI.SpeechToTextPostResponsesContentApplicationJsonSchemaItem? Type243 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextGetTranscriptResponse200? Type259 { get; set; } + public global::ResembleAI.SpeechToTextCreateTranscriptResponse200? Type244 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextUuidAskPostResponsesContentApplicationJsonSchemaItem? Type260 { get; set; } + public global::ResembleAI.SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemStatus? Type245 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextAskTranscriptQuestionResponse200? Type261 { get; set; } + public global::ResembleAI.SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemWordsItems? Type246 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaItemsItems? Type262 { get; set; } + public global::ResembleAI.SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItem? Type247 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaMeta? Type263 { get; set; } + public global::System.Collections.Generic.IList? Type248 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextListTranscriptQuestionsResponse200? Type264 { get; set; } + public global::ResembleAI.SpeechToTextGetTranscriptResponse200? Type249 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type265 { get; set; } + public global::ResembleAI.SpeechToTextUuidAskPostResponsesContentApplicationJsonSchemaItem? Type250 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextUuidQuestionsQuestionUuidGetResponsesContentApplicationJsonSchemaItem? Type266 { get; set; } + public global::ResembleAI.SpeechToTextAskTranscriptQuestionResponse200? Type251 { get; set; } /// /// /// - public global::ResembleAI.SpeechToTextGetTranscriptQuestionResponse200? Type267 { get; set; } + public global::ResembleAI.SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaItemsItems? Type252 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus? Type268 { get; set; } + public global::ResembleAI.SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaMeta? Type253 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine? Type269 { get; set; } + public global::ResembleAI.SpeechToTextListTranscriptQuestionsResponse200? Type254 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems? Type270 { get; set; } + public global::System.Collections.Generic.IList? Type255 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementListAudioEnhancementsResponse200? Type271 { get; set; } + public global::ResembleAI.SpeechToTextUuidQuestionsQuestionUuidGetResponsesContentApplicationJsonSchemaItem? Type256 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type272 { get; set; } + public global::ResembleAI.SpeechToTextGetTranscriptQuestionResponse200? Type257 { get; set; } /// /// /// - public global::ResembleAI.ListAudioEnhancementsRequestBadRequestError? Type273 { get; set; } + public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsStatus? Type258 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? Type274 { get; set; } + public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItemsEnhancementEngine? Type259 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus? Type275 { get; set; } + public global::ResembleAI.AudioEnhancementsGetResponsesContentApplicationJsonSchemaItemsItems? Type260 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementCreateAudioEnhancementResponse202? Type276 { get; set; } + public global::ResembleAI.AudioEnhancementListAudioEnhancementsResponse200? Type261 { get; set; } /// /// /// - public global::ResembleAI.CreateAudioEnhancementRequestBadRequestError? Type277 { get; set; } + public global::System.Collections.Generic.IList? Type262 { get; set; } /// /// /// - public global::ResembleAI.CreateAudioEnhancementRequestForbiddenError? Type278 { get; set; } + public global::ResembleAI.ListAudioEnhancementsRequestBadRequestError? Type263 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementsEnhancementUuidGetResponsesContentApplicationJsonSchemaStatus? Type279 { get; set; } + public global::ResembleAI.AudioEnhancementsPostRequestBodyContentMultipartFormDataSchemaEnhancementEngine? Type264 { get; set; } /// /// /// - public global::ResembleAI.AudioEnhancementGetAudioEnhancementResponse200? Type280 { get; set; } + public global::ResembleAI.AudioEnhancementsPostResponsesContentApplicationJsonSchemaStatus? Type265 { get; set; } /// /// /// - public global::ResembleAI.GetAudioEnhancementRequestNotFoundError? Type281 { get; set; } + public global::ResembleAI.AudioEnhancementCreateAudioEnhancementResponse202? Type266 { get; set; } /// /// /// - public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type282 { get; set; } + public global::ResembleAI.CreateAudioEnhancementRequestBadRequestError? Type267 { get; set; } /// /// /// - public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatus? Type283 { get; set; } + public global::ResembleAI.CreateAudioEnhancementRequestForbiddenError? Type268 { get; set; } /// /// /// - public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusTextToSpeech? Type284 { get; set; } + public global::ResembleAI.AudioEnhancementsEnhancementUuidGetResponsesContentApplicationJsonSchemaStatus? Type269 { get; set; } /// /// /// - public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusFill? Type285 { get; set; } + public global::ResembleAI.AudioEnhancementGetAudioEnhancementResponse200? Type270 { get; set; } /// /// /// - public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusVoiceConversion? Type286 { get; set; } + public global::ResembleAI.GetAudioEnhancementRequestNotFoundError? Type271 { get; set; } /// /// /// - public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsApiSupport? Type287 { get; set; } + public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type272 { get; set; } /// /// /// - public global::ResembleAI.VoicesListVoicesResponse200? Type288 { get; set; } + public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatus? Type273 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type289 { get; set; } + public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusTextToSpeech? Type274 { get; set; } /// /// /// - public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem? Type290 { get; set; } + public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusFill? Type275 { get; set; } /// /// /// - public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus? Type291 { get; set; } + public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsComponentStatusVoiceConversion? Type276 { get; set; } /// /// /// - public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type292 { get; set; } + public global::ResembleAI.VoicesGetResponsesContentApplicationJsonSchemaItemsItemsApiSupport? Type277 { get; set; } /// /// /// - public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type293 { get; set; } + public global::ResembleAI.VoicesListVoicesResponse200? Type278 { get; set; } /// /// /// - public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type294 { get; set; } + public global::System.Collections.Generic.IList? Type279 { get; set; } /// /// /// - public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemApiSupport? Type295 { get; set; } + public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItem? Type280 { get; set; } /// /// /// - public global::ResembleAI.VoicesCreateVoiceResponse200? Type296 { get; set; } + public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatus? Type281 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItem? Type297 { get; set; } + public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type282 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatus? Type298 { get; set; } + public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type283 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type299 { get; set; } + public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type284 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type300 { get; set; } + public global::ResembleAI.VoicesPostResponsesContentApplicationJsonSchemaItemApiSupport? Type285 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type301 { get; set; } + public global::ResembleAI.VoicesCreateVoiceResponse200? Type286 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemApiSupport? Type302 { get; set; } + public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItem? Type287 { get; set; } /// /// /// - public global::ResembleAI.VoicesGetVoiceResponse200? Type303 { get; set; } + public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatus? Type288 { get; set; } /// /// /// - public global::ResembleAI.VoicesDeleteVoiceResponse200? Type304 { get; set; } + public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusTextToSpeech? Type289 { get; set; } /// /// /// - public global::ResembleAI.VoicesBuildVoiceResponse200? Type305 { get; set; } + public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusFill? Type290 { get; set; } /// /// /// - public global::ResembleAI.VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems? Type306 { get; set; } + public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemComponentStatusVoiceConversion? Type291 { get; set; } /// /// /// - public global::ResembleAI.VoiceDesignGenerateVoiceDesignResponse200? Type307 { get; set; } + public global::ResembleAI.VoicesVoiceUuidGetResponsesContentApplicationJsonSchemaItemApiSupport? Type292 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type308 { get; set; } + public global::ResembleAI.VoicesGetVoiceResponse200? Type293 { get; set; } /// /// /// - public global::ResembleAI.VoiceDesignCreateVoiceFromCandidateResponse200? Type309 { get; set; } + public global::ResembleAI.VoicesDeleteVoiceResponse200? Type294 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems? Type310 { get; set; } + public global::ResembleAI.VoicesBuildVoiceResponse200? Type295 { get; set; } /// /// /// - public global::ResembleAI.RecordingsListRecordingsResponse200? Type311 { get; set; } + public global::ResembleAI.VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems? Type296 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type312 { get; set; } + public global::ResembleAI.VoiceDesignGenerateVoiceDesignResponse200? Type297 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem? Type313 { get; set; } + public global::System.Collections.Generic.IList? Type298 { get; set; } /// /// /// - public global::ResembleAI.RecordingsCreateRecordingResponse200? Type314 { get; set; } + public global::ResembleAI.VoiceDesignCreateVoiceFromCandidateResponse200? Type299 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem? Type315 { get; set; } + public global::ResembleAI.VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems? Type300 { get; set; } /// /// /// - public global::ResembleAI.RecordingsGetRecordingResponse200? Type316 { get; set; } + public global::ResembleAI.RecordingsListRecordingsResponse200? Type301 { get; set; } /// /// /// - public global::ResembleAI.RecordingsDeleteRecordingResponse200? Type317 { get; set; } + public global::System.Collections.Generic.IList? Type302 { get; set; } /// /// /// - public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem? Type318 { get; set; } + public global::ResembleAI.VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem? Type303 { get; set; } /// /// /// - public global::ResembleAI.RecordingsUpdateRecordingResponse200? Type319 { get; set; } + public global::ResembleAI.RecordingsCreateRecordingResponse200? Type304 { get; set; } /// /// /// - public global::ResembleAI.TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems? Type320 { get; set; } + public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem? Type305 { get; set; } /// /// /// - public global::ResembleAI.TermSubstitutionsListTermSubstitutionsResponse200? Type321 { get; set; } + public global::ResembleAI.RecordingsGetRecordingResponse200? Type306 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type322 { get; set; } + public global::ResembleAI.RecordingsDeleteRecordingResponse200? Type307 { get; set; } /// /// /// - public global::ResembleAI.TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem? Type323 { get; set; } + public global::ResembleAI.VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem? Type308 { get; set; } /// /// /// - public global::ResembleAI.TermSubstitutionsCreateTermSubstitutionResponse200? Type324 { get; set; } + public global::ResembleAI.RecordingsUpdateRecordingResponse200? Type309 { get; set; } /// /// /// - public global::ResembleAI.TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem? Type325 { get; set; } + public global::ResembleAI.TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems? Type310 { get; set; } /// /// /// - public global::ResembleAI.TermSubstitutionsGetTermSubstitutionResponse200? Type326 { get; set; } + public global::ResembleAI.TermSubstitutionsListTermSubstitutionsResponse200? Type311 { get; set; } /// /// /// - public global::ResembleAI.TermSubstitutionsDeleteTermSubstitutionResponse200? Type327 { get; set; } + public global::System.Collections.Generic.IList? Type312 { get; set; } /// /// /// - public global::ResembleAI.PronunciationsGetParametersStatus? Type328 { get; set; } + public global::ResembleAI.TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem? Type313 { get; set; } /// /// /// - public global::ResembleAI.CustomPronunciationStatus? Type329 { get; set; } + public global::ResembleAI.TermSubstitutionsCreateTermSubstitutionResponse200? Type314 { get; set; } /// /// /// - public global::ResembleAI.CustomPronunciation? Type330 { get; set; } + public global::ResembleAI.TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem? Type315 { get; set; } /// /// /// - public global::ResembleAI.CustomPronunciationsListPronunciationsResponse200? Type331 { get; set; } + public global::ResembleAI.TermSubstitutionsGetTermSubstitutionResponse200? Type316 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type332 { get; set; } + public global::ResembleAI.TermSubstitutionsDeleteTermSubstitutionResponse200? Type317 { get; set; } /// /// /// - public global::ResembleAI.CustomPronunciationsCreatePronunciationResponse201? Type333 { get; set; } + public global::ResembleAI.PronunciationsGetParametersStatus? Type318 { get; set; } /// /// /// - public global::ResembleAI.PronunciationsBulkPostResponsesContentApplicationJsonSchemaErrorsItems? Type334 { get; set; } + public global::ResembleAI.CustomPronunciationStatus? Type319 { get; set; } /// /// /// - public global::ResembleAI.CustomPronunciationsBulkCreatePronunciationsResponse201? Type335 { get; set; } + public global::ResembleAI.CustomPronunciation? Type320 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type336 { get; set; } + public global::ResembleAI.CustomPronunciationsListPronunciationsResponse200? Type321 { get; set; } /// /// /// - public global::ResembleAI.CustomPronunciationsGetPronunciationResponse200? Type337 { get; set; } + public global::System.Collections.Generic.IList? Type322 { get; set; } /// /// /// - public global::ResembleAI.CustomPronunciationsDeletePronunciationResponse200? Type338 { get; set; } + public global::ResembleAI.CustomPronunciationsCreatePronunciationResponse201? Type323 { get; set; } /// /// /// - public global::ResembleAI.CustomPronunciationsUpdatePronunciationResponse200? Type339 { get; set; } + public global::ResembleAI.PronunciationsBulkPostResponsesContentApplicationJsonSchemaErrorsItems? Type324 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsGetResponsesContentApplicationJsonSchemaItemsItems? Type340 { get; set; } + public global::ResembleAI.CustomPronunciationsBulkCreatePronunciationsResponse201? Type325 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsListVoiceSettingsPresetsResponse200? Type341 { get; set; } + public global::System.Collections.Generic.IList? Type326 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type342 { get; set; } + public global::ResembleAI.CustomPronunciationsGetPronunciationResponse200? Type327 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsPostResponsesContentApplicationJsonSchemaData? Type343 { get; set; } + public global::ResembleAI.CustomPronunciationsDeletePronunciationResponse200? Type328 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsCreateVoiceSettingsPresetResponse201? Type344 { get; set; } + public global::ResembleAI.CustomPronunciationsUpdatePronunciationResponse200? Type329 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsUuidGetResponsesContentApplicationJsonSchemaData? Type345 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsGetResponsesContentApplicationJsonSchemaItemsItems? Type330 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsGetVoiceSettingsPresetResponse200? Type346 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsListVoiceSettingsPresetsResponse200? Type331 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsDeleteVoiceSettingsPresetResponse200? Type347 { get; set; } + public global::System.Collections.Generic.IList? Type332 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsUuidPatchResponsesContentApplicationJsonSchemaData? Type348 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsPostResponsesContentApplicationJsonSchemaData? Type333 { get; set; } /// /// /// - public global::ResembleAI.VoiceSettingsPresetsUpdateVoiceSettingsPresetResponse200? Type349 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsCreateVoiceSettingsPresetResponse201? Type334 { get; set; } /// /// /// - public global::ResembleAI.ProjectsGetResponsesContentApplicationJsonSchemaItemsItems? Type350 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsUuidGetResponsesContentApplicationJsonSchemaData? Type335 { get; set; } /// /// /// - public global::ResembleAI.ProjectsListProjectsResponse200? Type351 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsGetVoiceSettingsPresetResponse200? Type336 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type352 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsDeleteVoiceSettingsPresetResponse200? Type337 { get; set; } /// /// /// - public global::ResembleAI.ProjectsPostResponsesContentApplicationJsonSchemaItem? Type353 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsUuidPatchResponsesContentApplicationJsonSchemaData? Type338 { get; set; } /// /// /// - public global::ResembleAI.ProjectsCreateProjectResponse200? Type354 { get; set; } + public global::ResembleAI.VoiceSettingsPresetsUpdateVoiceSettingsPresetResponse200? Type339 { get; set; } /// /// /// - public global::ResembleAI.ProjectsProjectUuidGetResponsesContentApplicationJsonSchemaItem? Type355 { get; set; } + public global::ResembleAI.ProjectsGetResponsesContentApplicationJsonSchemaItemsItems? Type340 { get; set; } /// /// /// - public global::ResembleAI.ProjectsGetProjectResponse200? Type356 { get; set; } + public global::ResembleAI.ProjectsListProjectsResponse200? Type341 { get; set; } /// /// /// - public global::ResembleAI.ProjectsProjectUuidPutResponsesContentApplicationJsonSchemaItem? Type357 { get; set; } + public global::System.Collections.Generic.IList? Type342 { get; set; } /// /// /// - public global::ResembleAI.ProjectsUpdateProjectResponse200? Type358 { get; set; } + public global::ResembleAI.ProjectsPostResponsesContentApplicationJsonSchemaItem? Type343 { get; set; } /// /// /// - public global::ResembleAI.ProjectsDeleteProjectResponse200? Type359 { get; set; } + public global::ResembleAI.ProjectsCreateProjectResponse200? Type344 { get; set; } /// /// /// - public global::ResembleAI.ProjectsProjectUuidClipsGetResponsesContentApplicationJsonSchemaItemsItems? Type360 { get; set; } + public global::ResembleAI.ProjectsProjectUuidGetResponsesContentApplicationJsonSchemaItem? Type345 { get; set; } /// /// /// - public global::ResembleAI.ClipsListClipsResponse200? Type361 { get; set; } + public global::ResembleAI.ProjectsGetProjectResponse200? Type346 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type362 { get; set; } + public global::ResembleAI.ProjectsProjectUuidPutResponsesContentApplicationJsonSchemaItem? Type347 { get; set; } /// /// /// - public global::ResembleAI.ProjectsProjectUuidClipsClipUuidGetResponsesContentApplicationJsonSchemaItem? Type363 { get; set; } + public global::ResembleAI.ProjectsUpdateProjectResponse200? Type348 { get; set; } /// /// /// - public global::ResembleAI.ClipsGetClipResponse200? Type364 { get; set; } + public global::ResembleAI.ProjectsDeleteProjectResponse200? Type349 { get; set; } /// /// /// - public global::ResembleAI.ClipsDeleteClipResponse200? Type365 { get; set; } + public global::ResembleAI.ProjectsProjectUuidClipsGetResponsesContentApplicationJsonSchemaItemsItems? Type350 { get; set; } /// /// /// - public global::ResembleAI.ProjectsProjectUuidClipsClipUuidPatchResponsesContentApplicationJsonSchemaItem? Type366 { get; set; } + public global::ResembleAI.ClipsListClipsResponse200? Type351 { get; set; } /// /// /// - public global::ResembleAI.ClipsUpdateClipResponse200? Type367 { get; set; } + public global::System.Collections.Generic.IList? Type352 { get; set; } /// /// /// - public global::ResembleAI.DuetVoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type368 { get; set; } + public global::ResembleAI.ProjectsProjectUuidClipsClipUuidGetResponsesContentApplicationJsonSchemaItem? Type353 { get; set; } /// /// /// - public global::ResembleAI.DuetsListDuetVoicesResponse200? Type369 { get; set; } + public global::ResembleAI.ClipsGetClipResponse200? Type354 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type370 { get; set; } + public global::ResembleAI.ClipsDeleteClipResponse200? Type355 { get; set; } /// /// /// - public global::ResembleAI.DuetVoicesPostResponsesContentApplicationJsonSchemaItem? Type371 { get; set; } + public global::ResembleAI.ProjectsProjectUuidClipsClipUuidPatchResponsesContentApplicationJsonSchemaItem? Type356 { get; set; } /// /// /// - public global::ResembleAI.DuetsCreateDuetVoiceResponse200? Type372 { get; set; } + public global::ResembleAI.ClipsUpdateClipResponse200? Type357 { get; set; } /// /// /// - public global::ResembleAI.DuetVoicesIdPutResponsesContentApplicationJsonSchemaItem? Type373 { get; set; } + public global::ResembleAI.DuetVoicesGetResponsesContentApplicationJsonSchemaItemsItems? Type358 { get; set; } /// /// /// - public global::ResembleAI.DuetsUpdateDuetVoiceResponse200? Type374 { get; set; } + public global::ResembleAI.DuetsListDuetVoicesResponse200? Type359 { get; set; } /// /// /// - public global::ResembleAI.DuetsDeleteDuetVoiceResponse200? Type375 { get; set; } + public global::System.Collections.Generic.IList? Type360 { get; set; } /// /// /// - public global::ResembleAI.DuetVoicePairsGetResponsesContentApplicationJsonSchemaItemsItems? Type376 { get; set; } + public global::ResembleAI.DuetVoicesPostResponsesContentApplicationJsonSchemaItem? Type361 { get; set; } /// /// /// - public global::ResembleAI.DuetsListDuetVoicePairsResponse200? Type377 { get; set; } + public global::ResembleAI.DuetsCreateDuetVoiceResponse200? Type362 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type378 { get; set; } + public global::ResembleAI.DuetVoicesIdPutResponsesContentApplicationJsonSchemaItem? Type363 { get; set; } /// /// /// - public global::ResembleAI.DuetVoicePairsPostResponsesContentApplicationJsonSchemaItem? Type379 { get; set; } + public global::ResembleAI.DuetsUpdateDuetVoiceResponse200? Type364 { get; set; } /// /// /// - public global::ResembleAI.DuetsCreateDuetVoicePairResponse200? Type380 { get; set; } + public global::ResembleAI.DuetsDeleteDuetVoiceResponse200? Type365 { get; set; } /// /// /// - public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItemsSpeaker? Type381 { get; set; } + public global::ResembleAI.DuetVoicePairsGetResponsesContentApplicationJsonSchemaItemsItems? Type366 { get; set; } /// /// /// - public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItems? Type382 { get; set; } + public global::ResembleAI.DuetsListDuetVoicePairsResponse200? Type367 { get; set; } /// /// /// - public global::ResembleAI.DuetPostResponsesContentApplicationJsonSchemaItem? Type383 { get; set; } + public global::System.Collections.Generic.IList? Type368 { get; set; } /// /// /// - public global::ResembleAI.DuetsGenerateDuetResponse200? Type384 { get; set; } + public global::ResembleAI.DuetVoicePairsPostResponsesContentApplicationJsonSchemaItem? Type369 { get; set; } /// /// /// - public global::ResembleAI.AccountGetResponsesContentApplicationJsonSchemaItem? Type385 { get; set; } + public global::ResembleAI.DuetsCreateDuetVoicePairResponse200? Type370 { get; set; } /// /// /// - public global::ResembleAI.AccountGetAccountResponse200? Type386 { get; set; } + public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItemsSpeaker? Type371 { get; set; } /// /// /// - public global::ResembleAI.AccountTeamsGetResponsesContentApplicationJsonSchemaItemsItems? Type387 { get; set; } + public global::ResembleAI.DuetPostRequestBodyContentApplicationJsonSchemaScriptItems? Type372 { get; set; } /// /// /// - public global::ResembleAI.AccountGetTeamsResponse200? Type388 { get; set; } + public global::ResembleAI.DuetPostResponsesContentApplicationJsonSchemaItem? Type373 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type389 { get; set; } + public global::ResembleAI.DuetsGenerateDuetResponse200? Type374 { get; set; } /// /// /// - public global::ResembleAI.AccountTeamsTeamUuidGetResponsesContentApplicationJsonSchemaItem? Type390 { get; set; } + public global::ResembleAI.AccountGetResponsesContentApplicationJsonSchemaItem? Type375 { get; set; } /// /// /// - public global::ResembleAI.AccountGetTeamResponse200? Type391 { get; set; } + public global::ResembleAI.AccountGetAccountResponse200? Type376 { get; set; } /// /// /// - public global::ResembleAI.BillingPlanPlanType? Type392 { get; set; } + public global::ResembleAI.AccountTeamsGetResponsesContentApplicationJsonSchemaItemsItems? Type377 { get; set; } /// /// /// - public global::ResembleAI.BillingPlanBillingInterval? Type393 { get; set; } + public global::ResembleAI.AccountGetTeamsResponse200? Type378 { get; set; } /// /// /// - public global::ResembleAI.BillingPlanFamily? Type394 { get; set; } + public global::System.Collections.Generic.IList? Type379 { get; set; } /// /// /// - public global::ResembleAI.BillingPlanProductCategory? Type395 { get; set; } + public global::ResembleAI.AccountTeamsTeamUuidGetResponsesContentApplicationJsonSchemaItem? Type380 { get; set; } /// /// /// - public global::ResembleAI.BillingProductRateTier? Type396 { get; set; } + public global::ResembleAI.AccountGetTeamResponse200? Type381 { get; set; } /// /// /// - public global::ResembleAI.BillingProductFamily? Type397 { get; set; } + public global::ResembleAI.BillingPlanPlanType? Type382 { get; set; } /// /// /// - public global::ResembleAI.BillingPlanProduct? Type398 { get; set; } + public global::ResembleAI.BillingPlanBillingInterval? Type383 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type399 { get; set; } + public global::ResembleAI.BillingPlanFamily? Type384 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type400 { get; set; } + public global::ResembleAI.BillingPlanProductCategory? Type385 { get; set; } /// /// /// - public global::ResembleAI.BillingPlan? Type401 { get; set; } + public global::ResembleAI.BillingProductRateTier? Type386 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type402 { get; set; } + public global::ResembleAI.BillingProductFamily? Type387 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type403 { get; set; } + public global::ResembleAI.BillingPlanProduct? Type388 { get; set; } /// /// /// - public global::ResembleAI.BillingPlansResponse? Type404 { get; set; } + public global::System.Collections.Generic.IList? Type389 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type405 { get; set; } + public global::ResembleAI.BillingPlan? Type390 { get; set; } /// /// /// - public global::ResembleAI.BillingError? Type406 { get; set; } + public global::System.Collections.Generic.IList? Type391 { get; set; } /// /// /// - public global::ResembleAI.BillingPlanResponse? Type407 { get; set; } + public global::ResembleAI.BillingPlansResponse? Type392 { get; set; } /// /// /// - public global::ResembleAI.BillingSubscriptionStatus? Type408 { get; set; } + public global::System.Collections.Generic.IList? Type393 { get; set; } /// /// /// - public global::ResembleAI.BillingSubscriptionProductCategory? Type409 { get; set; } + public global::ResembleAI.BillingError? Type394 { get; set; } /// /// /// - public global::ResembleAI.BillingSubscriptionProduct? Type410 { get; set; } + public global::ResembleAI.BillingPlanResponse? Type395 { get; set; } /// /// /// - public global::ResembleAI.BillingSubscriptionPlanProduct? Type411 { get; set; } + public global::ResembleAI.BillingSubscriptionStatus? Type396 { get; set; } /// /// /// - public global::ResembleAI.BillingSubscriptionItem? Type412 { get; set; } + public global::ResembleAI.BillingSubscriptionProductCategory? Type397 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type413 { get; set; } + public global::ResembleAI.BillingSubscriptionProduct? Type398 { get; set; } /// /// /// - public global::ResembleAI.BillingSubscription? Type414 { get; set; } + public global::ResembleAI.BillingSubscriptionPlanProduct? Type399 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type415 { get; set; } + public global::ResembleAI.BillingSubscriptionItem? Type400 { get; set; } /// /// /// - public global::ResembleAI.BillingSubscriptionResponse? Type416 { get; set; } + public global::ResembleAI.BillingSubscription? Type401 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type417 { get; set; } + public global::System.Collections.Generic.IList? Type402 { get; set; } /// /// /// - public global::ResembleAI.BillingForbiddenError? Type418 { get; set; } + public global::ResembleAI.BillingSubscriptionResponse? Type403 { get; set; } /// /// /// - public global::ResembleAI.BillingProductQuantityChange? Type419 { get; set; } + public global::ResembleAI.BillingForbiddenError? Type404 { get; set; } /// /// /// - public global::ResembleAI.BillingUpdateProductsRequest? Type420 { get; set; } + public global::ResembleAI.BillingProductQuantityChange? Type405 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type421 { get; set; } + public global::ResembleAI.BillingUpdateProductsRequest? Type406 { get; set; } /// /// /// - public global::ResembleAI.BillingPaymentActionRequired? Type422 { get; set; } + public global::System.Collections.Generic.IList? Type407 { get; set; } /// /// /// - public global::ResembleAI.BillingValidationErrors? Type423 { get; set; } + public global::ResembleAI.BillingPaymentActionRequired? Type408 { get; set; } /// /// /// - public global::ResembleAI.UpdateBillingSubscriptionProductsRequestUnprocessableEntityError? Type424 { get; set; } + public global::ResembleAI.BillingValidationErrors? Type409 { get; set; } /// /// /// - public global::ResembleAI.BillingConfirmPaymentRequest? Type425 { get; set; } + public global::ResembleAI.UpdateBillingSubscriptionProductsRequestUnprocessableEntityError? Type410 { get; set; } /// /// /// - public global::ResembleAI.ConfirmBillingSubscriptionPaymentRequestUnprocessableEntityError? Type426 { get; set; } + public global::ResembleAI.BillingConfirmPaymentRequest? Type411 { get; set; } /// /// /// - public global::ResembleAI.BillingChangePlanRequest? Type427 { get; set; } + public global::ResembleAI.ConfirmBillingSubscriptionPaymentRequestUnprocessableEntityError? Type412 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type428 { get; set; } + public global::ResembleAI.BillingChangePlanRequest? Type413 { get; set; } /// /// /// - public global::ResembleAI.ChangeBillingPlanRequestUnprocessableEntityError? Type429 { get; set; } + public global::System.Collections.Generic.Dictionary? Type414 { get; set; } /// /// /// - public global::ResembleAI.BillingWallet? Type430 { get; set; } + public global::ResembleAI.ChangeBillingPlanRequestUnprocessableEntityError? Type415 { get; set; } /// /// /// - public global::ResembleAI.BillingWalletResponse? Type431 { get; set; } + public global::ResembleAI.BillingWallet? Type416 { get; set; } /// /// /// - public global::ResembleAI.BillingWalletTransactionTransactionType? Type432 { get; set; } + public global::ResembleAI.BillingWalletResponse? Type417 { get; set; } /// /// /// - public global::ResembleAI.BillingWalletTransaction? Type433 { get; set; } + public global::ResembleAI.BillingWalletTransactionTransactionType? Type418 { get; set; } /// /// /// - public global::ResembleAI.BillingPagination? Type434 { get; set; } + public global::ResembleAI.BillingWalletTransaction? Type419 { get; set; } /// /// /// - public global::ResembleAI.BillingTransactionsResponse? Type435 { get; set; } + public global::ResembleAI.BillingPagination? Type420 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type436 { get; set; } + public global::ResembleAI.BillingTransactionsResponse? Type421 { get; set; } /// /// /// - public global::ResembleAI.BillingAutoReloadSetting? Type437 { get; set; } + public global::System.Collections.Generic.IList? Type422 { get; set; } /// /// /// - public global::ResembleAI.BillingAutoReloadResponse? Type438 { get; set; } + public global::ResembleAI.BillingAutoReloadSetting? Type423 { get; set; } /// /// /// - public global::ResembleAI.OneOf? Type439 { get; set; } + public global::ResembleAI.BillingAutoReloadResponse? Type424 { get; set; } /// /// /// - public global::ResembleAI.BillingUpdateAutoReloadRequest? Type440 { get; set; } + public global::ResembleAI.BillingUpdateAutoReloadRequest? Type425 { get; set; } /// /// /// - public global::ResembleAI.BillingWalletUpdateBillingAutoReloadResponse200? Type441 { get; set; } + public global::ResembleAI.BillingWalletUpdateBillingAutoReloadResponse200? Type426 { get; set; } /// /// /// - public global::ResembleAI.UpdateBillingAutoReloadRequestUnprocessableEntityError? Type442 { get; set; } + public global::ResembleAI.UpdateBillingAutoReloadRequestUnprocessableEntityError? Type427 { get; set; } /// /// /// - public global::ResembleAI.AccountBillingUsageGetResponsesContentApplicationJsonSchemaItem? Type443 { get; set; } + public global::ResembleAI.AccountBillingUsageGetResponsesContentApplicationJsonSchemaItem? Type428 { get; set; } /// /// /// - public global::ResembleAI.AccountGetBillingUsageResponse200? Type444 { get; set; } + public global::ResembleAI.AccountGetBillingUsageResponse200? Type429 { get; set; } /// /// /// - public global::ResembleAI.CreateDetectionRequest? Type445 { get; set; } + public global::ResembleAI.CreateDetectionRequest? Type430 { get; set; } /// /// /// - public global::ResembleAI.CreateDetectBatchRequest? Type446 { get; set; } + public global::ResembleAI.CreateDetectBatchRequest? Type431 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type447 { get; set; } + public global::System.Collections.Generic.IList? Type432 { get; set; } /// /// /// - public global::ResembleAI.CreateDetectFeedbackRequest? Type448 { get; set; } + public global::ResembleAI.CreateDetectFeedbackRequest? Type433 { get; set; } /// /// /// - public global::ResembleAI.RunDetectAgentInvestigationRequest? Type449 { get; set; } + public global::ResembleAI.RunDetectAgentInvestigationRequest? Type434 { get; set; } /// /// /// - public global::ResembleAI.RunIntelligenceRequest? Type450 { get; set; } + public global::ResembleAI.RunIntelligenceRequest? Type435 { get; set; } /// /// /// - public global::ResembleAI.AskDetectIntelligenceQuestionRequest? Type451 { get; set; } + public global::ResembleAI.AskDetectIntelligenceQuestionRequest? Type436 { get; set; } /// /// /// - public global::ResembleAI.CreateIdentityAttachmentRequest? Type452 { get; set; } + public global::ResembleAI.CreateIdentityAttachmentRequest? Type437 { get; set; } /// /// /// - public global::ResembleAI.SearchIdentitiesRequest? Type453 { get; set; } + public global::ResembleAI.SearchIdentitiesRequest? Type438 { get; set; } /// /// /// - public global::ResembleAI.CreateSignalSubmissionRequest? Type454 { get; set; } + public global::ResembleAI.CreateSignalSubmissionRequest? Type439 { get; set; } /// /// /// - public global::ResembleAI.CreateSecureUploadRequest? Type455 { get; set; } + public global::ResembleAI.CreateSecureUploadRequest? Type440 { get; set; } /// /// /// - public global::ResembleAI.SynthesizeRequest? Type456 { get; set; } + public global::ResembleAI.SynthesizeRequest? Type441 { get; set; } /// /// /// - public global::ResembleAI.StreamSynthesizeRequest? Type457 { get; set; } + public global::ResembleAI.StreamSynthesizeRequest? Type442 { get; set; } /// /// /// - public global::ResembleAI.CreateTranscriptRequest? Type458 { get; set; } + public global::ResembleAI.CreateTranscriptRequest? Type443 { get; set; } /// /// /// - public global::ResembleAI.AskTranscriptQuestionRequest? Type459 { get; set; } + public global::ResembleAI.AskTranscriptQuestionRequest? Type444 { get; set; } /// /// /// - public global::ResembleAI.CreateAudioEnhancementRequest? Type460 { get; set; } + public global::ResembleAI.CreateAudioEnhancementRequest? Type445 { get; set; } /// /// /// - public global::ResembleAI.CreateVoiceRequest? Type461 { get; set; } + public global::ResembleAI.CreateVoiceRequest? Type446 { get; set; } /// /// /// - public global::ResembleAI.BuildVoiceRequest? Type462 { get; set; } + public global::ResembleAI.BuildVoiceRequest? Type447 { get; set; } /// /// /// - public global::ResembleAI.GenerateVoiceDesignRequest? Type463 { get; set; } + public global::ResembleAI.GenerateVoiceDesignRequest? Type448 { get; set; } /// /// /// - public global::ResembleAI.CreateVoiceFromCandidateRequest? Type464 { get; set; } + public global::ResembleAI.CreateVoiceFromCandidateRequest? Type449 { get; set; } /// /// /// - public global::ResembleAI.CreateRecordingRequest? Type465 { get; set; } + public global::ResembleAI.CreateRecordingRequest? Type450 { get; set; } /// /// /// - public global::ResembleAI.UpdateRecordingRequest? Type466 { get; set; } + public global::ResembleAI.UpdateRecordingRequest? Type451 { get; set; } /// /// /// - public global::ResembleAI.CreateTermSubstitutionRequest? Type467 { get; set; } + public global::ResembleAI.CreateTermSubstitutionRequest? Type452 { get; set; } /// /// /// - public global::ResembleAI.CreatePronunciationRequest? Type468 { get; set; } + public global::ResembleAI.CreatePronunciationRequest? Type453 { get; set; } /// /// /// - public global::ResembleAI.BulkCreatePronunciationsRequest? Type469 { get; set; } + public global::ResembleAI.BulkCreatePronunciationsRequest? Type454 { get; set; } /// /// /// - public global::ResembleAI.UpdatePronunciationRequest? Type470 { get; set; } + public global::ResembleAI.UpdatePronunciationRequest? Type455 { get; set; } /// /// /// - public global::ResembleAI.CreateVoiceSettingsPresetRequest? Type471 { get; set; } + public global::ResembleAI.CreateVoiceSettingsPresetRequest? Type456 { get; set; } /// /// /// - public global::ResembleAI.UpdateVoiceSettingsPresetRequest? Type472 { get; set; } + public global::ResembleAI.UpdateVoiceSettingsPresetRequest? Type457 { get; set; } /// /// /// - public global::ResembleAI.CreateProjectRequest? Type473 { get; set; } + public global::ResembleAI.CreateProjectRequest? Type458 { get; set; } /// /// /// - public global::ResembleAI.UpdateProjectRequest? Type474 { get; set; } + public global::ResembleAI.UpdateProjectRequest? Type459 { get; set; } /// /// /// - public global::ResembleAI.UpdateClipRequest? Type475 { get; set; } + public global::ResembleAI.UpdateClipRequest? Type460 { get; set; } /// /// /// - public global::ResembleAI.CreateDuetVoiceRequest? Type476 { get; set; } + public global::ResembleAI.CreateDuetVoiceRequest? Type461 { get; set; } /// /// /// - public global::ResembleAI.UpdateDuetVoiceRequest? Type477 { get; set; } + public global::ResembleAI.UpdateDuetVoiceRequest? Type462 { get; set; } /// /// /// - public global::ResembleAI.CreateDuetVoicePairRequest? Type478 { get; set; } + public global::ResembleAI.CreateDuetVoicePairRequest? Type463 { get; set; } /// /// /// - public global::ResembleAI.GenerateDuetRequest? Type479 { get; set; } + public global::ResembleAI.GenerateDuetRequest? Type464 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type480 { get; set; } + public global::System.Collections.Generic.IList? Type465 { get; set; } /// /// diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingAutoReloadResponse.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingAutoReloadResponse.g.cs index 9b7448a..608a000 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingAutoReloadResponse.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingAutoReloadResponse.g.cs @@ -12,8 +12,7 @@ public sealed partial class BillingAutoReloadResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("auto_reload")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? AutoReload { get; set; } + public global::ResembleAI.BillingAutoReloadSetting? AutoReload { get; set; } /// /// @@ -43,7 +42,7 @@ public sealed partial class BillingAutoReloadResponse [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public BillingAutoReloadResponse( - global::ResembleAI.OneOf? autoReload, + global::ResembleAI.BillingAutoReloadSetting? autoReload, int? minimumReloadAmountCents, int? maximumReloadAmountCents) { diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingPlan.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingPlan.g.cs index 637c1e3..cbeaab3 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingPlan.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingPlan.g.cs @@ -80,8 +80,7 @@ public sealed partial class BillingPlan /// /// [global::System.Text.Json.Serialization.JsonPropertyName("plan_family")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? PlanFamily { get; set; } + public global::ResembleAI.BillingPlanFamily? PlanFamily { get; set; } /// /// @@ -149,7 +148,7 @@ public BillingPlan( int? includedDollarBalanceCents, double? includedDollarBalanceDollars, global::ResembleAI.BillingPlanBillingInterval? billingInterval, - global::ResembleAI.OneOf? planFamily, + global::ResembleAI.BillingPlanFamily? planFamily, bool? active, global::System.Collections.Generic.IList? products, global::System.DateTime? createdAt, diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingPlanProduct.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingPlanProduct.g.cs index f558bba..13a19be 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingPlanProduct.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingPlanProduct.g.cs @@ -103,8 +103,7 @@ public sealed partial class BillingPlanProduct /// /// [global::System.Text.Json.Serialization.JsonPropertyName("product_family")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? ProductFamily { get; set; } + public global::ResembleAI.BillingProductFamily? ProductFamily { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -160,7 +159,7 @@ public BillingPlanProduct( double? minUsagePerPeriod, double? maxUsagePerPeriod, bool? uiVisible, - global::ResembleAI.OneOf? productFamily) + global::ResembleAI.BillingProductFamily? productFamily) { this.Id = id; this.Name = name; diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingSubscriptionItem.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingSubscriptionItem.g.cs index 9e00de2..7f05049 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingSubscriptionItem.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingSubscriptionItem.g.cs @@ -36,8 +36,7 @@ public sealed partial class BillingSubscriptionItem /// /// [global::System.Text.Json.Serialization.JsonPropertyName("plan_product")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? PlanProduct { get; set; } + public global::ResembleAI.BillingSubscriptionPlanProduct? PlanProduct { get; set; } /// /// Locked-in unit rate for this subscription item. @@ -104,7 +103,7 @@ public BillingSubscriptionItem( double? quantity, double? consumedQuantity, global::ResembleAI.BillingSubscriptionProduct? product, - global::ResembleAI.OneOf? planProduct, + global::ResembleAI.BillingSubscriptionPlanProduct? planProduct, double? ratePerUnitCents, double? currentRatePerUnitCents, bool? isGrandfathered, diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingSubscriptionResponse.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingSubscriptionResponse.g.cs index f6c09d9..3cc89d1 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingSubscriptionResponse.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.BillingSubscriptionResponse.g.cs @@ -12,9 +12,7 @@ public sealed partial class BillingSubscriptionResponse /// /// [global::System.Text.Json.Serialization.JsonPropertyName("subscription")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - [global::System.Text.Json.Serialization.JsonRequired] - public required global::ResembleAI.OneOf Subscription { get; set; } + public global::ResembleAI.BillingSubscription? Subscription { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -30,7 +28,7 @@ public sealed partial class BillingSubscriptionResponse [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public BillingSubscriptionResponse( - global::ResembleAI.OneOf subscription) + global::ResembleAI.BillingSubscription? subscription) { this.Subscription = subscription; } diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectAgentRunResult.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectAgentRunResult.g.cs index 8011157..baa6d5c 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectAgentRunResult.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectAgentRunResult.g.cs @@ -12,8 +12,7 @@ public sealed partial class DetectAgentRunResult /// /// [global::System.Text.Json.Serialization.JsonPropertyName("verdict")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? Verdict { get; set; } + public global::ResembleAI.DetectAgentRunResultVerdict? Verdict { get; set; } /// /// @@ -64,7 +63,7 @@ public sealed partial class DetectAgentRunResult [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public DetectAgentRunResult( - global::ResembleAI.OneOf? verdict, + global::ResembleAI.DetectAgentRunResultVerdict? verdict, string? recommendedAction, double? confidence, string? label, diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectFeedback.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectFeedback.g.cs index 0ea3159..ba4a932 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectFeedback.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectFeedback.g.cs @@ -36,8 +36,7 @@ public sealed partial class DetectFeedback /// have no counterpart here — this field records only the two decided model outcomes. /// [global::System.Text.Json.Serialization.JsonPropertyName("verdict")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? Verdict { get; set; } + public global::ResembleAI.DetectFeedbackVerdict? Verdict { get; set; } /// /// The model's headline confidence, 0.0–1.0, or `null`. For video, the higher of the
@@ -133,7 +132,7 @@ public DetectFeedback( string? detectUuid, global::ResembleAI.DetectFeedbackType? type, global::ResembleAI.DetectFeedbackVote? vote, - global::ResembleAI.OneOf? verdict, + global::ResembleAI.DetectFeedbackVerdict? verdict, double? score, global::ResembleAI.DetectFeedbackMediaType? mediaType, string? comment, diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectFeedbackVerdict2.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectFeedbackVerdict2.g.cs new file mode 100644 index 0000000..d0e920f --- /dev/null +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectFeedbackVerdict2.g.cs @@ -0,0 +1,21 @@ + +#nullable enable + +namespace ResembleAI +{ + /// + /// What the model said, snapshotted when the feedback was submitted. `null` when the
+ /// detection landed somewhere indeterminate. `should_be_neutral` and `should_be_non_ai`
+ /// have no counterpart here — this field records only the two decided model outcomes. + ///
+ public sealed partial class DetectFeedbackVerdict2 + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + } +} \ No newline at end of file diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectGetResponsesContentApplicationJsonSchemaItemsItems.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectGetResponsesContentApplicationJsonSchemaItemsItems.g.cs index 7a82b52..b63dfac 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectGetResponsesContentApplicationJsonSchemaItemsItems.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectGetResponsesContentApplicationJsonSchemaItemsItems.g.cs @@ -72,15 +72,13 @@ public sealed partial class DetectGetResponsesContentApplicationJsonSchemaItemsI /// Source tracing results (only returned if audio is labeled fake) ///
[global::System.Text.Json.Serialization.JsonPropertyName("audio_source_tracing")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? AudioSourceTracing { get; set; } + public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsAudioSourceTracing? AudioSourceTracing { get; set; } /// /// /// [global::System.Text.Json.Serialization.JsonPropertyName("intelligence")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? Intelligence { get; set; } + public global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsIntelligence? Intelligence { get; set; } /// /// URL to the media file. Null when Zero Retention Mode is enabled. @@ -238,8 +236,8 @@ public DetectGetResponsesContentApplicationJsonSchemaItemsItems( global::ResembleAI.DetectImageMetrics? imageMetrics, global::ResembleAI.DetectVideoMetrics? videoMetrics, global::ResembleAI.DetectC2paManifest? c2paManifest, - global::ResembleAI.OneOf? audioSourceTracing, - global::ResembleAI.OneOf? intelligence, + global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsAudioSourceTracing? audioSourceTracing, + global::ResembleAI.DetectGetResponsesContentApplicationJsonSchemaItemsItemsIntelligence? intelligence, string? url, string? audioUrl, string? filename, diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectIntelligenceResult.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectIntelligenceResult.g.cs index da16108..849ceb6 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectIntelligenceResult.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectIntelligenceResult.g.cs @@ -31,8 +31,7 @@ public sealed partial class DetectIntelligenceResult /// /// [global::System.Text.Json.Serialization.JsonPropertyName("description")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? Description { get; set; } + public global::ResembleAI.DetectIntelligenceResultDescription? Description { get; set; } /// /// @@ -70,7 +69,7 @@ public DetectIntelligenceResult( string? uuid, global::ResembleAI.DetectIntelligenceResultStatus? status, string? errorMessage, - global::ResembleAI.OneOf? description, + global::ResembleAI.DetectIntelligenceResultDescription? description, global::System.DateTime? createdAt, string? detectUuid) { diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectPostResponsesContentApplicationJsonSchemaItem.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectPostResponsesContentApplicationJsonSchemaItem.g.cs index 2757f8f..9732ac2 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectPostResponsesContentApplicationJsonSchemaItem.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectPostResponsesContentApplicationJsonSchemaItem.g.cs @@ -71,8 +71,7 @@ public sealed partial class DetectPostResponsesContentApplicationJsonSchemaItem /// Default Intelligence result when requested /// [global::System.Text.Json.Serialization.JsonPropertyName("intelligence")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? Intelligence { get; set; } + public global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligence? Intelligence { get; set; } /// /// Content Credentials (C2PA) verification result for audio, image, and video media. Returned when verification has completed. A fallback verification failure returns `validation_state: Unavailable` and does not fail the detection. @@ -135,7 +134,7 @@ public DetectPostResponsesContentApplicationJsonSchemaItem( string? filename, global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemModality? modality, bool? faceOnly, - global::ResembleAI.OneOf? intelligence, + global::ResembleAI.DetectPostResponsesContentApplicationJsonSchemaItemIntelligence? intelligence, global::ResembleAI.DetectC2paManifest? c2paManifest) { this.Uuid = uuid; diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectUuidGetResponsesContentApplicationJsonSchemaItem.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectUuidGetResponsesContentApplicationJsonSchemaItem.g.cs index 7f4ef48..7ff2ad8 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectUuidGetResponsesContentApplicationJsonSchemaItem.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.DetectUuidGetResponsesContentApplicationJsonSchemaItem.g.cs @@ -56,15 +56,13 @@ public sealed partial class DetectUuidGetResponsesContentApplicationJsonSchemaIt /// Source tracing results (only returned if audio is labeled fake) /// [global::System.Text.Json.Serialization.JsonPropertyName("audio_source_tracing")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? AudioSourceTracing { get; set; } + public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemAudioSourceTracing? AudioSourceTracing { get; set; } /// /// With experts omitted or false, one completed Intelligence result when available; otherwise, the current processing or failed result. With experts=true, all successfully completed results as an array, or an empty array when none have completed successfully. /// [global::System.Text.Json.Serialization.JsonPropertyName("intelligence")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? Intelligence { get; set; } + public global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence? Intelligence { get; set; } /// /// Which detection modality was requested for this detect. `all` when not specified
@@ -200,8 +198,8 @@ public DetectUuidGetResponsesContentApplicationJsonSchemaItem( global::ResembleAI.DetectImageMetrics? imageMetrics, global::ResembleAI.DetectVideoMetrics? videoMetrics, global::ResembleAI.DetectC2paManifest? c2paManifest, - global::ResembleAI.OneOf? audioSourceTracing, - global::ResembleAI.OneOf? intelligence, + global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemAudioSourceTracing? audioSourceTracing, + global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemIntelligence? intelligence, global::ResembleAI.DetectUuidGetResponsesContentApplicationJsonSchemaItemModality? modality, bool? faceOnly, string? url, diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkDetectItem.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkDetectItem.g.cs index a2316ee..a101d0e 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkDetectItem.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkDetectItem.g.cs @@ -56,8 +56,7 @@ public sealed partial class WatermarkDetectItem /// Null while processing. New results use the media-specific versioned schema; historical audio results can use a flat shape. ///
[global::System.Text.Json.Serialization.JsonPropertyName("metrics")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? Metrics { get; set; } + public global::ResembleAI.WatermarkDetectItemMetrics? Metrics { get; set; } /// /// Detection does not produce output media. @@ -116,7 +115,7 @@ public WatermarkDetectItem( global::System.DateTime updatedAt, global::ResembleAI.WatermarkDetectItemOperationType operationType, global::ResembleAI.WatermarkDetectItemModelVersion? modelVersion, - global::ResembleAI.OneOf? metrics, + global::ResembleAI.WatermarkDetectItemMetrics? metrics, string? watermarkedMedia) { this.Uuid = uuid ?? throw new global::System.ArgumentNullException(nameof(uuid)); diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkVisionDetectionMetrics.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkVisionDetectionMetrics.g.cs index 835b965..c334b08 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkVisionDetectionMetrics.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkVisionDetectionMetrics.g.cs @@ -47,8 +47,7 @@ public sealed partial class WatermarkVisionDetectionMetrics /// Backward-compatible image/video verdict. /// [global::System.Text.Json.Serialization.JsonPropertyName("verdict")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::ResembleAI.JsonConverters.OneOfJsonConverter))] - public global::ResembleAI.OneOf? Verdict { get; set; } + public global::ResembleAI.WatermarkVisionDetectionMetricsVerdict? Verdict { get; set; } /// /// Optional auxiliary SynthID signal for images. @@ -87,7 +86,7 @@ public WatermarkVisionDetectionMetrics( bool hasWatermark, global::System.Collections.Generic.IList modelResults, double? detectionScore, - global::ResembleAI.OneOf? verdict, + global::ResembleAI.WatermarkVisionDetectionMetricsVerdict? verdict, bool? synthid) { this.OverallStatus = overallStatus; diff --git a/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkVisionDetectionMetricsVerdict2.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkVisionDetectionMetricsVerdict2.g.cs new file mode 100644 index 0000000..b493d68 --- /dev/null +++ b/src/libs/ResembleAI/Generated/ResembleAI.Models.WatermarkVisionDetectionMetricsVerdict2.g.cs @@ -0,0 +1,19 @@ + +#nullable enable + +namespace ResembleAI +{ + /// + /// Backward-compatible image/video verdict. + /// + public sealed partial class WatermarkVisionDetectionMetricsVerdict2 + { + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + } +} \ No newline at end of file diff --git a/src/libs/ResembleAI/Generated/ResembleAI.OneOf.2.Json.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.OneOf.2.Json.g.cs deleted file mode 100644 index 2a1e4d2..0000000 --- a/src/libs/ResembleAI/Generated/ResembleAI.OneOf.2.Json.g.cs +++ /dev/null @@ -1,141 +0,0 @@ -#nullable enable - -namespace ResembleAI -{ - public readonly partial struct OneOf - { - /// - /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. - /// - public string ToJson( - global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) - { - return global::System.Text.Json.JsonSerializer.Serialize( - this, - this.GetType(), - jsonSerializerContext); - } - - /// - /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext. - /// - public string ToJson() - { - return ToJson(global::ResembleAI.SourceGenerationContext.Default); - } - - /// - /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. - /// -#if NET8_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] - [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] -#endif - public string ToJson( - global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) - { - if (jsonSerializerOptions is null) - { - return ToJson(global::ResembleAI.SourceGenerationContext.Default); - } - - return global::System.Text.Json.JsonSerializer.Serialize( - this, - jsonSerializerOptions); - } - - /// - /// Deserializes a JSON string using the provided JsonSerializerContext. - /// - public static global::ResembleAI.OneOf? FromJson( - string json, - global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) - { - return global::System.Text.Json.JsonSerializer.Deserialize( - json, - typeof(global::ResembleAI.OneOf), - jsonSerializerContext) as global::ResembleAI.OneOf?; - } - - /// - /// Deserializes a JSON string using the generated default JsonSerializerContext. - /// - public static global::ResembleAI.OneOf? FromJson( - string json) - { - return FromJson( - json, - global::ResembleAI.SourceGenerationContext.Default); - } - - /// - /// Deserializes a JSON string using the provided JsonSerializerOptions. - /// -#if NET8_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] - [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] -#endif - public static global::ResembleAI.OneOf? FromJson( - string json, - global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) - { - if (jsonSerializerOptions is null) - { - return FromJson( - json, - global::ResembleAI.SourceGenerationContext.Default); - } - - return global::System.Text.Json.JsonSerializer.Deserialize>( - json, - jsonSerializerOptions); - } - - /// - /// Deserializes a JSON stream using the provided JsonSerializerContext. - /// - public static async global::System.Threading.Tasks.ValueTask?> FromJsonStreamAsync( - global::System.IO.Stream jsonStream, - global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) - { - return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( - jsonStream, - typeof(global::ResembleAI.OneOf), - jsonSerializerContext).ConfigureAwait(false)) as global::ResembleAI.OneOf?; - } - - /// - /// Deserializes a JSON stream using the generated default JsonSerializerContext. - /// - public static global::System.Threading.Tasks.ValueTask?> FromJsonStreamAsync( - global::System.IO.Stream jsonStream) - { - return FromJsonStreamAsync( - jsonStream, - global::ResembleAI.SourceGenerationContext.Default); - } - - /// - /// Deserializes a JSON stream using the provided JsonSerializerOptions. - /// -#if NET8_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] - [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] -#endif - public static global::System.Threading.Tasks.ValueTask?> FromJsonStreamAsync( - global::System.IO.Stream jsonStream, - global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) - { - if (jsonSerializerOptions is null) - { - return FromJsonStreamAsync( - jsonStream, - global::ResembleAI.SourceGenerationContext.Default); - } - - return global::System.Text.Json.JsonSerializer.DeserializeAsync?>( - jsonStream, - jsonSerializerOptions); - } - } -} diff --git a/src/libs/ResembleAI/Generated/ResembleAI.OneOf.2.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.OneOf.2.g.cs deleted file mode 100644 index 120f9e8..0000000 --- a/src/libs/ResembleAI/Generated/ResembleAI.OneOf.2.g.cs +++ /dev/null @@ -1,294 +0,0 @@ - -#nullable enable - -namespace ResembleAI -{ - /// - /// - /// - public readonly partial struct OneOf : global::System.IEquatable> - { - /// - /// - /// -#if NET6_0_OR_GREATER - public T1? Value1 { get; init; } -#else - public T1? Value1 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))] -#endif - public bool IsValue1 => Value1 != null; - - /// - /// - /// - public bool TryPickValue1( -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.NotNullWhen(true)] -#endif - out T1? value) - { - value = Value1; - return IsValue1; - } - - /// - /// - /// - public T1 PickValue1() => IsValue1 - ? Value1! - : throw new global::System.InvalidOperationException($"Expected union variant 'Value1' but the value was {ToString()}."); - - /// - /// - /// -#if NET6_0_OR_GREATER - public T2? Value2 { get; init; } -#else - public T2? Value2 { get; } -#endif - - /// - /// - /// -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value2))] -#endif - public bool IsValue2 => Value2 != null; - - /// - /// - /// - public bool TryPickValue2( -#if NET6_0_OR_GREATER - [global::System.Diagnostics.CodeAnalysis.NotNullWhen(true)] -#endif - out T2? value) - { - value = Value2; - return IsValue2; - } - - /// - /// - /// - public T2 PickValue2() => IsValue2 - ? Value2! - : throw new global::System.InvalidOperationException($"Expected union variant 'Value2' but the value was {ToString()}."); - /// - /// - /// - public static implicit operator OneOf(T1 value) => new OneOf((T1?)value); - - /// - /// - /// - public static implicit operator T1?(OneOf @this) => @this.Value1; - - /// - /// - /// - public OneOf(T1? value) - { - Value1 = value; - } - - /// - /// - /// - public static OneOf FromValue1(T1? value) => new OneOf(value); - - /// - /// - /// - public static implicit operator OneOf(T2 value) => new OneOf((T2?)value); - - /// - /// - /// - public static implicit operator T2?(OneOf @this) => @this.Value2; - - /// - /// - /// - public OneOf(T2? value) - { - Value2 = value; - } - - /// - /// - /// - public static OneOf FromValue2(T2? value) => new OneOf(value); - - /// - /// - /// - public OneOf( - T1? value1, - T2? value2 - ) - { - Value1 = value1; - Value2 = value2; - } - - /// - /// - /// - public object? Object => - Value2 as object ?? - Value1 as object - ; - - /// - /// - /// - public override string? ToString() => - Value1?.ToString() ?? - Value2?.ToString() - ; - - /// - /// - /// - public bool Validate() - { - return IsValue1 && !IsValue2 || !IsValue1 && IsValue2; - } - - /// - /// - /// - public TResult? Match( - global::System.Func? value1 = null, - global::System.Func? value2 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1 && value1 != null) - { - return value1(Value1!); - } - else if (IsValue2 && value2 != null) - { - return value2(Value2!); - } - - return default(TResult); - } - - /// - /// - /// - public void Match( - global::System.Action? value1 = null, - - global::System.Action? value2 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1) - { - value1?.Invoke(Value1!); - } - else if (IsValue2) - { - value2?.Invoke(Value2!); - } - } - - /// - /// - /// - public void Switch( - global::System.Action? value1 = null, - global::System.Action? value2 = null, - bool validate = true) - { - if (validate) - { - Validate(); - } - - if (IsValue1) - { - value1?.Invoke(Value1!); - } - else if (IsValue2) - { - value2?.Invoke(Value2!); - } - } - - /// - /// - /// - public override int GetHashCode() - { - var fields = new object?[] - { - Value1, - typeof(T1), - Value2, - typeof(T2), - }; - const int offset = unchecked((int)2166136261); - const int prime = 16777619; - static int HashCodeAggregator(int hashCode, object? value) => value == null - ? (hashCode ^ 0) * prime - : (hashCode ^ value.GetHashCode()) * prime; - - return global::System.Linq.Enumerable.Aggregate(fields, offset, HashCodeAggregator); - } - - /// - /// - /// - public bool Equals(OneOf other) - { - return - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1) && - global::System.Collections.Generic.EqualityComparer.Default.Equals(Value2, other.Value2) - ; - } - - /// - /// - /// - public static bool operator ==(OneOf obj1, OneOf obj2) - { - return global::System.Collections.Generic.EqualityComparer>.Default.Equals(obj1, obj2); - } - - /// - /// - /// - public static bool operator !=(OneOf obj1, OneOf obj2) - { - return !(obj1 == obj2); - } - - /// - /// - /// - public override bool Equals(object? obj) - { - return obj is OneOf o && Equals(o); - } - } -} diff --git a/src/libs/ResembleAI/Generated/ResembleAI.PathBuilder.g.cs b/src/libs/ResembleAI/Generated/ResembleAI.PathBuilder.g.cs index d0ddeb0..c0b8f0c 100644 --- a/src/libs/ResembleAI/Generated/ResembleAI.PathBuilder.g.cs +++ b/src/libs/ResembleAI/Generated/ResembleAI.PathBuilder.g.cs @@ -65,13 +65,14 @@ public PathBuilder AddRequiredParameter( /// The current instance. public PathBuilder AddRequiredParameter( string name, - global::System.Collections.Generic.IEnumerable value, + global::System.Collections.Generic.IEnumerable value, string delimiter = ",", bool explode = false) { + var nonNullValues = global::System.Linq.Enumerable.OfType(value); if (explode) { - foreach (var item in value) + foreach (var item in nonNullValues) { AddRequiredParameter($"{name}", item); } @@ -79,7 +80,7 @@ public PathBuilder AddRequiredParameter( return this; } - AddRequiredParameter(name, string.Join(delimiter, value)); + AddRequiredParameter(name, string.Join(delimiter, nonNullValues)); return this; } @@ -138,7 +139,7 @@ public PathBuilder AddOptionalParameter( /// The current instance. public PathBuilder AddOptionalParameter( string name, - global::System.Collections.Generic.IEnumerable? value, + global::System.Collections.Generic.IEnumerable? value, string delimiter = ",", bool explode = false) {