diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.SystemBuiltinInfoExecution.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.SystemBuiltinInfoExecution.g.cs
new file mode 100644
index 0000000..221553c
--- /dev/null
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.SystemBuiltinInfoExecution.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace Speechify.JsonConverters
+{
+ ///
+ public sealed class SystemBuiltinInfoExecutionJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Speechify.SystemBuiltinInfoExecution Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Speechify.SystemBuiltinInfoExecutionExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Speechify.SystemBuiltinInfoExecution)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Speechify.SystemBuiltinInfoExecution);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Speechify.SystemBuiltinInfoExecution value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::Speechify.SystemBuiltinInfoExecutionExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/Speechify/Generated/Speechify.JsonConverters.SystemBuiltinInfoExecutionNullable.g.cs b/src/libs/Speechify/Generated/Speechify.JsonConverters.SystemBuiltinInfoExecutionNullable.g.cs
new file mode 100644
index 0000000..7155b65
--- /dev/null
+++ b/src/libs/Speechify/Generated/Speechify.JsonConverters.SystemBuiltinInfoExecutionNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace Speechify.JsonConverters
+{
+ ///
+ public sealed class SystemBuiltinInfoExecutionNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::Speechify.SystemBuiltinInfoExecution? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::Speechify.SystemBuiltinInfoExecutionExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::Speechify.SystemBuiltinInfoExecution)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::Speechify.SystemBuiltinInfoExecution?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::Speechify.SystemBuiltinInfoExecution? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::Speechify.SystemBuiltinInfoExecutionExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/Speechify/Generated/Speechify.JsonSerializerContext.g.cs b/src/libs/Speechify/Generated/Speechify.JsonSerializerContext.g.cs
index 834a193..3426b5e 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonSerializerContext.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonSerializerContext.g.cs
@@ -254,8 +254,10 @@ namespace Speechify
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentRunError))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentRunIncompleteReason), TypeInfoPropertyName = "AgentRunIncompleteReason2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentRunUsageModelsItems))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentRunUsageToolsItems))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentRunUsage))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PendingActionDefaultDecision), TypeInfoPropertyName = "PendingActionDefaultDecision2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PendingAction))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AgentRun))]
@@ -410,6 +412,7 @@ namespace Speechify
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.TestWebhookConnectionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.WebhookProbeResult))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.SystemBuiltinInfoExecution), TypeInfoPropertyName = "SystemBuiltinInfoExecution2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.SystemBuiltinInfo))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ListSystemBuiltinsResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
@@ -511,9 +514,6 @@ namespace Speechify
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ImportPhoneNumberRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PurchasedPhoneNumberProvider), TypeInfoPropertyName = "PurchasedPhoneNumberProvider2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.AvailablePhoneNumber))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.SearchAvailablePhoneNumbersResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.IntendedUseMarketingOrInformational), TypeInfoPropertyName = "IntendedUseMarketingOrInformational2")]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -526,6 +526,9 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
Converters = new global::System.Type[]
{
})]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.SearchAvailablePhoneNumbersResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.IntendedUseMarketingOrInformational), TypeInfoPropertyName = "IntendedUseMarketingOrInformational2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.IntendedUse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.PurchasePhoneNumberRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.UpdatePhoneNumberRequest))]
@@ -839,6 +842,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.CreateToolRequestConfig?), TypeInfoPropertyName = "NullableCreateToolRequestConfig2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.UpdateToolRequestConfig?), TypeInfoPropertyName = "NullableUpdateToolRequestConfig2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.McpProbeErrorDetailsStage?), TypeInfoPropertyName = "NullableMcpProbeErrorDetailsStage2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.SystemBuiltinInfoExecution?), TypeInfoPropertyName = "NullableSystemBuiltinInfoExecution2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.TestType?), TypeInfoPropertyName = "NullableTestType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.SimulationMessageRole?), TypeInfoPropertyName = "NullableSimulationMessageRole2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Speechify.ParameterCheckMode?), TypeInfoPropertyName = "NullableParameterCheckMode2")]
@@ -942,6 +946,7 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))]
@@ -1432,6 +1437,10 @@ public override bool CanConvert(global::System.Type typeToConvert)
|| typeToConvert == typeof(global::Speechify.McpProbeErrorDetailsStage?)
+ || typeToConvert == typeof(global::Speechify.SystemBuiltinInfoExecution)
+
+ || typeToConvert == typeof(global::Speechify.SystemBuiltinInfoExecution?)
+
|| typeToConvert == typeof(global::Speechify.TestType)
|| typeToConvert == typeof(global::Speechify.TestType?)
@@ -2517,6 +2526,16 @@ public override bool CanConvert(global::System.Type typeToConvert)
return new global::Speechify.JsonConverters.McpProbeErrorDetailsStageNullableJsonConverter();
}
+ if (typeToConvert == typeof(global::Speechify.SystemBuiltinInfoExecution))
+ {
+ return new global::Speechify.JsonConverters.SystemBuiltinInfoExecutionJsonConverter();
+ }
+
+ if (typeToConvert == typeof(global::Speechify.SystemBuiltinInfoExecution?))
+ {
+ return new global::Speechify.JsonConverters.SystemBuiltinInfoExecutionNullableJsonConverter();
+ }
+
if (typeToConvert == typeof(global::Speechify.TestType))
{
return new global::Speechify.JsonConverters.TestTypeJsonConverter();
diff --git a/src/libs/Speechify/Generated/Speechify.JsonSerializerContextTypes.g.cs b/src/libs/Speechify/Generated/Speechify.JsonSerializerContextTypes.g.cs
index 964eb7e..d6d678b 100644
--- a/src/libs/Speechify/Generated/Speechify.JsonSerializerContextTypes.g.cs
+++ b/src/libs/Speechify/Generated/Speechify.JsonSerializerContextTypes.g.cs
@@ -981,1895 +981,1907 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::Speechify.AgentRunUsage? Type237 { get; set; }
+ public global::Speechify.AgentRunUsageToolsItems? Type237 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type238 { get; set; }
+ public global::Speechify.AgentRunUsage? Type238 { get; set; }
///
///
///
- public global::Speechify.PendingActionDefaultDecision? Type239 { get; set; }
+ public global::System.Collections.Generic.IList? Type239 { get; set; }
///
///
///
- public global::Speechify.PendingAction? Type240 { get; set; }
+ public global::System.Collections.Generic.IList? Type240 { get; set; }
///
///
///
- public global::Speechify.AgentRun? Type241 { get; set; }
+ public global::Speechify.PendingActionDefaultDecision? Type241 { get; set; }
///
///
///
- public global::Speechify.V1AgentsAgentIdRunsGetParametersStatus? Type242 { get; set; }
+ public global::Speechify.PendingAction? Type242 { get; set; }
///
///
///
- public global::Speechify.ListAgentRunsResponse? Type243 { get; set; }
+ public global::Speechify.AgentRun? Type243 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type244 { get; set; }
+ public global::Speechify.V1AgentsAgentIdRunsGetParametersStatus? Type244 { get; set; }
///
///
///
- public global::Speechify.V1AgentsRunsGetParametersStatus? Type245 { get; set; }
+ public global::Speechify.ListAgentRunsResponse? Type245 { get; set; }
///
///
///
- public global::Speechify.SubmitAgentRunRequestDecision? Type246 { get; set; }
+ public global::System.Collections.Generic.IList? Type246 { get; set; }
///
///
///
- public global::Speechify.SubmitAgentRunRequest? Type247 { get; set; }
+ public global::Speechify.V1AgentsRunsGetParametersStatus? Type247 { get; set; }
///
///
///
- public global::Speechify.AgentRunStepKind? Type248 { get; set; }
+ public global::Speechify.SubmitAgentRunRequestDecision? Type248 { get; set; }
///
///
///
- public global::Speechify.RunStepDelegationChildStatus? Type249 { get; set; }
+ public global::Speechify.SubmitAgentRunRequest? Type249 { get; set; }
///
///
///
- public global::Speechify.RunStepDelegation? Type250 { get; set; }
+ public global::Speechify.AgentRunStepKind? Type250 { get; set; }
///
///
///
- public global::Speechify.AgentRunStep? Type251 { get; set; }
+ public global::Speechify.RunStepDelegationChildStatus? Type251 { get; set; }
///
///
///
- public global::Speechify.ListAgentRunStepsResponse? Type252 { get; set; }
+ public global::Speechify.RunStepDelegation? Type252 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type253 { get; set; }
+ public global::Speechify.AgentRunStep? Type253 { get; set; }
///
///
///
- public global::Speechify.AgentRunStepAddedEventKind? Type254 { get; set; }
+ public global::Speechify.ListAgentRunStepsResponse? Type254 { get; set; }
///
///
///
- public global::Speechify.AgentRunStatusChangedEventStatus? Type255 { get; set; }
+ public global::System.Collections.Generic.IList? Type255 { get; set; }
///
///
///
- public global::Speechify.AgentRunEndedEventStatus? Type256 { get; set; }
+ public global::Speechify.AgentRunStepAddedEventKind? Type256 { get; set; }
///
///
///
- public global::Speechify.AgentRunEndedEventOutput? Type257 { get; set; }
+ public global::Speechify.AgentRunStatusChangedEventStatus? Type257 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEvent? Type258 { get; set; }
+ public global::Speechify.AgentRunEndedEventStatus? Type258 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEventVariant1? Type259 { get; set; }
+ public global::Speechify.AgentRunEndedEventOutput? Type259 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEventVariant1Type? Type260 { get; set; }
+ public global::Speechify.AgentRunStreamEvent? Type260 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEventVariant2? Type261 { get; set; }
+ public global::Speechify.AgentRunStreamEventVariant1? Type261 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEventVariant2Type? Type262 { get; set; }
+ public global::Speechify.AgentRunStreamEventVariant1Type? Type262 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEventVariant3? Type263 { get; set; }
+ public global::Speechify.AgentRunStreamEventVariant2? Type263 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEventVariant3Type? Type264 { get; set; }
+ public global::Speechify.AgentRunStreamEventVariant2Type? Type264 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEventDiscriminator? Type265 { get; set; }
+ public global::Speechify.AgentRunStreamEventVariant3? Type265 { get; set; }
///
///
///
- public global::Speechify.AgentRunStreamEventDiscriminatorType? Type266 { get; set; }
+ public global::Speechify.AgentRunStreamEventVariant3Type? Type266 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseInjection? Type267 { get; set; }
+ public global::Speechify.AgentRunStreamEventDiscriminator? Type267 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBase? Type268 { get; set; }
+ public global::Speechify.AgentRunStreamEventDiscriminatorType? Type268 { get; set; }
///
///
///
- public global::Speechify.ListKnowledgeBasesResponse? Type269 { get; set; }
+ public global::Speechify.KnowledgeBaseInjection? Type269 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type270 { get; set; }
+ public global::Speechify.KnowledgeBase? Type270 { get; set; }
///
///
///
- public global::Speechify.CreateKnowledgeBaseRequest? Type271 { get; set; }
+ public global::Speechify.ListKnowledgeBasesResponse? Type271 { get; set; }
///
///
///
- public global::Speechify.SearchKnowledgeBasesRequest? Type272 { get; set; }
+ public global::System.Collections.Generic.IList? Type272 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseSearchHit? Type273 { get; set; }
+ public global::Speechify.CreateKnowledgeBaseRequest? Type273 { get; set; }
///
///
///
- public global::Speechify.SearchKnowledgeBasesResponse? Type274 { get; set; }
+ public global::Speechify.SearchKnowledgeBasesRequest? Type274 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type275 { get; set; }
+ public global::Speechify.KnowledgeBaseSearchHit? Type275 { get; set; }
///
///
///
- public global::Speechify.UpdateKnowledgeBaseRequest? Type276 { get; set; }
+ public global::Speechify.SearchKnowledgeBasesResponse? Type276 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseCoverageHealth? Type277 { get; set; }
+ public global::System.Collections.Generic.IList? Type277 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseCoverageGap? Type278 { get; set; }
+ public global::Speechify.UpdateKnowledgeBaseRequest? Type278 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseDocumentSourceKind? Type279 { get; set; }
+ public global::Speechify.KnowledgeBaseCoverageHealth? Type279 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseCoverageDocument? Type280 { get; set; }
+ public global::Speechify.KnowledgeBaseCoverageGap? Type280 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseCoverage? Type281 { get; set; }
+ public global::Speechify.KnowledgeBaseDocumentSourceKind? Type281 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type282 { get; set; }
+ public global::Speechify.KnowledgeBaseCoverageDocument? Type282 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type283 { get; set; }
+ public global::Speechify.KnowledgeBaseCoverage? Type283 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseEvalCase? Type284 { get; set; }
+ public global::System.Collections.Generic.IList? Type284 { get; set; }
///
///
///
- public global::Speechify.ListKnowledgeBaseEvalCasesResponse? Type285 { get; set; }
+ public global::System.Collections.Generic.IList? Type285 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type286 { get; set; }
+ public global::Speechify.KnowledgeBaseEvalCase? Type286 { get; set; }
///
///
///
- public global::Speechify.CreateKnowledgeBaseEvalCaseRequest? Type287 { get; set; }
+ public global::Speechify.ListKnowledgeBaseEvalCasesResponse? Type287 { get; set; }
///
///
///
- public global::Speechify.UpdateKnowledgeBaseEvalCaseRequest? Type288 { get; set; }
+ public global::System.Collections.Generic.IList? Type288 { get; set; }
///
///
///
- public global::Speechify.JobStatus? Type289 { get; set; }
+ public global::Speechify.CreateKnowledgeBaseEvalCaseRequest? Type289 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseEvaluationResults? Type290 { get; set; }
+ public global::Speechify.UpdateKnowledgeBaseEvalCaseRequest? Type290 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseEvaluationMetrics? Type291 { get; set; }
+ public global::Speechify.JobStatus? Type291 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseEvaluation? Type292 { get; set; }
+ public global::Speechify.KnowledgeBaseEvaluationResults? Type292 { get; set; }
///
///
///
- public global::Speechify.ListKnowledgeBaseEvaluationsResponse? Type293 { get; set; }
+ public global::Speechify.KnowledgeBaseEvaluationMetrics? Type293 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type294 { get; set; }
+ public global::Speechify.KnowledgeBaseEvaluation? Type294 { get; set; }
///
///
///
- public global::Speechify.StartKnowledgeBaseEvaluationRequest? Type295 { get; set; }
+ public global::Speechify.ListKnowledgeBaseEvaluationsResponse? Type295 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseEvaluationHit? Type296 { get; set; }
+ public global::System.Collections.Generic.IList? Type296 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseEvaluationResult? Type297 { get; set; }
+ public global::Speechify.StartKnowledgeBaseEvaluationRequest? Type297 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type298 { get; set; }
+ public global::Speechify.KnowledgeBaseEvaluationHit? Type298 { get; set; }
///
///
///
- public global::Speechify.ListKnowledgeBaseEvaluationResultsResponse? Type299 { get; set; }
+ public global::Speechify.KnowledgeBaseEvaluationResult? Type299 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type300 { get; set; }
+ public global::System.Collections.Generic.IList? Type300 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseDocumentInjectionMode? Type301 { get; set; }
+ public global::Speechify.ListKnowledgeBaseEvaluationResultsResponse? Type301 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseDocumentStatus? Type302 { get; set; }
+ public global::System.Collections.Generic.IList? Type302 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseDocument? Type303 { get; set; }
+ public global::Speechify.KnowledgeBaseDocumentInjectionMode? Type303 { get; set; }
///
///
///
- public global::Speechify.ListKnowledgeBaseDocumentsResponse? Type304 { get; set; }
+ public global::Speechify.KnowledgeBaseDocumentStatus? Type304 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type305 { get; set; }
+ public global::Speechify.KnowledgeBaseDocument? Type305 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseDocumentDetailInjectionMode? Type306 { get; set; }
+ public global::Speechify.ListKnowledgeBaseDocumentsResponse? Type306 { get; set; }
///
///
///
- public global::Speechify.DependentAgent? Type307 { get; set; }
+ public global::System.Collections.Generic.IList? Type307 { get; set; }
///
///
///
- public global::Speechify.RefreshConfig? Type308 { get; set; }
+ public global::Speechify.KnowledgeBaseDocumentDetailInjectionMode? Type308 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseDocumentDetail? Type309 { get; set; }
+ public global::Speechify.DependentAgent? Type309 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type310 { get; set; }
+ public global::Speechify.RefreshConfig? Type310 { get; set; }
///
///
///
- public global::Speechify.V1AgentsKnowledgeBasesKbIdDocumentsDocumentIdPatchRequestBodyContentApplicationJsonSchemaInjectionMode? Type311 { get; set; }
+ public global::Speechify.KnowledgeBaseDocumentDetail? Type311 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseChunk? Type312 { get; set; }
+ public global::System.Collections.Generic.IList? Type312 { get; set; }
///
///
///
- public global::Speechify.ListKnowledgeBaseChunksResponse? Type313 { get; set; }
+ public global::Speechify.V1AgentsKnowledgeBasesKbIdDocumentsDocumentIdPatchRequestBodyContentApplicationJsonSchemaInjectionMode? Type313 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type314 { get; set; }
+ public global::Speechify.KnowledgeBaseChunk? Type314 { get; set; }
///
///
///
- public global::Speechify.CreateCrawlImportRequest? Type315 { get; set; }
+ public global::Speechify.ListKnowledgeBaseChunksResponse? Type315 { get; set; }
///
///
///
- public global::Speechify.ImportJobKind? Type316 { get; set; }
+ public global::System.Collections.Generic.IList? Type316 { get; set; }
///
///
///
- public global::Speechify.ImportJob? Type317 { get; set; }
+ public global::Speechify.CreateCrawlImportRequest? Type317 { get; set; }
///
///
///
- public global::Speechify.CreateSitemapImportRequest? Type318 { get; set; }
+ public global::Speechify.ImportJobKind? Type318 { get; set; }
///
///
///
- public global::Speechify.CreateTextDocumentRequest? Type319 { get; set; }
+ public global::Speechify.ImportJob? Type319 { get; set; }
///
///
///
- public global::Speechify.CreateURLDocumentRequest? Type320 { get; set; }
+ public global::Speechify.CreateSitemapImportRequest? Type320 { get; set; }
///
///
///
- public global::Speechify.CreateURLBatchImportRequest? Type321 { get; set; }
+ public global::Speechify.CreateTextDocumentRequest? Type321 { get; set; }
///
///
///
- public global::Speechify.BatchDeleteDocumentsRequest? Type322 { get; set; }
+ public global::Speechify.CreateURLDocumentRequest? Type322 { get; set; }
///
///
///
- public global::Speechify.BatchMoveDocumentsRequest? Type323 { get; set; }
+ public global::Speechify.CreateURLBatchImportRequest? Type323 { get; set; }
///
///
///
- public global::Speechify.BatchMoveDocumentsResponse? Type324 { get; set; }
+ public global::Speechify.BatchDeleteDocumentsRequest? Type324 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type325 { get; set; }
+ public global::Speechify.BatchMoveDocumentsRequest? Type325 { get; set; }
///
///
///
- public global::Speechify.UpdateRefreshConfigRequest? Type326 { get; set; }
+ public global::Speechify.BatchMoveDocumentsResponse? Type326 { get; set; }
///
///
///
- public global::Speechify.RefreshHistoryEntryStatus? Type327 { get; set; }
+ public global::System.Collections.Generic.IList? Type327 { get; set; }
///
///
///
- public global::Speechify.RefreshHistoryEntry? Type328 { get; set; }
+ public global::Speechify.UpdateRefreshConfigRequest? Type328 { get; set; }
///
///
///
- public global::Speechify.ListRefreshHistoryResponse? Type329 { get; set; }
+ public global::Speechify.RefreshHistoryEntryStatus? Type329 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type330 { get; set; }
+ public global::Speechify.RefreshHistoryEntry? Type330 { get; set; }
///
///
///
- public global::Speechify.KnowledgeBaseFolder? Type331 { get; set; }
+ public global::Speechify.ListRefreshHistoryResponse? Type331 { get; set; }
///
///
///
- public global::Speechify.ListKnowledgeBaseFoldersResponse? Type332 { get; set; }
+ public global::System.Collections.Generic.IList? Type332 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type333 { get; set; }
+ public global::Speechify.KnowledgeBaseFolder? Type333 { get; set; }
///
///
///
- public global::Speechify.CreateFolderRequest? Type334 { get; set; }
+ public global::Speechify.ListKnowledgeBaseFoldersResponse? Type334 { get; set; }
///
///
///
- public global::Speechify.UpdateFolderRequest? Type335 { get; set; }
+ public global::System.Collections.Generic.IList? Type335 { get; set; }
///
///
///
- public global::Speechify.ListImportJobsResponse? Type336 { get; set; }
+ public global::Speechify.CreateFolderRequest? Type336 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type337 { get; set; }
+ public global::Speechify.UpdateFolderRequest? Type337 { get; set; }
///
///
///
- public global::Speechify.AttachedKnowledgeBasesResponseInjection? Type338 { get; set; }
+ public global::Speechify.ListImportJobsResponse? Type338 { get; set; }
///
///
///
- public global::Speechify.AttachedKnowledgeBasesResponse? Type339 { get; set; }
+ public global::System.Collections.Generic.IList? Type339 { get; set; }
///
///
///
- public global::Speechify.ToolKind? Type340 { get; set; }
+ public global::Speechify.AttachedKnowledgeBasesResponseInjection? Type340 { get; set; }
///
///
///
- public global::Speechify.ToolParamType? Type341 { get; set; }
+ public global::Speechify.AttachedKnowledgeBasesResponse? Type341 { get; set; }
///
///
///
- public global::Speechify.ToolParam? Type342 { get; set; }
+ public global::Speechify.ToolKind? Type342 { get; set; }
///
///
///
- public global::Speechify.BuiltinToolConfig? Type343 { get; set; }
+ public global::Speechify.ToolParamType? Type343 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type344 { get; set; }
+ public global::Speechify.ToolParam? Type344 { get; set; }
///
///
///
- public global::Speechify.WebhookToolConfigMethod? Type345 { get; set; }
+ public global::Speechify.BuiltinToolConfig? Type345 { get; set; }
///
///
///
- public global::Speechify.LongRunningToolConfigWaitAudioPreset? Type346 { get; set; }
+ public global::System.Collections.Generic.IList? Type346 { get; set; }
///
///
///
- public global::Speechify.LongRunningToolConfigWaitAudio? Type347 { get; set; }
+ public global::Speechify.WebhookToolConfigMethod? Type347 { get; set; }
///
///
///
- public global::Speechify.LongRunningToolConfigOnDuplicate? Type348 { get; set; }
+ public global::Speechify.LongRunningToolConfigWaitAudioPreset? Type348 { get; set; }
///
///
///
- public global::Speechify.LongRunningToolConfig? Type349 { get; set; }
+ public global::Speechify.LongRunningToolConfigWaitAudio? Type349 { get; set; }
///
///
///
- public global::Speechify.WebhookToolConfig? Type350 { get; set; }
+ public global::Speechify.LongRunningToolConfigOnDuplicate? Type350 { get; set; }
///
///
///
- public global::Speechify.ClientToolConfig? Type351 { get; set; }
+ public global::Speechify.LongRunningToolConfig? Type351 { get; set; }
///
///
///
- public global::Speechify.MCPTransport? Type352 { get; set; }
+ public global::Speechify.WebhookToolConfig? Type352 { get; set; }
///
///
///
- public global::Speechify.MCPAuth? Type353 { get; set; }
+ public global::Speechify.ClientToolConfig? Type353 { get; set; }
///
///
///
- public global::Speechify.MCPAuthVariant1? Type354 { get; set; }
+ public global::Speechify.MCPTransport? Type354 { get; set; }
///
///
///
- public global::Speechify.MCPAuthVariant1Type? Type355 { get; set; }
+ public global::Speechify.MCPAuth? Type355 { get; set; }
///
///
///
- public global::Speechify.MCPAuthVariant2? Type356 { get; set; }
+ public global::Speechify.MCPAuthVariant1? Type356 { get; set; }
///
///
///
- public global::Speechify.MCPAuthVariant2Type? Type357 { get; set; }
+ public global::Speechify.MCPAuthVariant1Type? Type357 { get; set; }
///
///
///
- public global::Speechify.MCPAuthVariant3? Type358 { get; set; }
+ public global::Speechify.MCPAuthVariant2? Type358 { get; set; }
///
///
///
- public global::Speechify.MCPAuthVariant3Type? Type359 { get; set; }
+ public global::Speechify.MCPAuthVariant2Type? Type359 { get; set; }
///
///
///
- public global::Speechify.MCPAuthDiscriminator? Type360 { get; set; }
+ public global::Speechify.MCPAuthVariant3? Type360 { get; set; }
///
///
///
- public global::Speechify.MCPAuthDiscriminatorType? Type361 { get; set; }
+ public global::Speechify.MCPAuthVariant3Type? Type361 { get; set; }
///
///
///
- public global::Speechify.ToolActionClass? Type362 { get; set; }
+ public global::Speechify.MCPAuthDiscriminator? Type362 { get; set; }
///
///
///
- public global::Speechify.MCPToolConfig? Type363 { get; set; }
+ public global::Speechify.MCPAuthDiscriminatorType? Type363 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type364 { get; set; }
+ public global::Speechify.ToolActionClass? Type364 { get; set; }
///
///
///
- public global::Speechify.AgentToolConfig? Type365 { get; set; }
+ public global::Speechify.MCPToolConfig? Type365 { get; set; }
///
///
///
- public global::Speechify.ToolApprovalClass? Type366 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type366 { get; set; }
///
///
///
- public global::Speechify.AgentTool? Type367 { get; set; }
+ public global::Speechify.AgentToolConfig? Type367 { get; set; }
///
///
///
- public global::Speechify.ListAgentToolsResponse? Type368 { get; set; }
+ public global::Speechify.ToolApprovalClass? Type368 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type369 { get; set; }
+ public global::Speechify.AgentTool? Type369 { get; set; }
///
///
///
- public global::Speechify.CreateAgentToolRequestConfig? Type370 { get; set; }
+ public global::Speechify.ListAgentToolsResponse? Type370 { get; set; }
///
///
///
- public global::Speechify.CreateAgentToolRequest? Type371 { get; set; }
+ public global::System.Collections.Generic.IList? Type371 { get; set; }
///
///
///
- public global::Speechify.UpdateAgentToolRequestConfig? Type372 { get; set; }
+ public global::Speechify.CreateAgentToolRequestConfig? Type372 { get; set; }
///
///
///
- public global::Speechify.UpdateAgentToolRequest? Type373 { get; set; }
+ public global::Speechify.CreateAgentToolRequest? Type373 { get; set; }
///
///
///
- public global::Speechify.ToolConfig? Type374 { get; set; }
+ public global::Speechify.UpdateAgentToolRequestConfig? Type374 { get; set; }
///
///
///
- public global::Speechify.Tool? Type375 { get; set; }
+ public global::Speechify.UpdateAgentToolRequest? Type375 { get; set; }
///
///
///
- public global::Speechify.ListToolsResponse? Type376 { get; set; }
+ public global::Speechify.ToolConfig? Type376 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type377 { get; set; }
+ public global::Speechify.Tool? Type377 { get; set; }
///
///
///
- public global::Speechify.CreateToolRequestConfig? Type378 { get; set; }
+ public global::Speechify.ListToolsResponse? Type378 { get; set; }
///
///
///
- public global::Speechify.CreateToolRequest? Type379 { get; set; }
+ public global::System.Collections.Generic.IList? Type379 { get; set; }
///
///
///
- public global::Speechify.UpdateToolRequestConfig? Type380 { get; set; }
+ public global::Speechify.CreateToolRequestConfig? Type380 { get; set; }
///
///
///
- public global::Speechify.UpdateToolRequest? Type381 { get; set; }
+ public global::Speechify.CreateToolRequest? Type381 { get; set; }
///
///
///
- public global::Speechify.ToolAttachedAgent? Type382 { get; set; }
+ public global::Speechify.UpdateToolRequestConfig? Type382 { get; set; }
///
///
///
- public global::Speechify.ListToolAttachedAgentsResponse? Type383 { get; set; }
+ public global::Speechify.UpdateToolRequest? Type383 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type384 { get; set; }
+ public global::Speechify.ToolAttachedAgent? Type384 { get; set; }
///
///
///
- public global::Speechify.TestMCPConnectionRequest? Type385 { get; set; }
+ public global::Speechify.ListToolAttachedAgentsResponse? Type385 { get; set; }
///
///
///
- public global::Speechify.MCPProbeTool? Type386 { get; set; }
+ public global::System.Collections.Generic.IList? Type386 { get; set; }
///
///
///
- public global::Speechify.McpProbeErrorDetailsStage? Type387 { get; set; }
+ public global::Speechify.TestMCPConnectionRequest? Type387 { get; set; }
///
///
///
- public global::Speechify.MCPProbeErrorDetails? Type388 { get; set; }
+ public global::Speechify.MCPProbeTool? Type388 { get; set; }
///
///
///
- public global::Speechify.MCPProbeResult? Type389 { get; set; }
+ public global::Speechify.McpProbeErrorDetailsStage? Type389 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type390 { get; set; }
+ public global::Speechify.MCPProbeErrorDetails? Type390 { get; set; }
///
///
///
- public global::Speechify.TestWebhookConnectionRequest? Type391 { get; set; }
+ public global::Speechify.MCPProbeResult? Type391 { get; set; }
///
///
///
- public global::Speechify.WebhookProbeResult? Type392 { get; set; }
+ public global::System.Collections.Generic.IList? Type392 { get; set; }
///
///
///
- public global::Speechify.SystemBuiltinInfo? Type393 { get; set; }
+ public global::Speechify.TestWebhookConnectionRequest? Type393 { get; set; }
///
///
///
- public global::Speechify.ListSystemBuiltinsResponse? Type394 { get; set; }
+ public global::Speechify.WebhookProbeResult? Type394 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type395 { get; set; }
+ public global::Speechify.SystemBuiltinInfoExecution? Type395 { get; set; }
///
///
///
- public global::Speechify.TestType? Type396 { get; set; }
+ public global::Speechify.SystemBuiltinInfo? Type396 { get; set; }
///
///
///
- public global::Speechify.SimulationMessageRole? Type397 { get; set; }
+ public global::Speechify.ListSystemBuiltinsResponse? Type397 { get; set; }
///
///
///
- public global::Speechify.SimulationMessage? Type398 { get; set; }
+ public global::System.Collections.Generic.IList? Type398 { get; set; }
///
///
///
- public global::Speechify.ReplyConfig? Type399 { get; set; }
+ public global::Speechify.TestType? Type399 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type400 { get; set; }
+ public global::Speechify.SimulationMessageRole? Type400 { get; set; }
///
///
///
- public global::Speechify.ParameterCheckMode? Type401 { get; set; }
+ public global::Speechify.SimulationMessage? Type401 { get; set; }
///
///
///
- public global::Speechify.ParameterCheck? Type402 { get; set; }
+ public global::Speechify.ReplyConfig? Type402 { get; set; }
///
///
///
- public global::Speechify.ToolCallConfig? Type403 { get; set; }
+ public global::System.Collections.Generic.IList? Type403 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type404 { get; set; }
+ public global::Speechify.ParameterCheckMode? Type404 { get; set; }
///
///
///
- public global::Speechify.DataAssertionMode? Type405 { get; set; }
+ public global::Speechify.ParameterCheck? Type405 { get; set; }
///
///
///
- public global::Speechify.DataAssertion? Type406 { get; set; }
+ public global::Speechify.ToolCallConfig? Type406 { get; set; }
///
///
///
- public global::Speechify.SimulationConfig? Type407 { get; set; }
+ public global::System.Collections.Generic.IList? Type407 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type408 { get; set; }
+ public global::Speechify.DataAssertionMode? Type408 { get; set; }
///
///
///
- public global::Speechify.CreateAgentTestRequestConfig? Type409 { get; set; }
+ public global::Speechify.DataAssertion? Type409 { get; set; }
///
///
///
- public global::Speechify.MockingStrategy? Type410 { get; set; }
+ public global::Speechify.SimulationConfig? Type410 { get; set; }
///
///
///
- public global::Speechify.ToolMock? Type411 { get; set; }
+ public global::System.Collections.Generic.IList? Type411 { get; set; }
///
///
///
- public global::Speechify.NoMatchBehavior? Type412 { get; set; }
+ public global::Speechify.CreateAgentTestRequestConfig? Type412 { get; set; }
///
///
///
- public global::Speechify.ToolMockConfig? Type413 { get; set; }
+ public global::Speechify.MockingStrategy? Type413 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type414 { get; set; }
+ public global::Speechify.ToolMock? Type414 { get; set; }
///
///
///
- public global::Speechify.CreateAgentTestRequest? Type415 { get; set; }
+ public global::Speechify.NoMatchBehavior? Type415 { get; set; }
///
///
///
- public global::Speechify.AgentTestConfig? Type416 { get; set; }
+ public global::Speechify.ToolMockConfig? Type416 { get; set; }
///
///
///
- public global::Speechify.AgentTest? Type417 { get; set; }
+ public global::System.Collections.Generic.IList? Type417 { get; set; }
///
///
///
- public global::Speechify.TestVerdict? Type418 { get; set; }
+ public global::Speechify.CreateAgentTestRequest? Type418 { get; set; }
///
///
///
- public global::Speechify.ReplyResult? Type419 { get; set; }
+ public global::Speechify.AgentTestConfig? Type419 { get; set; }
///
///
///
- public global::Speechify.ParameterCheckResult? Type420 { get; set; }
+ public global::Speechify.AgentTest? Type420 { get; set; }
///
///
///
- public global::Speechify.ToolCallResult? Type421 { get; set; }
+ public global::Speechify.TestVerdict? Type421 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type422 { get; set; }
+ public global::Speechify.ReplyResult? Type422 { get; set; }
///
///
///
- public global::Speechify.SimulationToolCall? Type423 { get; set; }
+ public global::Speechify.ParameterCheckResult? Type423 { get; set; }
///
///
///
- public global::Speechify.SimulationResultSentiment? Type424 { get; set; }
+ public global::Speechify.ToolCallResult? Type424 { get; set; }
///
///
///
- public global::Speechify.SimulationCriterionResultStatus? Type425 { get; set; }
+ public global::System.Collections.Generic.IList? Type425 { get; set; }
///
///
///
- public global::Speechify.SimulationCriterionResult? Type426 { get; set; }
+ public global::Speechify.SimulationToolCall? Type426 { get; set; }
///
///
///
- public global::Speechify.DataAssertionResultMode? Type427 { get; set; }
+ public global::Speechify.SimulationResultSentiment? Type427 { get; set; }
///
///
///
- public global::Speechify.DataAssertionResult? Type428 { get; set; }
+ public global::Speechify.SimulationCriterionResultStatus? Type428 { get; set; }
///
///
///
- public global::Speechify.SimulationResult? Type429 { get; set; }
+ public global::Speechify.SimulationCriterionResult? Type429 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type430 { get; set; }
+ public global::Speechify.DataAssertionResultMode? Type430 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type431 { get; set; }
+ public global::Speechify.DataAssertionResult? Type431 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type432 { get; set; }
+ public global::Speechify.SimulationResult? Type432 { get; set; }
///
///
///
- public global::Speechify.TestRunResult? Type433 { get; set; }
+ public global::System.Collections.Generic.IList? Type433 { get; set; }
///
///
///
- public global::Speechify.AgentTestRun? Type434 { get; set; }
+ public global::System.Collections.Generic.IList? Type434 { get; set; }
///
///
///
- public global::Speechify.AgentTestWithLastRun? Type435 { get; set; }
+ public global::System.Collections.Generic.IList? Type435 { get; set; }
///
///
///
- public global::Speechify.ListTestsResponse? Type436 { get; set; }
+ public global::Speechify.TestRunResult? Type436 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type437 { get; set; }
+ public global::Speechify.AgentTestRun? Type437 { get; set; }
///
///
///
- public global::Speechify.UpdateAgentTestRequestConfig? Type438 { get; set; }
+ public global::Speechify.AgentTestWithLastRun? Type438 { get; set; }
///
///
///
- public global::Speechify.UpdateAgentTestRequest? Type439 { get; set; }
+ public global::Speechify.ListTestsResponse? Type439 { get; set; }
///
///
///
- public global::Speechify.AgentTestFolder? Type440 { get; set; }
+ public global::System.Collections.Generic.IList? Type440 { get; set; }
///
///
///
- public global::Speechify.ListAgentTestFoldersResponse? Type441 { get; set; }
+ public global::Speechify.UpdateAgentTestRequestConfig? Type441 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type442 { get; set; }
+ public global::Speechify.UpdateAgentTestRequest? Type442 { get; set; }
///
///
///
- public global::Speechify.CreateAgentTestFolderRequest? Type443 { get; set; }
+ public global::Speechify.AgentTestFolder? Type443 { get; set; }
///
///
///
- public global::Speechify.UpdateAgentTestFolderRequest? Type444 { get; set; }
+ public global::Speechify.ListAgentTestFoldersResponse? Type444 { get; set; }
///
///
///
- public global::Speechify.ListAgentTestRunsResponse? Type445 { get; set; }
+ public global::System.Collections.Generic.IList? Type445 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type446 { get; set; }
+ public global::Speechify.CreateAgentTestFolderRequest? Type446 { get; set; }
///
///
///
- public global::Speechify.RunTarget? Type447 { get; set; }
+ public global::Speechify.UpdateAgentTestFolderRequest? Type447 { get; set; }
///
///
///
- public global::Speechify.TestRunConfigOverride? Type448 { get; set; }
+ public global::Speechify.ListAgentTestRunsResponse? Type448 { get; set; }
///
///
///
- public global::Speechify.RunTargetedTestsRequest? Type449 { get; set; }
+ public global::System.Collections.Generic.IList? Type449 { get; set; }
///
///
///
- public global::Speechify.SuiteRunTrigger? Type450 { get; set; }
+ public global::Speechify.RunTarget? Type450 { get; set; }
///
///
///
- public global::Speechify.AgentTestSuiteRunResults? Type451 { get; set; }
+ public global::Speechify.TestRunConfigOverride? Type451 { get; set; }
///
///
///
- public global::Speechify.AgentTestSuiteRun? Type452 { get; set; }
+ public global::Speechify.RunTargetedTestsRequest? Type452 { get; set; }
///
///
///
- public global::Speechify.RunAgentTestsResponse? Type453 { get; set; }
+ public global::Speechify.SuiteRunTrigger? Type453 { get; set; }
///
///
///
- public global::Speechify.BatchRunEntry? Type454 { get; set; }
+ public global::Speechify.AgentTestSuiteRunResults? Type454 { get; set; }
///
///
///
- public global::Speechify.RunBatchRequest? Type455 { get; set; }
+ public global::Speechify.AgentTestSuiteRun? Type455 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type456 { get; set; }
+ public global::Speechify.RunAgentTestsResponse? Type456 { get; set; }
///
///
///
- public global::Speechify.ListSuiteRunsResponse? Type457 { get; set; }
+ public global::Speechify.BatchRunEntry? Type457 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type458 { get; set; }
+ public global::Speechify.RunBatchRequest? Type458 { get; set; }
///
///
///
- public global::Speechify.AgentTestSuiteRunWithRunsResults? Type459 { get; set; }
+ public global::System.Collections.Generic.IList? Type459 { get; set; }
///
///
///
- public global::Speechify.SuiteChildRun? Type460 { get; set; }
+ public global::Speechify.ListSuiteRunsResponse? Type460 { get; set; }
///
///
///
- public global::Speechify.AgentTestSuiteRunWithRuns? Type461 { get; set; }
+ public global::System.Collections.Generic.IList? Type461 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type462 { get; set; }
+ public global::Speechify.AgentTestSuiteRunWithRunsResults? Type462 { get; set; }
///
///
///
- public global::Speechify.RunAllTestsRequest? Type463 { get; set; }
+ public global::Speechify.SuiteChildRun? Type463 { get; set; }
///
///
///
- public global::Speechify.TestStatsBucket? Type464 { get; set; }
+ public global::Speechify.AgentTestSuiteRunWithRuns? Type464 { get; set; }
///
///
///
- public global::Speechify.TestStats? Type465 { get; set; }
+ public global::System.Collections.Generic.IList? Type465 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type466 { get; set; }
+ public global::Speechify.RunAllTestsRequest? Type466 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type467 { get; set; }
+ public global::Speechify.TestStatsBucket? Type467 { get; set; }
///
///
///
- public global::Speechify.ShareLinkStatus? Type468 { get; set; }
+ public global::Speechify.TestStats? Type468 { get; set; }
///
///
///
- public global::Speechify.ShareLink? Type469 { get; set; }
+ public global::System.Collections.Generic.IList? Type469 { get; set; }
///
///
///
- public global::Speechify.ListShareLinksResponse? Type470 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type470 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type471 { get; set; }
+ public global::Speechify.ShareLinkStatus? Type471 { get; set; }
///
///
///
- public global::Speechify.CreateShareLinkRequest? Type472 { get; set; }
+ public global::Speechify.ShareLink? Type472 { get; set; }
///
///
///
- public global::Speechify.CreateShareLinkResponseStatus? Type473 { get; set; }
+ public global::Speechify.ListShareLinksResponse? Type473 { get; set; }
///
///
///
- public global::Speechify.CreateShareLinkResponse? Type474 { get; set; }
+ public global::System.Collections.Generic.IList? Type474 { get; set; }
///
///
///
- public global::Speechify.RevealShareLinkTokenResponse? Type475 { get; set; }
+ public global::Speechify.CreateShareLinkRequest? Type475 { get; set; }
///
///
///
- public global::Speechify.ShareLinkPreview? Type476 { get; set; }
+ public global::Speechify.CreateShareLinkResponseStatus? Type476 { get; set; }
///
///
///
- public global::Speechify.CreateShareLinkSessionRequest? Type477 { get; set; }
+ public global::Speechify.CreateShareLinkResponse? Type477 { get; set; }
///
///
///
- public global::Speechify.ShareLinkSession? Type478 { get; set; }
+ public global::Speechify.RevealShareLinkTokenResponse? Type478 { get; set; }
///
///
///
- public global::Speechify.PhoneNumberProvider? Type479 { get; set; }
+ public global::Speechify.ShareLinkPreview? Type479 { get; set; }
///
///
///
- public global::Speechify.PhoneNumberRelayHealth? Type480 { get; set; }
+ public global::Speechify.CreateShareLinkSessionRequest? Type480 { get; set; }
///
///
///
- public global::Speechify.PhoneNumberRelay? Type481 { get; set; }
+ public global::Speechify.ShareLinkSession? Type481 { get; set; }
///
///
///
- public global::Speechify.PhoneNumberCapability? Type482 { get; set; }
+ public global::Speechify.PhoneNumberProvider? Type482 { get; set; }
///
///
///
- public global::Speechify.PhoneNumberReputationRisk? Type483 { get; set; }
+ public global::Speechify.PhoneNumberRelayHealth? Type483 { get; set; }
///
///
///
- public global::Speechify.PhoneNumberReputation? Type484 { get; set; }
+ public global::Speechify.PhoneNumberRelay? Type484 { get; set; }
///
///
///
- public global::Speechify.PhoneNumber? Type485 { get; set; }
+ public global::Speechify.PhoneNumberCapability? Type485 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type486 { get; set; }
+ public global::Speechify.PhoneNumberReputationRisk? Type486 { get; set; }
///
///
///
- public global::Speechify.ListPhoneNumbersResponse? Type487 { get; set; }
+ public global::Speechify.PhoneNumberReputation? Type487 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type488 { get; set; }
+ public global::Speechify.PhoneNumber? Type488 { get; set; }
///
///
///
- public global::Speechify.TwilioImportSpec? Type489 { get; set; }
+ public global::System.Collections.Generic.IList? Type489 { get; set; }
///
///
///
- public global::Speechify.TelnyxImportSpec? Type490 { get; set; }
+ public global::Speechify.ListPhoneNumbersResponse? Type490 { get; set; }
///
///
///
- public global::Speechify.ImportPhoneNumberRequest? Type491 { get; set; }
+ public global::System.Collections.Generic.IList? Type491 { get; set; }
///
///
///
- public global::Speechify.PurchasedPhoneNumberProvider? Type492 { get; set; }
+ public global::Speechify.TwilioImportSpec? Type492 { get; set; }
///
///
///
- public global::Speechify.AvailablePhoneNumber? Type493 { get; set; }
+ public global::Speechify.TelnyxImportSpec? Type493 { get; set; }
///
///
///
- public global::Speechify.SearchAvailablePhoneNumbersResponse? Type494 { get; set; }
+ public global::Speechify.ImportPhoneNumberRequest? Type494 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type495 { get; set; }
+ public global::Speechify.PurchasedPhoneNumberProvider? Type495 { get; set; }
///
///
///
- public global::Speechify.IntendedUseMarketingOrInformational? Type496 { get; set; }
+ public global::Speechify.AvailablePhoneNumber? Type496 { get; set; }
///
///
///
- public global::Speechify.IntendedUse? Type497 { get; set; }
+ public global::Speechify.SearchAvailablePhoneNumbersResponse? Type497 { get; set; }
///
///
///
- public global::Speechify.PurchasePhoneNumberRequest? Type498 { get; set; }
+ public global::System.Collections.Generic.IList? Type498 { get; set; }
///
///
///
- public global::Speechify.UpdatePhoneNumberRequest? Type499 { get; set; }
+ public global::Speechify.IntendedUseMarketingOrInformational? Type499 { get; set; }
///
///
///
- public global::Speechify.CreateOutboundCallRequest? Type500 { get; set; }
+ public global::Speechify.IntendedUse? Type500 { get; set; }
///
///
///
- public global::Speechify.CreateOutboundCallResponse? Type501 { get; set; }
+ public global::Speechify.PurchasePhoneNumberRequest? Type501 { get; set; }
///
///
///
- public global::Speechify.BatchCall? Type502 { get; set; }
+ public global::Speechify.UpdatePhoneNumberRequest? Type502 { get; set; }
///
///
///
- public global::Speechify.ListBatchCallsResponse? Type503 { get; set; }
+ public global::Speechify.CreateOutboundCallRequest? Type503 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type504 { get; set; }
+ public global::Speechify.CreateOutboundCallResponse? Type504 { get; set; }
///
///
///
- public global::Speechify.BatchRecipientRequest? Type505 { get; set; }
+ public global::Speechify.BatchCall? Type505 { get; set; }
///
///
///
- public global::Speechify.CreateBatchCallRequest? Type506 { get; set; }
+ public global::Speechify.ListBatchCallsResponse? Type506 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type507 { get; set; }
+ public global::System.Collections.Generic.IList? Type507 { get; set; }
///
///
///
- public global::Speechify.BatchRecipientStatus? Type508 { get; set; }
+ public global::Speechify.BatchRecipientRequest? Type508 { get; set; }
///
///
///
- public global::Speechify.BatchRecipient? Type509 { get; set; }
+ public global::Speechify.CreateBatchCallRequest? Type509 { get; set; }
///
///
///
- public global::Speechify.ListBatchRecipientsResponse? Type510 { get; set; }
+ public global::System.Collections.Generic.IList? Type510 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type511 { get; set; }
+ public global::Speechify.BatchRecipientStatus? Type511 { get; set; }
///
///
///
- public global::Speechify.IvrMenuListEntryMenuTree? Type512 { get; set; }
+ public global::Speechify.BatchRecipient? Type512 { get; set; }
///
///
///
- public global::Speechify.IVRMenuListEntry? Type513 { get; set; }
+ public global::Speechify.ListBatchRecipientsResponse? Type513 { get; set; }
///
///
///
- public global::Speechify.ListIVRMenusResponse? Type514 { get; set; }
+ public global::System.Collections.Generic.IList? Type514 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type515 { get; set; }
+ public global::Speechify.IvrMenuListEntryMenuTree? Type515 { get; set; }
///
///
///
- public global::Speechify.IvrMenuMenuTree? Type516 { get; set; }
+ public global::Speechify.IVRMenuListEntry? Type516 { get; set; }
///
///
///
- public global::Speechify.IVRMenu? Type517 { get; set; }
+ public global::Speechify.ListIVRMenusResponse? Type517 { get; set; }
///
///
///
- public global::Speechify.UpdateIVRMenuLabelRequest? Type518 { get; set; }
+ public global::System.Collections.Generic.IList? Type518 { get; set; }
///
///
///
- public global::Speechify.InvalidateIVRMenuRequest? Type519 { get; set; }
+ public global::Speechify.IvrMenuMenuTree? Type519 { get; set; }
///
///
///
- public global::Speechify.SIPTrunkProvider? Type520 { get; set; }
+ public global::Speechify.IVRMenu? Type520 { get; set; }
///
///
///
- public global::Speechify.SIPTrunkDirection? Type521 { get; set; }
+ public global::Speechify.UpdateIVRMenuLabelRequest? Type521 { get; set; }
///
///
///
- public global::Speechify.SIPTransport? Type522 { get; set; }
+ public global::Speechify.InvalidateIVRMenuRequest? Type522 { get; set; }
///
///
///
- public global::Speechify.SIPMediaEncryption? Type523 { get; set; }
+ public global::Speechify.SIPTrunkProvider? Type523 { get; set; }
///
///
///
- public global::Speechify.SIPTrunk? Type524 { get; set; }
+ public global::Speechify.SIPTrunkDirection? Type524 { get; set; }
///
///
///
- public global::Speechify.ListSIPTrunksResponse? Type525 { get; set; }
+ public global::Speechify.SIPTransport? Type525 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type526 { get; set; }
+ public global::Speechify.SIPMediaEncryption? Type526 { get; set; }
///
///
///
- public global::Speechify.CreateSipTrunkRequestCredentials? Type527 { get; set; }
+ public global::Speechify.SIPTrunk? Type527 { get; set; }
///
///
///
- public global::Speechify.CreateSIPTrunkRequest? Type528 { get; set; }
+ public global::Speechify.ListSIPTrunksResponse? Type528 { get; set; }
///
///
///
- public global::Speechify.Caller? Type529 { get; set; }
+ public global::System.Collections.Generic.IList? Type529 { get; set; }
///
///
///
- public global::Speechify.ListCallersResponse? Type530 { get; set; }
+ public global::Speechify.CreateSipTrunkRequestCredentials? Type530 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type531 { get; set; }
+ public global::Speechify.CreateSIPTrunkRequest? Type531 { get; set; }
///
///
///
- public global::Speechify.UpdateCallerRequest? Type532 { get; set; }
+ public global::Speechify.Caller? Type532 { get; set; }
///
///
///
- public global::Speechify.DeleteCallerResponse? Type533 { get; set; }
+ public global::Speechify.ListCallersResponse? Type533 { get; set; }
///
///
///
- public global::Speechify.ListCallerConversationsResponse? Type534 { get; set; }
+ public global::System.Collections.Generic.IList? Type534 { get; set; }
///
///
///
- public global::Speechify.ListCallerMemoriesResponse? Type535 { get; set; }
+ public global::Speechify.UpdateCallerRequest? Type535 { get; set; }
///
///
///
- public global::Speechify.AudioAsset? Type536 { get; set; }
+ public global::Speechify.DeleteCallerResponse? Type536 { get; set; }
///
///
///
- public global::Speechify.ListAudioAssetsResponse? Type537 { get; set; }
+ public global::Speechify.ListCallerConversationsResponse? Type537 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type538 { get; set; }
+ public global::Speechify.ListCallerMemoriesResponse? Type538 { get; set; }
///
///
///
- public global::Speechify.TeamMember? Type539 { get; set; }
+ public global::Speechify.AudioAsset? Type539 { get; set; }
///
///
///
- public global::Speechify.Team? Type540 { get; set; }
+ public global::Speechify.ListAudioAssetsResponse? Type540 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type541 { get; set; }
+ public global::System.Collections.Generic.IList? Type541 { get; set; }
///
///
///
- public global::Speechify.ListTeamsResponse? Type542 { get; set; }
+ public global::Speechify.TeamMember? Type542 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type543 { get; set; }
+ public global::Speechify.Team? Type543 { get; set; }
///
///
///
- public global::Speechify.TeamMemberInput? Type544 { get; set; }
+ public global::System.Collections.Generic.IList? Type544 { get; set; }
///
///
///
- public global::Speechify.CreateTeamRequest? Type545 { get; set; }
+ public global::Speechify.ListTeamsResponse? Type545 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type546 { get; set; }
+ public global::System.Collections.Generic.IList? Type546 { get; set; }
///
///
///
- public global::Speechify.UpdateTeamRequest? Type547 { get; set; }
+ public global::Speechify.TeamMemberInput? Type547 { get; set; }
///
///
///
- public global::Speechify.CreateTeamRunRequest? Type548 { get; set; }
+ public global::Speechify.CreateTeamRequest? Type548 { get; set; }
///
///
///
- public global::Speechify.AgentTriggerType? Type549 { get; set; }
+ public global::System.Collections.Generic.IList? Type549 { get; set; }
///
///
///
- public global::Speechify.TriggerRunSpec? Type550 { get; set; }
+ public global::Speechify.UpdateTeamRequest? Type550 { get; set; }
///
///
///
- public global::Speechify.TriggerScheduleConfig? Type551 { get; set; }
+ public global::Speechify.CreateTeamRunRequest? Type551 { get; set; }
///
///
///
- public global::Speechify.TriggerWebhookConfigUserIdentitySource? Type552 { get; set; }
+ public global::Speechify.AgentTriggerType? Type552 { get; set; }
///
///
///
- public global::Speechify.TriggerWebhookConfig? Type553 { get; set; }
+ public global::Speechify.TriggerRunSpec? Type553 { get; set; }
///
///
///
- public global::Speechify.AgentTriggerLastFireStatus? Type554 { get; set; }
+ public global::Speechify.TriggerScheduleConfig? Type554 { get; set; }
///
///
///
- public global::Speechify.AgentTrigger? Type555 { get; set; }
+ public global::Speechify.TriggerWebhookConfigUserIdentitySource? Type555 { get; set; }
///
///
///
- public global::Speechify.ListAgentTriggersResponse? Type556 { get; set; }
+ public global::Speechify.TriggerWebhookConfig? Type556 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type557 { get; set; }
+ public global::Speechify.AgentTriggerLastFireStatus? Type557 { get; set; }
///
///
///
- public global::Speechify.CreateAgentTriggerRequestType? Type558 { get; set; }
+ public global::Speechify.AgentTrigger? Type558 { get; set; }
///
///
///
- public global::Speechify.CreateAgentTriggerRequest? Type559 { get; set; }
+ public global::Speechify.ListAgentTriggersResponse? Type559 { get; set; }
///
///
///
- public global::Speechify.UpdateAgentTriggerRequest? Type560 { get; set; }
+ public global::System.Collections.Generic.IList? Type560 { get; set; }
///
///
///
- public global::Speechify.AgentTriggerFireResponseStatus? Type561 { get; set; }
+ public global::Speechify.CreateAgentTriggerRequestType? Type561 { get; set; }
///
///
///
- public global::Speechify.AgentTriggerFireResponse? Type562 { get; set; }
+ public global::Speechify.CreateAgentTriggerRequest? Type562 { get; set; }
///
///
///
- public global::Speechify.Skill? Type563 { get; set; }
+ public global::Speechify.UpdateAgentTriggerRequest? Type563 { get; set; }
///
///
///
- public global::Speechify.ListSkillsResponse? Type564 { get; set; }
+ public global::Speechify.AgentTriggerFireResponseStatus? Type564 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type565 { get; set; }
+ public global::Speechify.AgentTriggerFireResponse? Type565 { get; set; }
///
///
///
- public global::Speechify.CreateSkillRequest? Type566 { get; set; }
+ public global::Speechify.Skill? Type566 { get; set; }
///
///
///
- public global::Speechify.UpdateSkillRequest? Type567 { get; set; }
+ public global::Speechify.ListSkillsResponse? Type567 { get; set; }
///
///
///
- public global::Speechify.SkillVersion? Type568 { get; set; }
+ public global::System.Collections.Generic.IList? Type568 { get; set; }
///
///
///
- public global::Speechify.ListSkillVersionsResponse? Type569 { get; set; }
+ public global::Speechify.CreateSkillRequest? Type569 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type570 { get; set; }
+ public global::Speechify.UpdateSkillRequest? Type570 { get; set; }
///
///
///
- public global::Speechify.AgentSkill? Type571 { get; set; }
+ public global::Speechify.SkillVersion? Type571 { get; set; }
///
///
///
- public global::Speechify.ListAgentSkillsResponse? Type572 { get; set; }
+ public global::Speechify.ListSkillVersionsResponse? Type572 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type573 { get; set; }
+ public global::System.Collections.Generic.IList? Type573 { get; set; }
///
///
///
- public global::Speechify.AttachSkillRequest? Type574 { get; set; }
+ public global::Speechify.AgentSkill? Type574 { get; set; }
///
///
///
- public global::Speechify.UpdateAgentSkillRequest? Type575 { get; set; }
+ public global::Speechify.ListAgentSkillsResponse? Type575 { get; set; }
///
///
///
- public global::Speechify.V1FilesGetParametersKind? Type576 { get; set; }
+ public global::System.Collections.Generic.IList? Type576 { get; set; }
///
///
///
- public global::Speechify.FileKind? Type577 { get; set; }
+ public global::Speechify.AttachSkillRequest? Type577 { get; set; }
///
///
///
- public global::Speechify.FileSource? Type578 { get; set; }
+ public global::Speechify.UpdateAgentSkillRequest? Type578 { get; set; }
///
///
///
- public global::Speechify.File? Type579 { get; set; }
+ public global::Speechify.V1FilesGetParametersKind? Type579 { get; set; }
///
///
///
- public global::Speechify.ListFilesResponse? Type580 { get; set; }
+ public global::Speechify.FileKind? Type580 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type581 { get; set; }
+ public global::Speechify.FileSource? Type581 { get; set; }
///
///
///
- public global::Speechify.V1FilesPostRequestBodyContentMultipartFormDataSchemaKind? Type582 { get; set; }
+ public global::Speechify.File? Type582 { get; set; }
///
///
///
- public global::Speechify.Store? Type583 { get; set; }
+ public global::Speechify.ListFilesResponse? Type583 { get; set; }
///
///
///
- public global::Speechify.ListStoresResponse? Type584 { get; set; }
+ public global::System.Collections.Generic.IList? Type584 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type585 { get; set; }
+ public global::Speechify.V1FilesPostRequestBodyContentMultipartFormDataSchemaKind? Type585 { get; set; }
///
///
///
- public global::Speechify.CreateStoreRequest? Type586 { get; set; }
+ public global::Speechify.Store? Type586 { get; set; }
///
///
///
- public global::Speechify.UpdateStoreRequest? Type587 { get; set; }
+ public global::Speechify.ListStoresResponse? Type587 { get; set; }
///
///
///
- public global::Speechify.StoreCollection? Type588 { get; set; }
+ public global::System.Collections.Generic.IList? Type588 { get; set; }
///
///
///
- public global::Speechify.ListStoreCollectionsResponse? Type589 { get; set; }
+ public global::Speechify.CreateStoreRequest? Type589 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type590 { get; set; }
+ public global::Speechify.UpdateStoreRequest? Type590 { get; set; }
///
///
///
- public global::Speechify.StoreDocumentSource? Type591 { get; set; }
+ public global::Speechify.StoreCollection? Type591 { get; set; }
///
///
///
- public global::Speechify.StoreDocument? Type592 { get; set; }
+ public global::Speechify.ListStoreCollectionsResponse? Type592 { get; set; }
///
///
///
- public global::Speechify.QueryStoreDocumentsResponse? Type593 { get; set; }
+ public global::System.Collections.Generic.IList? Type593 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type594 { get; set; }
+ public global::Speechify.StoreDocumentSource? Type594 { get; set; }
///
///
///
- public global::Speechify.WriteStoreDocumentRequest? Type595 { get; set; }
+ public global::Speechify.StoreDocument? Type595 { get; set; }
///
///
///
- public global::Speechify.StoreWhereClauseOp? Type596 { get; set; }
+ public global::Speechify.QueryStoreDocumentsResponse? Type596 { get; set; }
///
///
///
- public global::Speechify.StoreWhereClause? Type597 { get; set; }
+ public global::System.Collections.Generic.IList? Type597 { get; set; }
///
///
///
- public global::Speechify.StoreOrderByDirection? Type598 { get; set; }
+ public global::Speechify.WriteStoreDocumentRequest? Type598 { get; set; }
///
///
///
- public global::Speechify.StoreOrderBy? Type599 { get; set; }
+ public global::Speechify.StoreWhereClauseOp? Type599 { get; set; }
///
///
///
- public global::Speechify.StoreDocumentQuery? Type600 { get; set; }
+ public global::Speechify.StoreWhereClause? Type600 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type601 { get; set; }
+ public global::Speechify.StoreOrderByDirection? Type601 { get; set; }
///
///
///
- public global::Speechify.StoreBatchWriteOp? Type602 { get; set; }
+ public global::Speechify.StoreOrderBy? Type602 { get; set; }
///
///
///
- public global::Speechify.StoreBatchWrite? Type603 { get; set; }
+ public global::Speechify.StoreDocumentQuery? Type603 { get; set; }
///
///
///
- public global::Speechify.StoreBatchRequest? Type604 { get; set; }
+ public global::System.Collections.Generic.IList? Type604 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type605 { get; set; }
+ public global::Speechify.StoreBatchWriteOp? Type605 { get; set; }
///
///
///
- public global::Speechify.StoreBatchResultOp? Type606 { get; set; }
+ public global::Speechify.StoreBatchWrite? Type606 { get; set; }
///
///
///
- public global::Speechify.StoreBatchResult? Type607 { get; set; }
+ public global::Speechify.StoreBatchRequest? Type607 { get; set; }
///
///
///
- public global::Speechify.StoreBatchResponse? Type608 { get; set; }
+ public global::System.Collections.Generic.IList? Type608 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type609 { get; set; }
+ public global::Speechify.StoreBatchResultOp? Type609 { get; set; }
///
///
///
- public global::Speechify.ListAgentStoresResponse? Type610 { get; set; }
+ public global::Speechify.StoreBatchResult? Type610 { get; set; }
///
///
///
- public global::Speechify.HostedApiAuthMode? Type611 { get; set; }
+ public global::Speechify.StoreBatchResponse? Type611 { get; set; }
///
///
///
- public global::Speechify.HostedAPI? Type612 { get; set; }
+ public global::System.Collections.Generic.IList? Type612 { get; set; }
///
///
///
- public global::Speechify.ListHostedAPIsResponse? Type613 { get; set; }
+ public global::Speechify.ListAgentStoresResponse? Type613 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type614 { get; set; }
+ public global::Speechify.HostedApiAuthMode? Type614 { get; set; }
///
///
///
- public global::Speechify.CreateHostedApiRequestAuthMode? Type615 { get; set; }
+ public global::Speechify.HostedAPI? Type615 { get; set; }
///
///
///
- public global::Speechify.CreateHostedAPIRequest? Type616 { get; set; }
+ public global::Speechify.ListHostedAPIsResponse? Type616 { get; set; }
///
///
///
- public global::Speechify.UpdateHostedApiRequestAuthMode? Type617 { get; set; }
+ public global::System.Collections.Generic.IList? Type617 { get; set; }
///
///
///
- public global::Speechify.UpdateHostedAPIRequest? Type618 { get; set; }
+ public global::Speechify.CreateHostedApiRequestAuthMode? Type618 { get; set; }
///
///
///
- public global::Speechify.HostedApiRouteMethod? Type619 { get; set; }
+ public global::Speechify.CreateHostedAPIRequest? Type619 { get; set; }
///
///
///
- public global::Speechify.HostedApiResolverType? Type620 { get; set; }
+ public global::Speechify.UpdateHostedApiRequestAuthMode? Type620 { get; set; }
///
///
///
- public global::Speechify.HostedApiResolverWhereItemsOp? Type621 { get; set; }
+ public global::Speechify.UpdateHostedAPIRequest? Type621 { get; set; }
///
///
///
- public global::Speechify.HostedApiResolverWhereItems? Type622 { get; set; }
+ public global::Speechify.HostedApiRouteMethod? Type622 { get; set; }
///
///
///
- public global::Speechify.HostedApiResolverOrderByDirection? Type623 { get; set; }
+ public global::Speechify.HostedApiResolverType? Type623 { get; set; }
///
///
///
- public global::Speechify.HostedApiResolverOrderBy? Type624 { get; set; }
+ public global::Speechify.HostedApiResolverWhereItemsOp? Type624 { get; set; }
///
///
///
- public global::Speechify.HostedAPIResolver? Type625 { get; set; }
+ public global::Speechify.HostedApiResolverWhereItems? Type625 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type626 { get; set; }
+ public global::Speechify.HostedApiResolverOrderByDirection? Type626 { get; set; }
///
///
///
- public global::Speechify.HostedAPIRoute? Type627 { get; set; }
+ public global::Speechify.HostedApiResolverOrderBy? Type627 { get; set; }
///
///
///
- public global::Speechify.ListHostedAPIRoutesResponse? Type628 { get; set; }
+ public global::Speechify.HostedAPIResolver? Type628 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type629 { get; set; }
+ public global::System.Collections.Generic.IList? Type629 { get; set; }
///
///
///
- public global::Speechify.CreateHostedApiRouteRequestMethod? Type630 { get; set; }
+ public global::Speechify.HostedAPIRoute? Type630 { get; set; }
///
///
///
- public global::Speechify.CreateHostedAPIRouteRequest? Type631 { get; set; }
+ public global::Speechify.ListHostedAPIRoutesResponse? Type631 { get; set; }
///
///
///
- public global::Speechify.UpdateHostedApiRouteRequestMethod? Type632 { get; set; }
+ public global::System.Collections.Generic.IList? Type632 { get; set; }
///
///
///
- public global::Speechify.UpdateHostedAPIRouteRequest? Type633 { get; set; }
+ public global::Speechify.CreateHostedApiRouteRequestMethod? Type633 { get; set; }
///
///
///
- public global::Speechify.HostedAPIKey? Type634 { get; set; }
+ public global::Speechify.CreateHostedAPIRouteRequest? Type634 { get; set; }
///
///
///
- public global::Speechify.ListHostedAPIKeysResponse? Type635 { get; set; }
+ public global::Speechify.UpdateHostedApiRouteRequestMethod? Type635 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type636 { get; set; }
+ public global::Speechify.UpdateHostedAPIRouteRequest? Type636 { get; set; }
///
///
///
- public global::Speechify.CreateHostedAPIKeyRequest? Type637 { get; set; }
+ public global::Speechify.HostedAPIKey? Type637 { get; set; }
///
///
///
- public global::Speechify.ContactIdentifierKind? Type638 { get; set; }
+ public global::Speechify.ListHostedAPIKeysResponse? Type638 { get; set; }
///
///
///
- public global::Speechify.ContactIdentifierAssertedBy? Type639 { get; set; }
+ public global::System.Collections.Generic.IList? Type639 { get; set; }
///
///
///
- public global::Speechify.ContactIdentifier? Type640 { get; set; }
+ public global::Speechify.CreateHostedAPIKeyRequest? Type640 { get; set; }
///
///
///
- public global::Speechify.Contact? Type641 { get; set; }
+ public global::Speechify.ContactIdentifierKind? Type641 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type642 { get; set; }
+ public global::Speechify.ContactIdentifierAssertedBy? Type642 { get; set; }
///
///
///
- public global::Speechify.ListContactsResponse? Type643 { get; set; }
+ public global::Speechify.ContactIdentifier? Type643 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type644 { get; set; }
+ public global::Speechify.Contact? Type644 { get; set; }
///
///
///
- public global::Speechify.UpdateContactRequest? Type645 { get; set; }
+ public global::System.Collections.Generic.IList? Type645 { get; set; }
///
///
///
- public global::Speechify.DeleteContactResponse? Type646 { get; set; }
+ public global::Speechify.ListContactsResponse? Type646 { get; set; }
///
///
///
- public global::Speechify.AttachContactIdentifierRequestKind? Type647 { get; set; }
+ public global::System.Collections.Generic.IList? Type647 { get; set; }
///
///
///
- public global::Speechify.AttachContactIdentifierRequest? Type648 { get; set; }
+ public global::Speechify.UpdateContactRequest? Type648 { get; set; }
///
///
///
- public global::Speechify.MergeContactsRequest? Type649 { get; set; }
+ public global::Speechify.DeleteContactResponse? Type649 { get; set; }
///
///
///
- public global::Speechify.MergeContactsResponseMerged? Type650 { get; set; }
+ public global::Speechify.AttachContactIdentifierRequestKind? Type650 { get; set; }
///
///
///
- public global::Speechify.MergeContactsResponse? Type651 { get; set; }
+ public global::Speechify.AttachContactIdentifierRequest? Type651 { get; set; }
///
///
///
- public global::Speechify.BillingEntitlementsMaxLlmModelClass? Type652 { get; set; }
+ public global::Speechify.MergeContactsRequest? Type652 { get; set; }
///
///
///
- public global::Speechify.BillingEntitlements? Type653 { get; set; }
+ public global::Speechify.MergeContactsResponseMerged? Type653 { get; set; }
///
///
///
- public global::Speechify.EntitlementsResponse? Type654 { get; set; }
+ public global::Speechify.MergeContactsResponse? Type654 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type655 { get; set; }
+ public global::Speechify.BillingEntitlementsMaxLlmModelClass? Type655 { get; set; }
///
///
///
- public global::Speechify.ContactResolver? Type656 { get; set; }
+ public global::Speechify.BillingEntitlements? Type656 { get; set; }
///
///
///
- public global::Speechify.PutContactResolverRequest? Type657 { get; set; }
+ public global::Speechify.EntitlementsResponse? Type657 { get; set; }
///
///
///
- public global::Speechify.WebhookEndpoint? Type658 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type658 { get; set; }
///
///
///
- public global::Speechify.ListWebhookEndpointsResponse? Type659 { get; set; }
+ public global::Speechify.ContactResolver? Type659 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type660 { get; set; }
+ public global::Speechify.PutContactResolverRequest? Type660 { get; set; }
///
///
///
- public global::Speechify.CreateWebhookEndpointRequest? Type661 { get; set; }
+ public global::Speechify.WebhookEndpoint? Type661 { get; set; }
///
///
///
- public global::Speechify.UpdateWebhookEndpointRequest? Type662 { get; set; }
+ public global::Speechify.ListWebhookEndpointsResponse? Type662 { get; set; }
///
///
///
- public global::Speechify.WebhookEndpointDelivery? Type663 { get; set; }
+ public global::System.Collections.Generic.IList? Type663 { get; set; }
///
///
///
- public global::Speechify.ListWebhookEndpointDeliveriesResponse? Type664 { get; set; }
+ public global::Speechify.CreateWebhookEndpointRequest? Type664 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type665 { get; set; }
+ public global::Speechify.UpdateWebhookEndpointRequest? Type665 { get; set; }
///
///
///
- public global::Speechify.Project? Type666 { get; set; }
+ public global::Speechify.WebhookEndpointDelivery? Type666 { get; set; }
///
///
///
- public global::Speechify.ListProjectsResponse? Type667 { get; set; }
+ public global::Speechify.ListWebhookEndpointDeliveriesResponse? Type667 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type668 { get; set; }
+ public global::System.Collections.Generic.IList? Type668 { get; set; }
///
///
///
- public global::Speechify.CreateProjectRequest? Type669 { get; set; }
+ public global::Speechify.Project? Type669 { get; set; }
///
///
///
- public global::Speechify.UpdateProjectRequest? Type670 { get; set; }
+ public global::Speechify.ListProjectsResponse? Type670 { get; set; }
///
///
///
- public global::Speechify.DeleteProjectRequestMode? Type671 { get; set; }
+ public global::System.Collections.Generic.IList? Type671 { get; set; }
///
///
///
- public global::Speechify.DeleteProjectRequest? Type672 { get; set; }
+ public global::Speechify.CreateProjectRequest? Type672 { get; set; }
///
///
///
- public global::Speechify.ProjectRestoredCounts? Type673 { get; set; }
+ public global::Speechify.UpdateProjectRequest? Type673 { get; set; }
///
///
///
- public global::Speechify.ProjectStillRevokedCounts? Type674 { get; set; }
+ public global::Speechify.DeleteProjectRequestMode? Type674 { get; set; }
///
///
///
- public global::Speechify.ProjectRestore? Type675 { get; set; }
+ public global::Speechify.DeleteProjectRequest? Type675 { get; set; }
///
///
///
- public global::Speechify.ProjectTeardownBlockerKind? Type676 { get; set; }
+ public global::Speechify.ProjectRestoredCounts? Type676 { get; set; }
///
///
///
- public global::Speechify.ProjectTeardownBlockerBlocksItems? Type677 { get; set; }
+ public global::Speechify.ProjectStillRevokedCounts? Type677 { get; set; }
///
///
///
- public global::Speechify.ProjectTeardownBlocker? Type678 { get; set; }
+ public global::Speechify.ProjectRestore? Type678 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type679 { get; set; }
+ public global::Speechify.ProjectTeardownBlockerKind? Type679 { get; set; }
///
///
///
- public global::Speechify.ProjectTeardownGroup? Type680 { get; set; }
+ public global::Speechify.ProjectTeardownBlockerBlocksItems? Type680 { get; set; }
///
///
///
- public global::Speechify.ProjectTeardown? Type681 { get; set; }
+ public global::Speechify.ProjectTeardownBlocker? Type681 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type682 { get; set; }
+ public global::System.Collections.Generic.IList? Type682 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type683 { get; set; }
+ public global::Speechify.ProjectTeardownGroup? Type683 { get; set; }
///
///
///
- public global::Speechify.ProjectResourceCounts? Type684 { get; set; }
+ public global::Speechify.ProjectTeardown? Type684 { get; set; }
///
///
///
- public global::Speechify.ProjectStats? Type685 { get; set; }
+ public global::System.Collections.Generic.IList? Type685 { get; set; }
///
///
///
- public global::Speechify.PromoteProjectRequest? Type686 { get; set; }
+ public global::System.Collections.Generic.IList? Type686 { get; set; }
///
///
///
- public global::Speechify.PromoteCreated? Type687 { get; set; }
+ public global::Speechify.ProjectResourceCounts? Type687 { get; set; }
///
///
///
- public global::Speechify.PromoteReused? Type688 { get; set; }
+ public global::Speechify.ProjectStats? Type688 { get; set; }
///
///
///
- public global::Speechify.PromoteAttentionKind? Type689 { get; set; }
+ public global::Speechify.PromoteProjectRequest? Type689 { get; set; }
///
///
///
- public global::Speechify.PromoteAttentionReason? Type690 { get; set; }
+ public global::Speechify.PromoteCreated? Type690 { get; set; }
///
///
///
- public global::Speechify.PromoteAttention? Type691 { get; set; }
+ public global::Speechify.PromoteReused? Type691 { get; set; }
///
///
///
- public global::Speechify.PromoteProjectResponse? Type692 { get; set; }
+ public global::Speechify.PromoteAttentionKind? Type692 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type693 { get; set; }
+ public global::Speechify.PromoteAttentionReason? Type693 { get; set; }
///
///
///
- public global::Speechify.ProjectAuditEventType? Type694 { get; set; }
+ public global::Speechify.PromoteAttention? Type694 { get; set; }
///
///
///
- public global::Speechify.ProjectAuditEvent? Type695 { get; set; }
+ public global::Speechify.PromoteProjectResponse? Type695 { get; set; }
///
///
///
- public global::Speechify.ProjectAuditResponse? Type696 { get; set; }
+ public global::System.Collections.Generic.IList? Type696 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type697 { get; set; }
+ public global::Speechify.ProjectAuditEventType? Type697 { get; set; }
///
///
///
- public global::Speechify.ProjectMember? Type698 { get; set; }
+ public global::Speechify.ProjectAuditEvent? Type698 { get; set; }
///
///
///
- public global::Speechify.ProjectMembersResponse? Type699 { get; set; }
+ public global::Speechify.ProjectAuditResponse? Type699 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type700 { get; set; }
+ public global::System.Collections.Generic.IList? Type700 { get; set; }
///
///
///
- public global::Speechify.GrantProjectMemberRequest? Type701 { get; set; }
+ public global::Speechify.ProjectMember? Type701 { get; set; }
///
///
///
- public global::Speechify.CreateRequest? Type702 { get; set; }
+ public global::Speechify.ProjectMembersResponse? Type702 { get; set; }
///
///
///
- public global::Speechify.DetectRequest? Type703 { get; set; }
+ public global::System.Collections.Generic.IList? Type703 { get; set; }
///
///
///
- public global::Speechify.VerifyRequest? Type704 { get; set; }
+ public global::Speechify.GrantProjectMemberRequest? Type704 { get; set; }
///
///
///
- public global::Speechify.UploadDocumentRequest? Type705 { get; set; }
+ public global::Speechify.CreateRequest? Type705 { get; set; }
///
///
///
- public global::Speechify.UpdateDocumentRequest? Type706 { get; set; }
+ public global::Speechify.DetectRequest? Type706 { get; set; }
///
///
///
- public global::Speechify.RunTestRequest? Type707 { get; set; }
+ public global::Speechify.VerifyRequest? Type707 { get; set; }
///
///
///
- public global::Speechify.UploadRequest? Type708 { get; set; }
+ public global::Speechify.UploadDocumentRequest? Type708 { get; set; }
///
///
///
- public global::Speechify.UploadRequest2? Type709 { get; set; }
+ public global::Speechify.UpdateDocumentRequest? Type709 { get; set; }
+ ///
+ ///
+ ///
+ public global::Speechify.RunTestRequest? Type710 { get; set; }
+ ///
+ ///
+ ///
+ public global::Speechify.UploadRequest? Type711 { get; set; }
+ ///
+ ///
+ ///
+ public global::Speechify.UploadRequest2? Type712 { get; set; }
///
///
@@ -3058,314 +3070,318 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::System.Collections.Generic.List? ListType46 { get; set; }
+ public global::System.Collections.Generic.List? ListType46 { get; set; }
+ ///
+ ///
+ ///
+ public global::System.Collections.Generic.List? ListType47 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType47 { get; set; }
+ public global::System.Collections.Generic.List? ListType48 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType48 { get; set; }
+ public global::System.Collections.Generic.List? ListType49 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType49 { get; set; }
+ public global::System.Collections.Generic.List? ListType50 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType50 { get; set; }
+ public global::System.Collections.Generic.List? ListType51 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType51 { get; set; }
+ public global::System.Collections.Generic.List? ListType52 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType52 { get; set; }
+ public global::System.Collections.Generic.List? ListType53 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType53 { get; set; }
+ public global::System.Collections.Generic.List? ListType54 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType54 { get; set; }
+ public global::System.Collections.Generic.List? ListType55 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType55 { get; set; }
+ public global::System.Collections.Generic.List? ListType56 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType56 { get; set; }
+ public global::System.Collections.Generic.List? ListType57 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType57 { get; set; }
+ public global::System.Collections.Generic.List? ListType58 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType58 { get; set; }
+ public global::System.Collections.Generic.List? ListType59 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType59 { get; set; }
+ public global::System.Collections.Generic.List? ListType60 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType60 { get; set; }
+ public global::System.Collections.Generic.List? ListType61 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType61 { get; set; }
+ public global::System.Collections.Generic.List? ListType62 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType62 { get; set; }
+ public global::System.Collections.Generic.List? ListType63 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType63 { get; set; }
+ public global::System.Collections.Generic.List? ListType64 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType64 { get; set; }
+ public global::System.Collections.Generic.List? ListType65 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType65 { get; set; }
+ public global::System.Collections.Generic.List? ListType66 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType66 { get; set; }
+ public global::System.Collections.Generic.List? ListType67 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType67 { get; set; }
+ public global::System.Collections.Generic.List? ListType68 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType68 { get; set; }
+ public global::System.Collections.Generic.List? ListType69 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType69 { get; set; }
+ public global::System.Collections.Generic.List? ListType70 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType70 { get; set; }
+ public global::System.Collections.Generic.List? ListType71 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType71 { get; set; }
+ public global::System.Collections.Generic.List? ListType72 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType72 { get; set; }
+ public global::System.Collections.Generic.List? ListType73 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType73 { get; set; }
+ public global::System.Collections.Generic.List? ListType74 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType74 { get; set; }
+ public global::System.Collections.Generic.List? ListType75 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType75 { get; set; }
+ public global::System.Collections.Generic.List? ListType76 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType76 { get; set; }
+ public global::System.Collections.Generic.List? ListType77 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType77 { get; set; }
+ public global::System.Collections.Generic.List? ListType78 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType78 { get; set; }
+ public global::System.Collections.Generic.List? ListType79 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType79 { get; set; }
+ public global::System.Collections.Generic.List? ListType80 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType80 { get; set; }
+ public global::System.Collections.Generic.List? ListType81 { get; set; }
///
///
///
- public global::System.Collections.Generic.List? ListType81 { get; set; }
+ public global::System.Collections.Generic.List? ListType82 { get; set; }
///