diff --git a/src/libs/Soniox/Generated/Soniox.Models.ApiErrorMoreInfo.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ApiErrorMoreInfo.Json.g.cs
deleted file mode 100644
index 81cd3a3..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ApiErrorMoreInfo.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class ApiErrorMoreInfo
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.ApiErrorMoreInfo? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.ApiErrorMoreInfo),
- jsonSerializerContext) as global::Soniox.ApiErrorMoreInfo;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.ApiErrorMoreInfo? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ApiErrorMoreInfo? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ApiErrorMoreInfo),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.ApiErrorMoreInfo;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ApiErrorMoreInfo.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ApiErrorMoreInfo.g.cs
deleted file mode 100644
index 7071ea9..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ApiErrorMoreInfo.g.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Optional URL with additional information about this error. Points to the Soniox documentation
- /// for errors a developer can resolve via code or configuration.
- ///
- public sealed partial class ApiErrorMoreInfo
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTTSPayloadBitrate.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadBitrate.Json.g.cs
deleted file mode 100644
index 8e1d91e..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadBitrate.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTTSPayloadBitrate
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadBitrate? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTTSPayloadBitrate),
- jsonSerializerContext) as global::Soniox.CreateTTSPayloadBitrate;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadBitrate? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadBitrate? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadBitrate),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTTSPayloadBitrate;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadBitrate.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadBitrate.g.cs
deleted file mode 100644
index 7114194..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadBitrate.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Optional output bitrate in bits per second.
- ///
- public sealed partial class CreateTTSPayloadBitrate
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTTSPayloadClientReferenceId.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadClientReferenceId.Json.g.cs
deleted file mode 100644
index 29e73ef..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadClientReferenceId.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTTSPayloadClientReferenceId
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadClientReferenceId? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTTSPayloadClientReferenceId),
- jsonSerializerContext) as global::Soniox.CreateTTSPayloadClientReferenceId;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadClientReferenceId? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadClientReferenceId? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadClientReferenceId),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTTSPayloadClientReferenceId;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadClientReferenceId.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadClientReferenceId.g.cs
deleted file mode 100644
index 022573a..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadClientReferenceId.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Optional tracking identifier string. Does not need to be unique. Ignored if the request authenticates with a temporary API key.
- ///
- public sealed partial class CreateTTSPayloadClientReferenceId
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTTSPayloadReduceSilence.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadReduceSilence.Json.g.cs
deleted file mode 100644
index 6f16977..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadReduceSilence.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTTSPayloadReduceSilence
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadReduceSilence? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTTSPayloadReduceSilence),
- jsonSerializerContext) as global::Soniox.CreateTTSPayloadReduceSilence;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadReduceSilence? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadReduceSilence? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadReduceSilence),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTTSPayloadReduceSilence;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadReduceSilence.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadReduceSilence.g.cs
deleted file mode 100644
index 970d0ce..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadReduceSilence.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Optional. When `true`, shortens the pauses between words so the generated speech flows more naturally. Defaults to `false`. Only supported on models with `supports_silence_reduction` set to `true`; enabling it on any other model returns an `invalid_request` error.
- ///
- public sealed partial class CreateTTSPayloadReduceSilence
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTTSPayloadSampleRate.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSampleRate.Json.g.cs
deleted file mode 100644
index b9aa1ec..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSampleRate.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTTSPayloadSampleRate
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadSampleRate? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTTSPayloadSampleRate),
- jsonSerializerContext) as global::Soniox.CreateTTSPayloadSampleRate;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadSampleRate? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadSampleRate? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadSampleRate),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTTSPayloadSampleRate;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSampleRate.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSampleRate.g.cs
deleted file mode 100644
index 936d4c3..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSampleRate.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Optional output sample rate in Hz.
- ///
- public sealed partial class CreateTTSPayloadSampleRate
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTTSPayloadSpeed.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSpeed.Json.g.cs
deleted file mode 100644
index 4115995..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSpeed.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTTSPayloadSpeed
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadSpeed? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTTSPayloadSpeed),
- jsonSerializerContext) as global::Soniox.CreateTTSPayloadSpeed;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTTSPayloadSpeed? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadSpeed? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTTSPayloadSpeed),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTTSPayloadSpeed;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSpeed.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSpeed.g.cs
deleted file mode 100644
index 54ba6b4..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTTSPayloadSpeed.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Optional speaking rate of the generated speech, from `0.7` to `1.3`. `1.0` is the normal speed; lower values slow speech down and higher values speed it up. Defaults to `1.0`.
- ///
- public sealed partial class CreateTTSPayloadSpeed
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadClientReferenceId.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadClientReferenceId.Json.g.cs
deleted file mode 100644
index 7d91d2a..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadClientReferenceId.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTemporaryApiKeyPayloadClientReferenceId
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTemporaryApiKeyPayloadClientReferenceId? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTemporaryApiKeyPayloadClientReferenceId),
- jsonSerializerContext) as global::Soniox.CreateTemporaryApiKeyPayloadClientReferenceId;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTemporaryApiKeyPayloadClientReferenceId? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTemporaryApiKeyPayloadClientReferenceId? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTemporaryApiKeyPayloadClientReferenceId),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTemporaryApiKeyPayloadClientReferenceId;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadClientReferenceId.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadClientReferenceId.g.cs
deleted file mode 100644
index 2d53de5..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadClientReferenceId.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Optional tracking identifier string. Does not need to be unique.
- ///
- public sealed partial class CreateTemporaryApiKeyPayloadClientReferenceId
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds.Json.g.cs
deleted file mode 100644
index 3ef11b5..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds),
- jsonSerializerContext) as global::Soniox.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds.g.cs
deleted file mode 100644
index f7f7f3f..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Maximum connection duration in seconds for WebSocket and TTS HTTP streaming endpoints. If exceeded, the connection will be dropped. If not set, no limit is applied.
- ///
- public sealed partial class CreateTemporaryApiKeyPayloadMaxSessionDurationSeconds
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadSingleUse.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadSingleUse.Json.g.cs
deleted file mode 100644
index 54ca448..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadSingleUse.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTemporaryApiKeyPayloadSingleUse
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTemporaryApiKeyPayloadSingleUse? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTemporaryApiKeyPayloadSingleUse),
- jsonSerializerContext) as global::Soniox.CreateTemporaryApiKeyPayloadSingleUse;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTemporaryApiKeyPayloadSingleUse? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTemporaryApiKeyPayloadSingleUse? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTemporaryApiKeyPayloadSingleUse),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTemporaryApiKeyPayloadSingleUse;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadSingleUse.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadSingleUse.g.cs
deleted file mode 100644
index 2339d08..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTemporaryApiKeyPayloadSingleUse.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// If true, the temporary API key can be used only once.
- ///
- public sealed partial class CreateTemporaryApiKeyPayloadSingleUse
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadAudioUrl.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadAudioUrl.Json.g.cs
deleted file mode 100644
index b1bc7ef..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadAudioUrl.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadAudioUrl
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadAudioUrl? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadAudioUrl),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadAudioUrl;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadAudioUrl? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadAudioUrl? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadAudioUrl),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadAudioUrl;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadAudioUrl.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadAudioUrl.g.cs
deleted file mode 100644
index 323babd..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadAudioUrl.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// URL of the audio file to transcribe. Cannot be specified if `file_id` is specified.
- ///
- public sealed partial class CreateTranscriptionPayloadAudioUrl
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadClientReferenceId.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadClientReferenceId.Json.g.cs
deleted file mode 100644
index f651304..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadClientReferenceId.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadClientReferenceId
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadClientReferenceId? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadClientReferenceId),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadClientReferenceId;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadClientReferenceId? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadClientReferenceId? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadClientReferenceId),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadClientReferenceId;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadClientReferenceId.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadClientReferenceId.g.cs
deleted file mode 100644
index ebe65a2..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadClientReferenceId.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Optional tracking identifier string. Does not need to be unique.
- ///
- public sealed partial class CreateTranscriptionPayloadClientReferenceId
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableLanguageIdentification.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableLanguageIdentification.Json.g.cs
deleted file mode 100644
index 62adca9..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableLanguageIdentification.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadEnableLanguageIdentification
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadEnableLanguageIdentification? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadEnableLanguageIdentification),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadEnableLanguageIdentification;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadEnableLanguageIdentification? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadEnableLanguageIdentification? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadEnableLanguageIdentification),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadEnableLanguageIdentification;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableLanguageIdentification.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableLanguageIdentification.g.cs
deleted file mode 100644
index 1f63ca3..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableLanguageIdentification.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// When `true`, language is detected for each part of the transcription.
- ///
- public sealed partial class CreateTranscriptionPayloadEnableLanguageIdentification
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableSpeakerDiarization.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableSpeakerDiarization.Json.g.cs
deleted file mode 100644
index 76e2ed3..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableSpeakerDiarization.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadEnableSpeakerDiarization
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadEnableSpeakerDiarization? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadEnableSpeakerDiarization),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadEnableSpeakerDiarization;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadEnableSpeakerDiarization? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadEnableSpeakerDiarization? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadEnableSpeakerDiarization),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadEnableSpeakerDiarization;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableSpeakerDiarization.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableSpeakerDiarization.g.cs
deleted file mode 100644
index 8740fd3..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadEnableSpeakerDiarization.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// When `true`, speakers are identified and separated in the transcription output.
- ///
- public sealed partial class CreateTranscriptionPayloadEnableSpeakerDiarization
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadFileId.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadFileId.Json.g.cs
deleted file mode 100644
index 72ef5f3..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadFileId.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadFileId
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadFileId? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadFileId),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadFileId;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadFileId? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadFileId? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadFileId),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadFileId;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadFileId.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadFileId.g.cs
deleted file mode 100644
index 8ebe254..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadFileId.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// ID of the uploaded file to transcribe. Cannot be specified if `audio_url` is specified.
- ///
- public sealed partial class CreateTranscriptionPayloadFileId
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHints.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHints.Json.g.cs
deleted file mode 100644
index 0d24bb9..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHints.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadLanguageHints
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadLanguageHints? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadLanguageHints),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadLanguageHints;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadLanguageHints? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadLanguageHints? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadLanguageHints),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadLanguageHints;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHints.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHints.g.cs
deleted file mode 100644
index c656521..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHints.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Expected languages in the audio. If not specified, languages are automatically detected.
- ///
- public sealed partial class CreateTranscriptionPayloadLanguageHints
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHintsStrict.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHintsStrict.Json.g.cs
deleted file mode 100644
index c9aaead..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHintsStrict.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadLanguageHintsStrict
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadLanguageHintsStrict? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadLanguageHintsStrict),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadLanguageHintsStrict;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadLanguageHintsStrict? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadLanguageHintsStrict? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadLanguageHintsStrict),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadLanguageHintsStrict;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHintsStrict.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHintsStrict.g.cs
deleted file mode 100644
index 6c340c8..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadLanguageHintsStrict.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// When `true`, the model will rely more on language hints.
- ///
- public sealed partial class CreateTranscriptionPayloadLanguageHintsStrict
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderName.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderName.Json.g.cs
deleted file mode 100644
index 1aa8745..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderName.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadWebhookAuthHeaderName
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderName? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderName),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderName;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderName? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderName? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderName),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderName;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderName.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderName.g.cs
deleted file mode 100644
index 3da7e13..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderName.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Name of the authentication header sent with webhook notifications.
- ///
- public sealed partial class CreateTranscriptionPayloadWebhookAuthHeaderName
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderValue.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderValue.Json.g.cs
deleted file mode 100644
index 5c57cc3..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderValue.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadWebhookAuthHeaderValue
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderValue? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderValue),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderValue;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderValue? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderValue? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderValue),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadWebhookAuthHeaderValue;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderValue.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderValue.g.cs
deleted file mode 100644
index c401f37..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookAuthHeaderValue.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Authentication header value sent with webhook notifications.
- ///
- public sealed partial class CreateTranscriptionPayloadWebhookAuthHeaderValue
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookUrl.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookUrl.Json.g.cs
deleted file mode 100644
index 708e5eb..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookUrl.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class CreateTranscriptionPayloadWebhookUrl
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadWebhookUrl? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.CreateTranscriptionPayloadWebhookUrl),
- jsonSerializerContext) as global::Soniox.CreateTranscriptionPayloadWebhookUrl;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.CreateTranscriptionPayloadWebhookUrl? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadWebhookUrl? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.CreateTranscriptionPayloadWebhookUrl),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.CreateTranscriptionPayloadWebhookUrl;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookUrl.g.cs b/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookUrl.g.cs
deleted file mode 100644
index 6602706..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.CreateTranscriptionPayloadWebhookUrl.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// URL to receive webhook notifications when transcription is completed or fails.
- ///
- public sealed partial class CreateTranscriptionPayloadWebhookUrl
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.FileClientReferenceId.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.FileClientReferenceId.Json.g.cs
deleted file mode 100644
index 18ce76b..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.FileClientReferenceId.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class FileClientReferenceId
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.FileClientReferenceId? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.FileClientReferenceId),
- jsonSerializerContext) as global::Soniox.FileClientReferenceId;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.FileClientReferenceId? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.FileClientReferenceId? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.FileClientReferenceId),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.FileClientReferenceId;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.FileClientReferenceId.g.cs b/src/libs/Soniox/Generated/Soniox.Models.FileClientReferenceId.g.cs
deleted file mode 100644
index 9444d8b..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.FileClientReferenceId.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Tracking identifier string.
- ///
- public sealed partial class FileClientReferenceId
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetFilesCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetFilesCursor.Json.g.cs
deleted file mode 100644
index 5b9e52d..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetFilesCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetFilesCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetFilesCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetFilesCursor),
- jsonSerializerContext) as global::Soniox.GetFilesCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetFilesCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetFilesCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetFilesCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetFilesCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetFilesCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetFilesCursor.g.cs
deleted file mode 100644
index 6ee0525..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetFilesCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Pagination cursor for the next page of results.
- ///
- public sealed partial class GetFilesCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetFilesPayloadCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayloadCursor.Json.g.cs
deleted file mode 100644
index 379df7c..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayloadCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetFilesPayloadCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetFilesPayloadCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetFilesPayloadCursor),
- jsonSerializerContext) as global::Soniox.GetFilesPayloadCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetFilesPayloadCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetFilesPayloadCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetFilesPayloadCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetFilesPayloadCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayloadCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayloadCursor.g.cs
deleted file mode 100644
index 71191e0..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetFilesPayloadCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Pagination cursor for the next page of results.
- ///
- public sealed partial class GetFilesPayloadCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetFilesResponseNextPageCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetFilesResponseNextPageCursor.Json.g.cs
deleted file mode 100644
index 59e2042..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetFilesResponseNextPageCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetFilesResponseNextPageCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetFilesResponseNextPageCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetFilesResponseNextPageCursor),
- jsonSerializerContext) as global::Soniox.GetFilesResponseNextPageCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetFilesResponseNextPageCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetFilesResponseNextPageCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetFilesResponseNextPageCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetFilesResponseNextPageCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetFilesResponseNextPageCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetFilesResponseNextPageCursor.g.cs
deleted file mode 100644
index 8ce7577..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetFilesResponseNextPageCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// A pagination token that references the next page of results. When more data is available, this field contains a value to pass in the cursor parameter of a subsequent request. When null, no additional results are available.
- ///
- public sealed partial class GetFilesResponseNextPageCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetTranscriptionsCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCursor.Json.g.cs
deleted file mode 100644
index 51b8a48..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetTranscriptionsCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetTranscriptionsCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetTranscriptionsCursor),
- jsonSerializerContext) as global::Soniox.GetTranscriptionsCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetTranscriptionsCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetTranscriptionsCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetTranscriptionsCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetTranscriptionsCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCursor.g.cs
deleted file mode 100644
index fcee721..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Pagination cursor for the next page of results.
- ///
- public sealed partial class GetTranscriptionsCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetTranscriptionsPayloadCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayloadCursor.Json.g.cs
deleted file mode 100644
index 3ce43b6..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayloadCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetTranscriptionsPayloadCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetTranscriptionsPayloadCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetTranscriptionsPayloadCursor),
- jsonSerializerContext) as global::Soniox.GetTranscriptionsPayloadCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetTranscriptionsPayloadCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetTranscriptionsPayloadCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetTranscriptionsPayloadCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetTranscriptionsPayloadCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayloadCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayloadCursor.g.cs
deleted file mode 100644
index 0ddfb24..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsPayloadCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Pagination cursor for the next page of results.
- ///
- public sealed partial class GetTranscriptionsPayloadCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetTranscriptionsResponseNextPageCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponseNextPageCursor.Json.g.cs
deleted file mode 100644
index f7a7b1d..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponseNextPageCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetTranscriptionsResponseNextPageCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetTranscriptionsResponseNextPageCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetTranscriptionsResponseNextPageCursor),
- jsonSerializerContext) as global::Soniox.GetTranscriptionsResponseNextPageCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetTranscriptionsResponseNextPageCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetTranscriptionsResponseNextPageCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetTranscriptionsResponseNextPageCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetTranscriptionsResponseNextPageCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponseNextPageCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponseNextPageCursor.g.cs
deleted file mode 100644
index 6c54912..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetTranscriptionsResponseNextPageCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// A pagination token that references the next page of results. When more data is available, this field contains a value to pass in the cursor parameter of a subsequent request. When null, no additional results are available.
- ///
- public sealed partial class GetTranscriptionsResponseNextPageCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetUsageLogsCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsCursor.Json.g.cs
deleted file mode 100644
index 6a2ee08..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetUsageLogsCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetUsageLogsCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetUsageLogsCursor),
- jsonSerializerContext) as global::Soniox.GetUsageLogsCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetUsageLogsCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetUsageLogsCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetUsageLogsCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetUsageLogsCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsCursor.g.cs
deleted file mode 100644
index b5e5642..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Pagination cursor for the next page of results.
- ///
- public sealed partial class GetUsageLogsCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadCursor.Json.g.cs
deleted file mode 100644
index b628793..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetUsageLogsPayloadCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetUsageLogsPayloadCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetUsageLogsPayloadCursor),
- jsonSerializerContext) as global::Soniox.GetUsageLogsPayloadCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetUsageLogsPayloadCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetUsageLogsPayloadCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetUsageLogsPayloadCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetUsageLogsPayloadCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadCursor.g.cs
deleted file mode 100644
index 17b653b..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsPayloadCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Pagination cursor for the next page of results.
- ///
- public sealed partial class GetUsageLogsPayloadCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetUsageLogsResponseNextPageCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponseNextPageCursor.Json.g.cs
deleted file mode 100644
index 7ffd390..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponseNextPageCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetUsageLogsResponseNextPageCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetUsageLogsResponseNextPageCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetUsageLogsResponseNextPageCursor),
- jsonSerializerContext) as global::Soniox.GetUsageLogsResponseNextPageCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetUsageLogsResponseNextPageCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetUsageLogsResponseNextPageCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetUsageLogsResponseNextPageCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetUsageLogsResponseNextPageCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponseNextPageCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponseNextPageCursor.g.cs
deleted file mode 100644
index 84e1e11..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetUsageLogsResponseNextPageCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// A pagination token that references the next page of results. When more data is available, this field contains a value to pass in the cursor parameter of a subsequent request. When null, no additional results are available.
- ///
- public sealed partial class GetUsageLogsResponseNextPageCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetVoicesCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCursor.Json.g.cs
deleted file mode 100644
index 1978f19..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetVoicesCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetVoicesCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetVoicesCursor),
- jsonSerializerContext) as global::Soniox.GetVoicesCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetVoicesCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetVoicesCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetVoicesCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetVoicesCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCursor.g.cs
deleted file mode 100644
index 03fe6ec..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Pagination cursor for the next page of results.
- ///
- public sealed partial class GetVoicesCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.GetVoicesResponseNextPageCursor.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponseNextPageCursor.Json.g.cs
deleted file mode 100644
index a94a83d..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponseNextPageCursor.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class GetVoicesResponseNextPageCursor
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.GetVoicesResponseNextPageCursor? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.GetVoicesResponseNextPageCursor),
- jsonSerializerContext) as global::Soniox.GetVoicesResponseNextPageCursor;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.GetVoicesResponseNextPageCursor? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetVoicesResponseNextPageCursor? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.GetVoicesResponseNextPageCursor),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.GetVoicesResponseNextPageCursor;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponseNextPageCursor.g.cs b/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponseNextPageCursor.g.cs
deleted file mode 100644
index 8801c7b..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.GetVoicesResponseNextPageCursor.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// A pagination token that references the next page of results. When more data is available, this field contains a value to pass in the cursor parameter of a subsequent request. When null, no additional results are available.
- ///
- public sealed partial class GetVoicesResponseNextPageCursor
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.Json.g.cs
deleted file mode 100644
index 5d915ce..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class LimitValuesTranscribeConcurrent
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.LimitValuesTranscribeConcurrent? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.LimitValuesTranscribeConcurrent),
- jsonSerializerContext) as global::Soniox.LimitValuesTranscribeConcurrent;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.LimitValuesTranscribeConcurrent? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.LimitValuesTranscribeConcurrent? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.LimitValuesTranscribeConcurrent),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.LimitValuesTranscribeConcurrent;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.g.cs b/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.g.cs
deleted file mode 100644
index df0b42e..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTranscribeConcurrent.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- ///
- ///
- public sealed partial class LimitValuesTranscribeConcurrent
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.Json.g.cs
deleted file mode 100644
index d5e1213..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class LimitValuesTtsConcurrent
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.LimitValuesTtsConcurrent? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.LimitValuesTtsConcurrent),
- jsonSerializerContext) as global::Soniox.LimitValuesTtsConcurrent;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.LimitValuesTtsConcurrent? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.LimitValuesTtsConcurrent? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.LimitValuesTtsConcurrent),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.LimitValuesTtsConcurrent;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.g.cs b/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.g.cs
deleted file mode 100644
index 14c19ef..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.LimitValuesTtsConcurrent.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- ///
- ///
- public sealed partial class LimitValuesTtsConcurrent
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.ModelAliasedModelId.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ModelAliasedModelId.Json.g.cs
deleted file mode 100644
index a101e1f..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ModelAliasedModelId.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class ModelAliasedModelId
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.ModelAliasedModelId? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.ModelAliasedModelId),
- jsonSerializerContext) as global::Soniox.ModelAliasedModelId;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.ModelAliasedModelId? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ModelAliasedModelId? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ModelAliasedModelId),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.ModelAliasedModelId;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ModelAliasedModelId.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ModelAliasedModelId.g.cs
deleted file mode 100644
index aa0e4a1..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ModelAliasedModelId.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// If this is an alias, the id of the aliased model.
- ///
- public sealed partial class ModelAliasedModelId
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.ModelContextVersion.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ModelContextVersion.Json.g.cs
deleted file mode 100644
index 593d084..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ModelContextVersion.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class ModelContextVersion
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.ModelContextVersion? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.ModelContextVersion),
- jsonSerializerContext) as global::Soniox.ModelContextVersion;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.ModelContextVersion? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ModelContextVersion? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ModelContextVersion),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.ModelContextVersion;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ModelContextVersion.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ModelContextVersion.g.cs
deleted file mode 100644
index 9668e14..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ModelContextVersion.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// Version of context supported.
- ///
- public sealed partial class ModelContextVersion
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.ModelOneWayTranslation.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ModelOneWayTranslation.Json.g.cs
deleted file mode 100644
index 8051c40..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ModelOneWayTranslation.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class ModelOneWayTranslation
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.ModelOneWayTranslation? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.ModelOneWayTranslation),
- jsonSerializerContext) as global::Soniox.ModelOneWayTranslation;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.ModelOneWayTranslation? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ModelOneWayTranslation? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ModelOneWayTranslation),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.ModelOneWayTranslation;
- }
-
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Soniox/Generated/Soniox.Models.ModelOneWayTranslation.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ModelOneWayTranslation.g.cs
deleted file mode 100644
index dbc752e..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ModelOneWayTranslation.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Soniox
-{
- ///
- /// When contains string 'all_languages', any laguage from languages can be used
- ///
- public sealed partial class ModelOneWayTranslation
- {
-
- ///
- /// 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/Soniox/Generated/Soniox.Models.ModelTwoWayTranslation.Json.g.cs b/src/libs/Soniox/Generated/Soniox.Models.ModelTwoWayTranslation.Json.g.cs
deleted file mode 100644
index 1835cdd..0000000
--- a/src/libs/Soniox/Generated/Soniox.Models.ModelTwoWayTranslation.Json.g.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-#nullable enable
-
-namespace Soniox
-{
- public sealed partial class ModelTwoWayTranslation
- {
- ///
- /// 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::Soniox.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::Soniox.SourceGenerationContext.Default);
- }
-
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Soniox.ModelTwoWayTranslation? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Soniox.ModelTwoWayTranslation),
- jsonSerializerContext) as global::Soniox.ModelTwoWayTranslation;
- }
-
- ///
- /// Deserializes a JSON string using the generated default JsonSerializerContext.
- ///
- public static global::Soniox.ModelTwoWayTranslation? FromJson(
- string json)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ModelTwoWayTranslation? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- if (jsonSerializerOptions is null)
- {
- return FromJson(
- json,
- global::Soniox.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::Soniox.ModelTwoWayTranslation),
- jsonSerializerContext).ConfigureAwait(false)) as global::Soniox.ModelTwoWayTranslation;
- }
-
- ///