diff --git a/src/libs/OpenApiGenerator.Core/Extensions/OpenApiExtensions.cs b/src/libs/OpenApiGenerator.Core/Extensions/OpenApiExtensions.cs index d319d226e9..8a551bb32b 100644 --- a/src/libs/OpenApiGenerator.Core/Extensions/OpenApiExtensions.cs +++ b/src/libs/OpenApiGenerator.Core/Extensions/OpenApiExtensions.cs @@ -274,6 +274,14 @@ public static bool IsDateTime( return schema.Type == "string" && schema.Format == "date-time"; } + + public static bool IsBinary( + this OpenApiSchema schema) + { + schema = schema ?? throw new ArgumentNullException(nameof(schema)); + + return schema.Type == "string" && schema.Format == "binary"; + } public static bool IsComponent( this KeyValuePair schema) diff --git a/src/libs/OpenApiGenerator.Core/Generation/Sources.Methods.cs b/src/libs/OpenApiGenerator.Core/Generation/Sources.Methods.cs index da77160dd4..2043588e21 100644 --- a/src/libs/OpenApiGenerator.Core/Generation/Sources.Methods.cs +++ b/src/libs/OpenApiGenerator.Core/Generation/Sources.Methods.cs @@ -227,6 +227,31 @@ public static string GenerateRequestData( } var jsonSerializer = endPoint.Settings.JsonSerializerType.GetSerializer(); + if (endPoint.IsMultipartFormData) + { + return $@" + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); +{endPoint.Properties.Where(x => !x.IsMultiPartFormDataFilename).Select(x => x.Type.IsBinary ? @$" + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.{x.Name} ?? global::System.Array.Empty()) + {{ + Headers = + {{ + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse(""{endPoint.RequestMediaType}""), + }}, + }}, + name: ""{x.Id}"", + fileName: request.{x.Name + "name"} ?? string.Empty); + " : @$" + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($""{{request.{x.Name}}}""), + name: ""{x.Id}""); + ").Inject()} + + httpRequest.Content = __httpRequestContent; + ".RemoveBlankLinesWhereOnlyWhitespaces(); + } + var requestContent = endPoint.RequestType.IsBase64 ? "global::System.Convert.ToBase64String(request)" : jsonSerializer.GenerateSerializeCall(endPoint.RequestType, endPoint.Settings.JsonSerializerContext); diff --git a/src/libs/OpenApiGenerator.Core/Models/ModelData.cs b/src/libs/OpenApiGenerator.Core/Models/ModelData.cs index 0c72f66299..eacba032ce 100644 --- a/src/libs/OpenApiGenerator.Core/Models/ModelData.cs +++ b/src/libs/OpenApiGenerator.Core/Models/ModelData.cs @@ -147,7 +147,7 @@ public static ModelData FromSchema( operationId: string.Empty, settings: settings, parents: innerParents); - if (x.Value.Type == "string" && x.Value.Format == "binary") + if (x.Value.IsBinary()) { return new [] { @@ -156,6 +156,7 @@ property with { Id = property.Id + "name", Name = property.Name + "name", + IsMultiPartFormDataFilename = true, Type = TypeData.Default with { CSharpType = property.IsRequired ? "string" : "string?", diff --git a/src/libs/OpenApiGenerator.Core/Models/PropertyData.cs b/src/libs/OpenApiGenerator.Core/Models/PropertyData.cs index 68fc1d6f46..1cb25bf0f1 100644 --- a/src/libs/OpenApiGenerator.Core/Models/PropertyData.cs +++ b/src/libs/OpenApiGenerator.Core/Models/PropertyData.cs @@ -9,6 +9,7 @@ public readonly record struct PropertyData( string Name, TypeData Type, bool IsRequired, + bool IsMultiPartFormDataFilename, ParameterLocation? ParameterLocation, ParameterStyle? ParameterStyle, bool? ParameterExplode, @@ -23,6 +24,7 @@ public readonly record struct PropertyData( Name: string.Empty, Type: TypeData.Default, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: null, ParameterStyle: null, ParameterExplode: null, @@ -65,6 +67,7 @@ public static PropertyData FromSchema( Name: name, Type: type, IsRequired: requiredProperties.Contains(schema.Key), + IsMultiPartFormDataFilename: false, ParameterLocation: parameterLocation, ParameterStyle: parameterStyle, ParameterExplode: parameterExplode, diff --git a/src/libs/OpenApiGenerator.Core/Models/TypeData.cs b/src/libs/OpenApiGenerator.Core/Models/TypeData.cs index 619d09d33f..4eaf18d88c 100644 --- a/src/libs/OpenApiGenerator.Core/Models/TypeData.cs +++ b/src/libs/OpenApiGenerator.Core/Models/TypeData.cs @@ -12,6 +12,7 @@ public readonly record struct TypeData( bool IsBase64, bool IsDate, bool IsDateTime, + bool IsBinary, int AnyOfCount, int OneOfCount, int AllOfCount, @@ -29,6 +30,7 @@ public readonly record struct TypeData( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 0, OneOfCount: 0, AllOfCount: 0, @@ -95,6 +97,7 @@ public static TypeData FromSchema( IsBase64: schema.Value.IsBase64(), IsDate: schema.Value.IsDate(), IsDateTime: schema.Value.IsDateTime(), + IsBinary: schema.Value.IsBinary(), AnyOfCount: schema.Value.AnyOf?.Count ?? 0, OneOfCount: schema.Value.OneOf?.Count ?? 0, AllOfCount: schema.Value.AllOf?.Count ?? 0, @@ -138,6 +141,7 @@ public static TypeData FromSchemaContext(SchemaContext context, Settings setting IsBase64: context.Schema.IsBase64(), IsDate: context.Schema.IsDate(), IsDateTime: context.Schema.IsDateTime(), + IsBinary: context.Schema.IsBinary(), AnyOfCount: context.Schema.AnyOf?.Count ?? 0, OneOfCount: context.Schema.OneOf?.Count ?? 0, AllOfCount: context.Schema.AllOf?.Count ?? 0, diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranscription.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranscription.g.verified.cs index d4100fa6d7..3cdd606eb2 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranscription.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranscription.g.verified.cs @@ -43,10 +43,35 @@ partial void ProcessCreateTranscriptionResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/audio/transcriptions", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::Newtonsoft.Json.JsonConvert.SerializeObject(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.File ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "file", + fileName: request.Filename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Model}"), + name: "model"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Language}"), + name: "language"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Prompt}"), + name: "prompt"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.ResponseFormat}"), + name: "response_format"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Temperature}"), + name: "temperature"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.TimestampGranularities}"), + name: "timestamp_granularities[]"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranslation.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranslation.g.verified.cs index c9659f8b3b..fe2482a908 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranslation.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.AudioClient.CreateTranslation.g.verified.cs @@ -43,10 +43,29 @@ partial void ProcessCreateTranslationResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/audio/translations", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::Newtonsoft.Json.JsonConvert.SerializeObject(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.File ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "file", + fileName: request.Filename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Model}"), + name: "model"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Prompt}"), + name: "prompt"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.ResponseFormat}"), + name: "response_format"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Temperature}"), + name: "temperature"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.FilesClient.CreateFile.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.FilesClient.CreateFile.g.verified.cs index c9791d08d7..ec939230ef 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.FilesClient.CreateFile.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.FilesClient.CreateFile.g.verified.cs @@ -47,10 +47,20 @@ partial void ProcessCreateFileResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/files", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::Newtonsoft.Json.JsonConvert.SerializeObject(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.File ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "file", + fileName: request.Filename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Purpose}"), + name: "purpose"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs index 7d227b11e9..46a71aaeef 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs @@ -43,10 +43,45 @@ partial void ProcessCreateImageEditResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/images/edits", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::Newtonsoft.Json.JsonConvert.SerializeObject(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.Image ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "image", + fileName: request.Imagename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Prompt}"), + name: "prompt"); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.Mask ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "mask", + fileName: request.Maskname ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Model}"), + name: "model"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.N}"), + name: "n"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Size}"), + name: "size"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.ResponseFormat}"), + name: "response_format"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.User}"), + name: "user"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs index ecd370bc3e..4d4dee52c2 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/NewtonsoftJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs @@ -43,10 +43,32 @@ partial void ProcessCreateImageVariationResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/images/variations", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::Newtonsoft.Json.JsonConvert.SerializeObject(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.Image ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "image", + fileName: request.Imagename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Model}"), + name: "model"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.N}"), + name: "n"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.ResponseFormat}"), + name: "response_format"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Size}"), + name: "size"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.User}"), + name: "user"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranscription.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranscription.g.verified.cs index e0606654a6..411b04b1dc 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranscription.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranscription.g.verified.cs @@ -43,10 +43,35 @@ partial void ProcessCreateTranscriptionResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/audio/transcriptions", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::System.Text.Json.JsonSerializer.Serialize(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.File ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "file", + fileName: request.Filename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Model}"), + name: "model"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Language}"), + name: "language"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Prompt}"), + name: "prompt"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.ResponseFormat}"), + name: "response_format"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Temperature}"), + name: "temperature"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.TimestampGranularities}"), + name: "timestamp_granularities[]"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranslation.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranslation.g.verified.cs index 7c6ef2b574..a14adf49aa 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranslation.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.AudioClient.CreateTranslation.g.verified.cs @@ -43,10 +43,29 @@ partial void ProcessCreateTranslationResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/audio/translations", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::System.Text.Json.JsonSerializer.Serialize(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.File ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "file", + fileName: request.Filename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Model}"), + name: "model"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Prompt}"), + name: "prompt"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.ResponseFormat}"), + name: "response_format"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Temperature}"), + name: "temperature"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.FilesClient.CreateFile.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.FilesClient.CreateFile.g.verified.cs index 4c284de5a8..1959c568ab 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.FilesClient.CreateFile.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.FilesClient.CreateFile.g.verified.cs @@ -47,10 +47,20 @@ partial void ProcessCreateFileResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/files", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::System.Text.Json.JsonSerializer.Serialize(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.File ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "file", + fileName: request.Filename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Purpose}"), + name: "purpose"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs index c801f73d95..4a7a4633c4 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageEdit.g.verified.cs @@ -43,10 +43,45 @@ partial void ProcessCreateImageEditResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/images/edits", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::System.Text.Json.JsonSerializer.Serialize(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.Image ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "image", + fileName: request.Imagename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Prompt}"), + name: "prompt"); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.Mask ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "mask", + fileName: request.Maskname ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Model}"), + name: "model"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.N}"), + name: "n"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Size}"), + name: "size"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.ResponseFormat}"), + name: "response_format"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.User}"), + name: "user"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs index 4cd60bf0ae..9fd3d51644 100644 --- a/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs +++ b/src/tests/OpenApiGenerator.SnapshotTests/Snapshots/OpenAi/SystemTextJson/_#G.ImagesClient.CreateImageVariation.g.verified.cs @@ -43,10 +43,32 @@ partial void ProcessCreateImageVariationResponseContent( using var httpRequest = new global::System.Net.Http.HttpRequestMessage( method: global::System.Net.Http.HttpMethod.Post, requestUri: new global::System.Uri(_httpClient.BaseAddress?.AbsoluteUri.TrimEnd('/') + "/images/variations", global::System.UriKind.RelativeOrAbsolute)); - var __httpRequestContent = new global::System.Net.Http.StringContent( - content: global::System.Text.Json.JsonSerializer.Serialize(request, _jsonSerializerOptions), - encoding: global::System.Text.Encoding.UTF8, - mediaType: "multipart/form-data"); + using var __httpRequestContent = new global::System.Net.Http.MultipartFormDataContent(); + __httpRequestContent.Add( + content: new global::System.Net.Http.ByteArrayContent(request.Image ?? global::System.Array.Empty()) + { + Headers = + { + ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("multipart/form-data"), + }, + }, + name: "image", + fileName: request.Imagename ?? string.Empty); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Model}"), + name: "model"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.N}"), + name: "n"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.ResponseFormat}"), + name: "response_format"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.Size}"), + name: "size"); + __httpRequestContent.Add( + content: new global::System.Net.Http.StringContent($"{request.User}"), + name: "user"); httpRequest.Content = __httpRequestContent; PrepareRequest( diff --git a/src/tests/OpenApiGenerator.UnitTests/DataTests.Helpers.cs b/src/tests/OpenApiGenerator.UnitTests/DataTests.Helpers.cs index 66cf060b31..666b1e3a2f 100644 --- a/src/tests/OpenApiGenerator.UnitTests/DataTests.Helpers.cs +++ b/src/tests/OpenApiGenerator.UnitTests/DataTests.Helpers.cs @@ -65,11 +65,11 @@ private Task VerifyAsync( .UseDirectory($"Snapshots/{callerName}/Schemas") .UseFileName("_"); - // modelsTask = modelsTask.AutoVerify(); - // methodsTask = methodsTask.AutoVerify(); - // anyOfsTask = anyOfsTask.AutoVerify(); - // typesTask = typesTask.AutoVerify(); - // schemasTask = schemasTask.AutoVerify(); + modelsTask = modelsTask.AutoVerify(); + methodsTask = methodsTask.AutoVerify(); + anyOfsTask = anyOfsTask.AutoVerify(); + typesTask = typesTask.AutoVerify(); + schemasTask = schemasTask.AutoVerify(); return Task.WhenAll(modelsTask, methodsTask, anyOfsTask, typesTask, schemasTask); } diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Dedoose/Methods/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Dedoose/Methods/_.verified.txt index 98b5964d55..abe30e491b 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Dedoose/Methods/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Dedoose/Methods/_.verified.txt @@ -18,6 +18,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32,6 +33,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -52,6 +54,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66,6 +69,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -112,6 +116,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -132,6 +137,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -154,6 +160,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -174,6 +181,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -194,6 +202,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -233,6 +242,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -247,6 +257,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -293,6 +304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -313,6 +325,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ accountData, billingTransactionItems, @@ -339,6 +352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ accountData, billingTransactionItems, @@ -363,6 +377,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -383,6 +398,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -422,6 +438,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -436,6 +453,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -482,6 +500,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -502,6 +521,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ account, users @@ -527,6 +547,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ account, users @@ -550,6 +571,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -570,6 +592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -609,6 +632,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -623,6 +647,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -669,6 +694,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -689,6 +715,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -711,6 +738,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -731,6 +759,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -751,6 +780,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -790,6 +820,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -804,6 +835,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -824,6 +856,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -838,6 +871,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -884,6 +918,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -904,6 +939,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -926,6 +962,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -946,6 +983,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -966,6 +1004,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1005,6 +1044,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1019,6 +1059,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -1039,6 +1080,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1053,6 +1095,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1099,6 +1142,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1119,6 +1163,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1141,6 +1186,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1161,6 +1207,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1181,6 +1228,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1220,6 +1268,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1234,6 +1283,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -1254,6 +1304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1268,6 +1319,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1314,6 +1366,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1334,6 +1387,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1356,6 +1410,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1376,6 +1431,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1396,6 +1452,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1435,6 +1492,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1449,6 +1507,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -1469,6 +1528,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1483,6 +1543,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1503,6 +1564,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1517,6 +1579,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1563,6 +1626,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1583,6 +1647,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1605,6 +1670,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1625,6 +1691,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1645,6 +1712,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1684,6 +1752,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1698,6 +1767,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -1718,6 +1788,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1732,6 +1803,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1778,6 +1850,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1798,6 +1871,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -1842,6 +1916,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -1884,6 +1959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1904,6 +1980,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1943,6 +2020,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1957,6 +2035,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -1977,6 +2056,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1991,6 +2071,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2011,6 +2092,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2025,6 +2107,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2071,6 +2154,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2091,6 +2175,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2113,6 +2198,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2133,6 +2219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2153,6 +2240,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2192,6 +2280,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2206,6 +2295,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -2226,6 +2316,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2240,6 +2331,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2260,6 +2352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2274,6 +2367,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2294,6 +2388,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2308,6 +2403,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2354,6 +2450,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2374,6 +2471,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2396,6 +2494,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2416,6 +2515,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2436,6 +2536,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2475,6 +2576,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2489,6 +2591,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -2509,6 +2612,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2523,6 +2627,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2569,6 +2674,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2589,6 +2695,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2611,6 +2718,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2631,6 +2739,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2651,6 +2760,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2690,6 +2800,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2704,6 +2815,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -2724,6 +2836,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2738,6 +2851,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2784,6 +2898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2804,6 +2919,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2826,6 +2942,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2846,6 +2963,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2866,6 +2984,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2905,6 +3024,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2919,6 +3039,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -2939,6 +3060,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2953,6 +3075,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2999,6 +3122,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3019,6 +3143,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3041,6 +3166,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3061,6 +3187,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3081,6 +3208,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3120,6 +3248,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3134,6 +3263,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -3154,6 +3284,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3168,6 +3299,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3214,6 +3346,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3234,6 +3367,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3256,6 +3390,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3276,6 +3411,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3296,6 +3432,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3335,6 +3472,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3349,6 +3487,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -3369,6 +3508,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3383,6 +3523,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3403,6 +3544,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3417,6 +3559,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3437,6 +3580,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3451,6 +3595,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3471,6 +3616,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3485,6 +3631,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3505,6 +3652,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3519,6 +3667,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3539,6 +3688,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3553,6 +3703,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3573,6 +3724,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3587,6 +3739,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3607,6 +3760,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3621,6 +3775,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3641,6 +3796,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3655,6 +3811,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3675,6 +3832,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3689,6 +3847,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3709,6 +3868,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3723,6 +3883,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -3769,6 +3930,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3789,6 +3951,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, createStamp, @@ -3838,6 +4001,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, createStamp, @@ -3885,6 +4049,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3905,6 +4070,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3944,6 +4110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3958,6 +4125,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -3978,6 +4146,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3992,6 +4161,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4012,6 +4182,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4026,6 +4197,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4046,6 +4218,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4060,6 +4233,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4080,6 +4254,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4094,6 +4269,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4114,6 +4290,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4128,6 +4305,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4148,6 +4326,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4162,6 +4341,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4208,6 +4388,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4228,6 +4409,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -4272,6 +4454,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -4314,6 +4497,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4334,6 +4518,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4373,6 +4558,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4387,6 +4573,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -4407,6 +4594,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4421,6 +4609,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4441,6 +4630,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4455,6 +4645,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4475,6 +4666,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4489,6 +4681,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4535,6 +4728,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4555,6 +4749,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4577,6 +4772,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4597,6 +4793,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4617,6 +4814,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4656,6 +4854,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4670,6 +4869,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -4690,6 +4890,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4704,6 +4905,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4724,6 +4926,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4738,6 +4941,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4758,6 +4962,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4772,6 +4977,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4818,6 +5024,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4838,6 +5045,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4860,6 +5068,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4880,6 +5089,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4900,6 +5110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4939,6 +5150,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4953,6 +5165,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -4973,6 +5186,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4987,6 +5201,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5007,6 +5222,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5021,6 +5237,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5041,6 +5258,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5055,6 +5273,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5075,6 +5294,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5089,6 +5309,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5109,6 +5330,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5123,6 +5345,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5143,6 +5366,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5157,6 +5381,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5177,6 +5402,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5191,6 +5417,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5237,6 +5464,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5257,6 +5485,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5279,6 +5508,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5299,6 +5529,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5319,6 +5550,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5358,6 +5590,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5372,6 +5605,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -5392,6 +5626,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5406,6 +5641,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5426,6 +5662,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5440,6 +5677,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5486,6 +5724,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5506,6 +5745,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5528,6 +5768,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5548,6 +5789,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5568,6 +5810,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5607,6 +5850,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5621,6 +5865,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -5641,6 +5886,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5655,6 +5901,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5675,6 +5922,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5689,6 +5937,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5709,6 +5958,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5723,6 +5973,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5769,6 +6020,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5789,6 +6041,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5811,6 +6064,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5831,6 +6085,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5851,6 +6106,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5890,6 +6146,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5904,6 +6161,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -5924,6 +6182,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5938,6 +6197,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -5958,6 +6218,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5972,6 +6233,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6018,6 +6280,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6038,6 +6301,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6060,6 +6324,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6080,6 +6345,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6100,6 +6366,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6139,6 +6406,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6153,6 +6421,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -6173,6 +6442,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6187,6 +6457,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6233,6 +6504,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6253,6 +6525,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6275,6 +6548,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6295,6 +6569,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6315,6 +6590,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6354,6 +6630,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6368,6 +6645,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -6414,6 +6692,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6434,6 +6713,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6456,6 +6736,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6476,6 +6757,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6496,6 +6778,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6535,6 +6818,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6549,6 +6833,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -6595,6 +6880,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6615,6 +6901,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6637,6 +6924,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6657,6 +6945,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6677,6 +6966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6716,6 +7006,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6730,6 +7021,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -6750,6 +7042,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6764,6 +7057,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6784,6 +7078,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6798,6 +7093,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6844,6 +7140,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6864,6 +7161,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6886,6 +7184,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6906,6 +7205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6926,6 +7226,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6965,6 +7266,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6979,6 +7281,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -6999,6 +7302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7013,6 +7317,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7033,6 +7338,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7047,6 +7353,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7093,6 +7400,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7113,6 +7421,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7135,6 +7444,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7155,6 +7465,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7175,6 +7486,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7214,6 +7526,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7228,6 +7541,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -7248,6 +7562,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7262,6 +7577,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7282,6 +7598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7296,6 +7613,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7342,6 +7660,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7362,6 +7681,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7384,6 +7704,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7404,6 +7725,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7424,6 +7746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7463,6 +7786,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7477,6 +7801,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -7497,6 +7822,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7511,6 +7837,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7557,6 +7884,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7577,6 +7905,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7599,6 +7928,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7619,6 +7949,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7639,6 +7970,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7678,6 +8010,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7692,6 +8025,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -7712,6 +8046,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7726,6 +8061,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7772,6 +8108,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7792,6 +8129,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7814,6 +8152,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7834,6 +8173,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7854,6 +8194,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7893,6 +8234,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7907,6 +8249,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -7953,6 +8296,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7973,6 +8317,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7995,6 +8340,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8015,6 +8361,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8035,6 +8382,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8074,6 +8422,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8088,6 +8437,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -8134,6 +8484,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8154,6 +8505,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8176,6 +8528,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8196,6 +8549,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8216,6 +8570,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8255,6 +8610,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8269,6 +8625,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -8289,6 +8646,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8303,6 +8661,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8349,6 +8708,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8369,6 +8729,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8391,6 +8752,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8411,6 +8773,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8431,6 +8794,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8470,6 +8834,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8484,6 +8849,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -8504,6 +8870,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8518,6 +8885,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8538,6 +8906,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8552,6 +8921,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8572,6 +8942,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8586,6 +8957,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8606,6 +8978,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8620,6 +8993,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8640,6 +9014,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8654,6 +9029,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8674,6 +9050,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8688,6 +9065,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8734,6 +9112,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8754,6 +9133,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8776,6 +9156,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8796,6 +9177,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8816,6 +9198,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8855,6 +9238,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8869,6 +9253,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -8889,6 +9274,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8903,6 +9289,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8923,6 +9310,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8937,6 +9325,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -8983,6 +9372,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9003,6 +9393,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9025,6 +9416,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9045,6 +9437,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9065,6 +9458,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9104,6 +9498,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9118,6 +9513,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -9138,6 +9534,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9152,6 +9549,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9198,6 +9596,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9218,6 +9617,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9240,6 +9640,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9260,6 +9661,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9280,6 +9682,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9319,6 +9722,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9333,6 +9737,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -9353,6 +9758,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9367,6 +9773,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9387,6 +9794,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9401,6 +9809,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9421,6 +9830,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9435,6 +9845,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9481,6 +9892,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9501,6 +9913,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9523,6 +9936,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9543,6 +9957,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9563,6 +9978,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9602,6 +10018,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9616,6 +10033,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -9636,6 +10054,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9650,6 +10069,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9670,6 +10090,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9684,6 +10105,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9730,6 +10152,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9750,6 +10173,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9772,6 +10196,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9792,6 +10217,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9812,6 +10238,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9851,6 +10278,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9865,6 +10293,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -9885,6 +10314,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9899,6 +10329,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9919,6 +10350,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9933,6 +10365,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9953,6 +10386,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9967,6 +10401,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10013,6 +10448,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10033,6 +10469,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10055,6 +10492,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10075,6 +10513,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10095,6 +10534,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10134,6 +10574,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10148,6 +10589,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -10168,6 +10610,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10182,6 +10625,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10228,6 +10672,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10248,6 +10693,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10270,6 +10716,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10290,6 +10737,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10310,6 +10758,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10349,6 +10798,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10363,6 +10813,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -10383,6 +10834,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10397,6 +10849,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10443,6 +10896,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10463,6 +10917,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10485,6 +10940,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10505,6 +10961,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10525,6 +10982,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10564,6 +11022,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10578,6 +11037,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -10598,6 +11058,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10612,6 +11073,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10632,6 +11094,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10646,6 +11109,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10666,6 +11130,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10680,6 +11145,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10726,6 +11192,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10746,6 +11213,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10768,6 +11236,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10788,6 +11257,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10808,6 +11278,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10847,6 +11318,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10861,6 +11333,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -10881,6 +11354,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10895,6 +11369,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10915,6 +11390,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10929,6 +11405,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10975,6 +11452,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10995,6 +11473,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11017,6 +11496,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11037,6 +11517,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11057,6 +11538,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11096,6 +11578,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11110,6 +11593,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -11130,6 +11614,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11144,6 +11629,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11190,6 +11676,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11210,6 +11697,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11232,6 +11720,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11252,6 +11741,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11272,6 +11762,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11311,6 +11802,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11325,6 +11817,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -11371,6 +11864,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11391,6 +11885,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11413,6 +11908,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11433,6 +11929,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11453,6 +11950,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11492,6 +11990,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11506,6 +12005,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -11552,6 +12052,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11572,6 +12073,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11594,6 +12096,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11614,6 +12117,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11634,6 +12138,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11673,6 +12178,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11687,6 +12193,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -11707,6 +12214,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11721,6 +12229,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11741,6 +12250,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11755,6 +12265,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11775,6 +12286,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11789,6 +12301,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11809,6 +12322,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11823,6 +12337,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11843,6 +12358,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11857,6 +12373,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11877,6 +12394,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11891,6 +12409,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11911,6 +12430,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11925,6 +12445,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11945,6 +12466,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11959,6 +12481,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11979,6 +12502,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11993,6 +12517,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12013,6 +12538,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12027,6 +12553,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12047,6 +12574,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12061,6 +12589,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12081,6 +12610,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12095,6 +12625,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12115,6 +12646,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12129,6 +12661,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12149,6 +12682,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12163,6 +12697,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12183,6 +12718,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12197,6 +12733,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12217,6 +12754,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12231,6 +12769,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12277,6 +12816,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12297,6 +12837,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12319,6 +12860,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12339,6 +12881,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12359,6 +12902,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12398,6 +12942,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12412,6 +12957,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -12432,6 +12978,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12446,6 +12993,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12466,6 +13014,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12480,6 +13029,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12526,6 +13076,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12546,6 +13097,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12568,6 +13120,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12588,6 +13141,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12608,6 +13162,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12647,6 +13202,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12661,6 +13217,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -12681,6 +13238,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12695,6 +13253,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12715,6 +13274,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12729,6 +13289,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12749,6 +13310,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12763,6 +13325,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12809,6 +13372,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12829,6 +13393,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12851,6 +13416,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12871,6 +13437,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12891,6 +13458,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12930,6 +13498,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12944,6 +13513,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -12964,6 +13534,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12978,6 +13549,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12998,6 +13570,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13012,6 +13585,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13032,6 +13606,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13046,6 +13621,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13066,6 +13642,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13080,6 +13657,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13100,6 +13678,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13114,6 +13693,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13134,6 +13714,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13148,6 +13729,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13194,6 +13776,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13214,6 +13797,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13236,6 +13820,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13256,6 +13841,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13276,6 +13862,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13315,6 +13902,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13329,6 +13917,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -13349,6 +13938,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13363,6 +13953,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13383,6 +13974,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13397,6 +13989,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13417,6 +14010,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13431,6 +14025,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13451,6 +14046,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13465,6 +14061,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13511,6 +14108,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13531,6 +14129,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13553,6 +14152,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13573,6 +14173,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13593,6 +14194,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13632,6 +14234,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13646,6 +14249,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -13666,6 +14270,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13680,6 +14285,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13700,6 +14306,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13714,6 +14321,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13734,6 +14342,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13748,6 +14357,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13768,6 +14378,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13782,6 +14393,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -13828,6 +14440,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13848,6 +14461,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13870,6 +14484,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13890,6 +14505,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13910,6 +14526,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13949,6 +14566,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13963,6 +14581,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -13983,6 +14602,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13997,6 +14617,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14043,6 +14664,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14063,6 +14685,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14085,6 +14708,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14105,6 +14729,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14125,6 +14750,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14164,6 +14790,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14178,6 +14805,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -14198,6 +14826,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14212,6 +14841,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14232,6 +14862,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14246,6 +14877,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14266,6 +14898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14280,6 +14913,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14326,6 +14960,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14346,6 +14981,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -14375,6 +15011,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -14402,6 +15039,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14422,6 +15060,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14461,6 +15100,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14475,6 +15115,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -14495,6 +15136,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14509,6 +15151,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14529,6 +15172,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14543,6 +15187,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14563,6 +15208,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14577,6 +15223,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14597,6 +15244,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14611,6 +15259,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14631,6 +15280,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14645,6 +15295,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14665,6 +15316,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14679,6 +15331,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14699,6 +15352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14713,6 +15367,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14733,6 +15388,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14747,6 +15403,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14767,6 +15424,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14781,6 +15439,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14801,6 +15460,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14815,6 +15475,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14835,6 +15496,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14849,6 +15511,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14869,6 +15532,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14883,6 +15547,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14903,6 +15568,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14917,6 +15583,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14937,6 +15604,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14951,6 +15619,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14971,6 +15640,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14985,6 +15655,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15031,6 +15702,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -15051,6 +15723,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -15087,6 +15760,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -15121,6 +15795,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15141,6 +15816,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15180,6 +15856,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15194,6 +15871,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -15214,6 +15892,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15228,6 +15907,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15248,6 +15928,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15262,6 +15943,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15282,6 +15964,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15296,6 +15979,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15316,6 +16000,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15330,6 +16015,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15350,6 +16036,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15364,6 +16051,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15384,6 +16072,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15398,6 +16087,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15418,6 +16108,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15432,6 +16123,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15452,6 +16144,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15466,6 +16159,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15486,6 +16180,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15500,6 +16195,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15520,6 +16216,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15534,6 +16231,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15554,6 +16252,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15568,6 +16267,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15588,6 +16288,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15602,6 +16303,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15622,6 +16324,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15636,6 +16339,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15656,6 +16360,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15670,6 +16375,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15690,6 +16396,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15704,6 +16411,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15724,6 +16432,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15738,6 +16447,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15758,6 +16468,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15772,6 +16483,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15792,6 +16504,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15806,6 +16519,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15852,6 +16566,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -15872,6 +16587,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -15908,6 +16624,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -15942,6 +16659,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15962,6 +16680,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16001,6 +16720,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16015,6 +16735,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -16035,6 +16756,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16049,6 +16771,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16095,6 +16818,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16115,6 +16839,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16137,6 +16862,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16157,6 +16883,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16177,6 +16904,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16216,6 +16944,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16230,6 +16959,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -16250,6 +16980,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16264,6 +16995,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16284,6 +17016,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16298,6 +17031,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16318,6 +17052,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16332,6 +17067,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16352,6 +17088,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16366,6 +17103,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16386,6 +17124,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16400,6 +17139,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16420,6 +17160,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16434,6 +17175,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16454,6 +17196,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16468,6 +17211,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16488,6 +17232,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16502,6 +17247,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16522,6 +17268,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16536,6 +17283,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16556,6 +17304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16570,6 +17319,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16590,6 +17340,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16604,6 +17355,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16624,6 +17376,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16638,6 +17391,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16658,6 +17412,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16672,6 +17427,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16692,6 +17448,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16706,6 +17463,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16726,6 +17484,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16740,6 +17499,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16760,6 +17520,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16774,6 +17535,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16794,6 +17556,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16808,6 +17571,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16828,6 +17592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16842,6 +17607,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16888,6 +17654,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16908,6 +17675,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -16944,6 +17712,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -16978,6 +17747,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16998,6 +17768,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17037,6 +17808,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17051,6 +17823,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -17071,6 +17844,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17085,6 +17859,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17105,6 +17880,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17119,6 +17895,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17139,6 +17916,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17153,6 +17931,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17200,6 +17979,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17220,6 +18000,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ item, values @@ -17245,6 +18026,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17265,6 +18047,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17285,6 +18068,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17305,6 +18089,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ item, values @@ -17328,6 +18113,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17348,6 +18134,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17387,6 +18174,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17401,6 +18189,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -17421,6 +18210,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17435,6 +18225,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17455,6 +18246,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17469,6 +18261,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17489,6 +18282,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17503,6 +18297,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17523,6 +18318,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17537,6 +18333,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17557,6 +18354,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17571,6 +18369,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17591,6 +18390,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17605,6 +18405,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17652,6 +18453,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17672,6 +18474,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ field, options @@ -17697,6 +18500,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17717,6 +18521,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17737,6 +18542,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17757,6 +18563,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ field, options @@ -17780,6 +18587,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17800,6 +18608,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17839,6 +18648,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17853,6 +18663,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -17873,6 +18684,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17887,6 +18699,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17907,6 +18720,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17921,6 +18735,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17941,6 +18756,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17955,6 +18771,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17975,6 +18792,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17989,6 +18807,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18035,6 +18854,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18055,6 +18875,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18077,6 +18898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18097,6 +18919,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18117,6 +18940,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18156,6 +18980,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18170,6 +18995,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -18190,6 +19016,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18204,6 +19031,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18224,6 +19052,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18238,6 +19067,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18258,6 +19088,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18272,6 +19103,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18292,6 +19124,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18306,6 +19139,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18352,6 +19186,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18372,6 +19207,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -18403,6 +19239,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -18432,6 +19269,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18452,6 +19290,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18491,6 +19330,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18505,6 +19345,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -18525,6 +19366,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18539,6 +19381,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18559,6 +19402,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18573,6 +19417,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18593,6 +19438,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18607,6 +19453,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18627,6 +19474,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18641,6 +19489,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18661,6 +19510,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18675,6 +19525,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18695,6 +19546,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18709,6 +19561,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18729,6 +19582,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18743,6 +19597,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18789,6 +19644,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18809,6 +19665,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18831,6 +19688,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18851,6 +19709,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18871,6 +19730,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18910,6 +19770,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18924,6 +19785,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -18944,6 +19806,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18958,6 +19821,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18978,6 +19842,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18992,6 +19857,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19038,6 +19904,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19058,6 +19925,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19080,6 +19948,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19100,6 +19969,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19120,6 +19990,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19159,6 +20030,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19173,6 +20045,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -19193,6 +20066,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19207,6 +20081,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19227,6 +20102,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19241,6 +20117,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19261,6 +20138,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19275,6 +20153,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19295,6 +20174,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19309,6 +20189,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19329,6 +20210,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19343,6 +20225,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19389,6 +20272,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19409,6 +20293,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19431,6 +20316,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19451,6 +20337,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19471,6 +20358,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19510,6 +20398,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19524,6 +20413,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -19544,6 +20434,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19558,6 +20449,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19578,6 +20470,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19592,6 +20485,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19612,6 +20506,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19626,6 +20521,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19646,6 +20542,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19660,6 +20557,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19680,6 +20578,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19694,6 +20593,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19714,6 +20614,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19728,6 +20629,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19748,6 +20650,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19762,6 +20665,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19782,6 +20686,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19796,6 +20701,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19816,6 +20722,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19830,6 +20737,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19876,6 +20784,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19896,6 +20805,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -19928,6 +20838,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -19958,6 +20869,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19978,6 +20890,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20017,6 +20930,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20031,6 +20945,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -20051,6 +20966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20065,6 +20981,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20085,6 +21002,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20099,6 +21017,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20119,6 +21038,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20133,6 +21053,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20153,6 +21074,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20167,6 +21089,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20187,6 +21110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20201,6 +21125,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20221,6 +21146,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20235,6 +21161,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20255,6 +21182,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20269,6 +21197,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20289,6 +21218,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20303,6 +21233,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20323,6 +21254,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20337,6 +21269,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20357,6 +21290,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20371,6 +21305,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20417,6 +21352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20437,6 +21373,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -20470,6 +21407,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -20501,6 +21439,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20521,6 +21460,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20560,6 +21500,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20574,6 +21515,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -20594,6 +21536,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20608,6 +21551,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20628,6 +21572,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20642,6 +21587,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20688,6 +21634,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20708,6 +21655,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20730,6 +21678,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20750,6 +21699,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20770,6 +21720,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20809,6 +21760,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20823,6 +21775,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -20843,6 +21796,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20857,6 +21811,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20877,6 +21832,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20891,6 +21847,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20911,6 +21868,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20925,6 +21883,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -20971,6 +21930,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20991,6 +21951,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21013,6 +21974,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21033,6 +21995,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21053,6 +22016,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21092,6 +22056,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21106,6 +22071,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -21126,6 +22092,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21140,6 +22107,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21160,6 +22128,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21174,6 +22143,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21220,6 +22190,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21240,6 +22211,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21262,6 +22234,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21282,6 +22255,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21302,6 +22276,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21341,6 +22316,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21355,6 +22331,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -21375,6 +22352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21389,6 +22367,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21435,6 +22414,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21455,6 +22435,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21477,6 +22458,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21497,6 +22479,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21517,6 +22500,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21556,6 +22540,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21570,6 +22555,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -21590,6 +22576,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21604,6 +22591,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21650,6 +22638,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21670,6 +22659,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21692,6 +22682,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21712,6 +22703,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21732,6 +22724,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21771,6 +22764,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21785,6 +22779,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -21805,6 +22800,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21819,6 +22815,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21865,6 +22862,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21885,6 +22883,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21907,6 +22906,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21927,6 +22927,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21947,6 +22948,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21986,6 +22988,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22000,6 +23003,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -22020,6 +23024,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22034,6 +23039,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -22080,6 +23086,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22100,6 +23107,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22122,6 +23130,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22142,6 +23151,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22162,6 +23172,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22201,6 +23212,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22215,6 +23227,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -22235,6 +23248,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22249,6 +23263,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -22269,6 +23284,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22283,6 +23299,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -22303,6 +23320,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22317,6 +23335,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -22363,6 +23382,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22383,6 +23403,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22405,6 +23426,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22425,6 +23447,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22445,6 +23468,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22484,6 +23508,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22498,6 +23523,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -22518,6 +23544,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22532,6 +23559,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -22578,6 +23606,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22598,6 +23627,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22620,6 +23650,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22640,6 +23671,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22660,6 +23692,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22699,6 +23732,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22713,6 +23747,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -22733,6 +23768,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22747,6 +23783,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -22793,6 +23830,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22813,6 +23851,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectDescriptorSets, projectDescriptorFields, @@ -22839,6 +23878,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectDescriptorSets, projectDescriptorFields, @@ -22863,6 +23903,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22883,6 +23924,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22922,6 +23964,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22936,6 +23979,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -22956,6 +24000,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22970,6 +24015,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -22990,6 +24036,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23004,6 +24051,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23024,6 +24072,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23038,6 +24087,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23084,6 +24134,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23104,6 +24155,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23126,6 +24178,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23146,6 +24199,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23166,6 +24220,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23205,6 +24260,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23219,6 +24275,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -23239,6 +24296,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23253,6 +24311,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23273,6 +24332,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23287,6 +24347,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23333,6 +24394,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23353,6 +24415,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23375,6 +24438,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23395,6 +24459,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23415,6 +24480,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23454,6 +24520,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23468,6 +24535,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -23488,6 +24556,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23502,6 +24571,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23522,6 +24592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23536,6 +24607,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23556,6 +24628,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23570,6 +24643,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23590,6 +24664,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23604,6 +24679,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23624,6 +24700,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23638,6 +24715,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23684,6 +24762,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23704,6 +24783,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23726,6 +24806,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23746,6 +24827,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23766,6 +24848,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23805,6 +24888,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23819,6 +24903,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -23839,6 +24924,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23853,6 +24939,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -23899,6 +24986,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23919,6 +25007,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23941,6 +25030,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23961,6 +25051,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23981,6 +25072,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24020,6 +25112,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24034,6 +25127,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -24054,6 +25148,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24068,6 +25163,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24088,6 +25184,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24102,6 +25199,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24122,6 +25220,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24136,6 +25235,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24156,6 +25256,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24170,6 +25271,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24216,6 +25318,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24236,6 +25339,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24258,6 +25362,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24278,6 +25383,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24298,6 +25404,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24337,6 +25444,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24351,6 +25459,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -24371,6 +25480,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24385,6 +25495,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24405,6 +25516,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24419,6 +25531,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24439,6 +25552,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24453,6 +25567,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24473,6 +25588,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24487,6 +25603,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24533,6 +25650,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24553,6 +25671,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24575,6 +25694,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24595,6 +25715,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24615,6 +25736,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24654,6 +25776,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24668,6 +25791,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -24688,6 +25812,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24702,6 +25827,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24722,6 +25848,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24736,6 +25863,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24756,6 +25884,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24770,6 +25899,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -24816,6 +25946,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24836,6 +25967,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24858,6 +25990,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24878,6 +26011,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24898,6 +26032,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24937,6 +26072,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24951,6 +26087,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -24971,6 +26108,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24985,6 +26123,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25005,6 +26144,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25019,6 +26159,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25039,6 +26180,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25053,6 +26195,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25099,6 +26242,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25119,6 +26263,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25141,6 +26286,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25161,6 +26307,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25181,6 +26328,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25220,6 +26368,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25234,6 +26383,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -25254,6 +26404,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25268,6 +26419,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25288,6 +26440,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25302,6 +26455,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25322,6 +26476,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25336,6 +26491,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25356,6 +26512,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25370,6 +26527,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25416,6 +26574,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25436,6 +26595,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25458,6 +26618,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25478,6 +26639,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25498,6 +26660,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25537,6 +26700,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25551,6 +26715,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -25571,6 +26736,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25585,6 +26751,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25605,6 +26772,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25619,6 +26787,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25639,6 +26808,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25653,6 +26823,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25673,6 +26844,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25687,6 +26859,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25707,6 +26880,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25721,6 +26895,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25741,6 +26916,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25755,6 +26931,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25775,6 +26952,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25789,6 +26967,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25809,6 +26988,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25823,6 +27003,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -25869,6 +27050,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25889,6 +27071,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -25920,6 +27103,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -25949,6 +27133,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25969,6 +27154,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26008,6 +27194,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26022,6 +27209,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -26042,6 +27230,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26056,6 +27245,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26076,6 +27266,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26090,6 +27281,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26110,6 +27302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26124,6 +27317,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26144,6 +27338,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26158,6 +27353,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26178,6 +27374,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26192,6 +27389,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26239,6 +27437,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26259,6 +27458,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ field, options @@ -26284,6 +27484,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26304,6 +27505,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26324,6 +27526,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26344,6 +27547,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ field, options @@ -26367,6 +27571,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26387,6 +27592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26426,6 +27632,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26440,6 +27647,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -26460,6 +27668,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26474,6 +27683,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26494,6 +27704,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26508,6 +27719,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26554,6 +27766,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26574,6 +27787,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26596,6 +27810,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26616,6 +27831,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26636,6 +27852,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26675,6 +27892,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26689,6 +27907,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -26709,6 +27928,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26723,6 +27943,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26743,6 +27964,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26757,6 +27979,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26803,6 +28026,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26823,6 +28047,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26845,6 +28070,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26865,6 +28091,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26885,6 +28112,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26924,6 +28152,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26938,6 +28167,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -26958,6 +28188,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26972,6 +28203,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -26992,6 +28224,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27006,6 +28239,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27026,6 +28260,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27040,6 +28275,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27060,6 +28296,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27074,6 +28311,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27094,6 +28332,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27108,6 +28347,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27128,6 +28368,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27142,6 +28383,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27162,6 +28404,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27176,6 +28419,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27222,6 +28466,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27242,6 +28487,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27264,6 +28510,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27284,6 +28531,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27304,6 +28552,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27343,6 +28592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27357,6 +28607,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -27377,6 +28628,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27391,6 +28643,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27411,6 +28664,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27425,6 +28679,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27445,6 +28700,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27459,6 +28715,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27479,6 +28736,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27493,6 +28751,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27513,6 +28772,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27527,6 +28787,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27547,6 +28808,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27561,6 +28823,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27581,6 +28844,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27595,6 +28859,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27615,6 +28880,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27629,6 +28895,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27649,6 +28916,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27663,6 +28931,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27709,6 +28978,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27729,6 +28999,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -27754,6 +29025,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -27777,6 +29049,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27797,6 +29070,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27836,6 +29110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27850,6 +29125,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -27870,6 +29146,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27884,6 +29161,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27904,6 +29182,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27918,6 +29197,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27938,6 +29218,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27952,6 +29233,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -27972,6 +29254,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27986,6 +29269,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28006,6 +29290,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28020,6 +29305,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28040,6 +29326,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28054,6 +29341,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28100,6 +29388,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28120,6 +29409,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -28145,6 +29435,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -28168,6 +29459,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28188,6 +29480,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28227,6 +29520,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28241,6 +29535,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -28261,6 +29556,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28275,6 +29571,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28295,6 +29592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28309,6 +29607,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28329,6 +29628,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28343,6 +29643,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28363,6 +29664,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28377,6 +29679,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28397,6 +29700,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28411,6 +29715,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28431,6 +29736,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28445,6 +29751,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28491,6 +29798,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28511,6 +29819,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -28536,6 +29845,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -28559,6 +29869,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28579,6 +29890,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28618,6 +29930,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28632,6 +29945,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -28652,6 +29966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28666,6 +29981,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28686,6 +30002,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28700,6 +30017,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28720,6 +30038,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28734,6 +30053,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28754,6 +30074,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28768,6 +30089,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28788,6 +30110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28802,6 +30125,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28822,6 +30146,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28836,6 +30161,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28882,6 +30208,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28902,6 +30229,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -28927,6 +30255,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -28950,6 +30279,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28970,6 +30300,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29009,6 +30340,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29023,6 +30355,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -29043,6 +30376,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29057,6 +30391,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29077,6 +30412,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29091,6 +30427,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29111,6 +30448,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29125,6 +30463,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29145,6 +30484,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29159,6 +30499,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29179,6 +30520,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29193,6 +30535,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29213,6 +30556,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29227,6 +30571,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29247,6 +30592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29261,6 +30607,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29281,6 +30628,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29295,6 +30643,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29341,6 +30690,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29361,6 +30711,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -29386,6 +30737,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -29409,6 +30761,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29429,6 +30782,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29468,6 +30822,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29482,6 +30837,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -29502,6 +30858,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29516,6 +30873,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29536,6 +30894,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29550,6 +30909,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29570,6 +30930,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29584,6 +30945,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29604,6 +30966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29618,6 +30981,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29638,6 +31002,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29652,6 +31017,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29672,6 +31038,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29686,6 +31053,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29732,6 +31100,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29752,6 +31121,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -29777,6 +31147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ excerptData, tagApps @@ -29800,6 +31171,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29820,6 +31192,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29859,6 +31232,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29873,6 +31247,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -29893,6 +31268,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29907,6 +31283,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29927,6 +31304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29941,6 +31319,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -29987,6 +31366,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30007,6 +31387,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -30044,6 +31425,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -30079,6 +31461,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30099,6 +31482,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30138,6 +31522,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30152,6 +31537,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -30172,6 +31558,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30186,6 +31573,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30206,6 +31594,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30220,6 +31609,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30240,6 +31630,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30254,6 +31645,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30300,6 +31692,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30320,6 +31713,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30342,6 +31736,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30362,6 +31757,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30382,6 +31778,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30421,6 +31818,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30435,6 +31833,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -30455,6 +31854,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30469,6 +31869,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30515,6 +31916,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30535,6 +31937,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30557,6 +31960,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30577,6 +31981,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30597,6 +32002,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30636,6 +32042,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30650,6 +32057,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -30670,6 +32078,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30684,6 +32093,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30730,6 +32140,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30750,6 +32161,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30772,6 +32184,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30792,6 +32205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30812,6 +32226,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30851,6 +32266,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30865,6 +32281,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -30885,6 +32302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30899,6 +32317,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30919,6 +32338,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30933,6 +32353,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30979,6 +32400,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30999,6 +32421,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31021,6 +32444,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31041,6 +32465,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31061,6 +32486,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31100,6 +32526,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31114,6 +32541,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -31134,6 +32562,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31148,6 +32577,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31168,6 +32598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31182,6 +32613,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31228,6 +32660,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31248,6 +32681,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31270,6 +32704,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31290,6 +32725,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31310,6 +32746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31349,6 +32786,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31363,6 +32801,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -31383,6 +32822,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31397,6 +32837,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31417,6 +32858,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31431,6 +32873,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31451,6 +32894,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31465,6 +32909,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31485,6 +32930,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31499,6 +32945,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31519,6 +32966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31533,6 +32981,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31553,6 +33002,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31567,6 +33017,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31613,6 +33064,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31633,6 +33085,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -31670,6 +33123,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -31705,6 +33159,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31725,6 +33180,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31764,6 +33220,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31778,6 +33235,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -31798,6 +33256,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31812,6 +33271,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31832,6 +33292,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31846,6 +33307,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31866,6 +33328,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31880,6 +33343,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31926,6 +33390,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31946,6 +33411,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -31983,6 +33449,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -32018,6 +33485,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32038,6 +33506,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32077,6 +33546,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32091,6 +33561,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -32111,6 +33582,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32125,6 +33597,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32145,6 +33618,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32159,6 +33633,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32179,6 +33654,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32193,6 +33669,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32213,6 +33690,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32227,6 +33705,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32247,6 +33726,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32261,6 +33741,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32307,6 +33788,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32327,6 +33809,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -32364,6 +33847,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -32399,6 +33883,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32419,6 +33904,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32458,6 +33944,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32472,6 +33959,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -32492,6 +33980,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32506,6 +33995,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32526,6 +34016,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32540,6 +34031,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32560,6 +34052,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32574,6 +34067,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32594,6 +34088,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32608,6 +34103,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32628,6 +34124,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32642,6 +34139,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32688,6 +34186,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32708,6 +34207,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -32745,6 +34245,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -32780,6 +34281,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32800,6 +34302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32839,6 +34342,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32853,6 +34357,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -32873,6 +34378,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32887,6 +34393,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32933,6 +34440,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32953,6 +34461,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32975,6 +34484,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32995,6 +34505,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33015,6 +34526,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33054,6 +34566,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33068,6 +34581,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -33088,6 +34602,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33102,6 +34617,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33148,6 +34664,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33168,6 +34685,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33190,6 +34708,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33210,6 +34729,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33230,6 +34750,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33269,6 +34790,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33283,6 +34805,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -33303,6 +34826,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33317,6 +34841,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33363,6 +34888,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33383,6 +34909,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33405,6 +34932,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33425,6 +34953,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33445,6 +34974,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33484,6 +35014,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33498,6 +35029,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -33518,6 +35050,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33532,6 +35065,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33578,6 +35112,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33598,6 +35133,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33620,6 +35156,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33640,6 +35177,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33660,6 +35198,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33699,6 +35238,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33713,6 +35253,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -33733,6 +35274,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33747,6 +35289,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33767,6 +35310,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33781,6 +35325,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33801,6 +35346,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33815,6 +35361,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33835,6 +35382,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33849,6 +35397,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33869,6 +35418,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33883,6 +35433,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33903,6 +35454,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33917,6 +35469,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33937,6 +35490,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33951,6 +35505,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33971,6 +35526,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33985,6 +35541,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34005,6 +35562,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34019,6 +35577,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34039,6 +35598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34053,6 +35613,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34073,6 +35634,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34087,6 +35649,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34107,6 +35670,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34121,6 +35685,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34141,6 +35706,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34155,6 +35721,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34175,6 +35742,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34189,6 +35757,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34209,6 +35778,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34223,6 +35793,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34243,6 +35814,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34257,6 +35829,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34304,6 +35877,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34324,6 +35898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34346,6 +35921,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34366,6 +35942,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34386,6 +35963,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34406,6 +35984,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34426,6 +36005,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34446,6 +36026,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34485,6 +36066,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34499,6 +36081,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -34519,6 +36102,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34533,6 +36117,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34553,6 +36138,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34567,6 +36153,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34587,6 +36174,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34601,6 +36189,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34621,6 +36210,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34635,6 +36225,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34655,6 +36246,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34669,6 +36261,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34689,6 +36282,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34703,6 +36297,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34723,6 +36318,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34737,6 +36333,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34757,6 +36354,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34771,6 +36369,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -34817,6 +36416,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34837,6 +36437,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34859,6 +36460,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34879,6 +36481,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34899,6 +36502,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34938,6 +36542,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34952,6 +36557,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -34972,6 +36578,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34986,6 +36593,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35006,6 +36614,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35020,6 +36629,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35040,6 +36650,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35054,6 +36665,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35100,6 +36712,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35120,6 +36733,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35142,6 +36756,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35162,6 +36777,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35182,6 +36798,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35221,6 +36838,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35235,6 +36853,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -35255,6 +36874,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35269,6 +36889,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35289,6 +36910,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35303,6 +36925,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35349,6 +36972,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35369,6 +36993,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35391,6 +37016,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35411,6 +37037,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35431,6 +37058,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35470,6 +37098,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35484,6 +37113,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -35504,6 +37134,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35518,6 +37149,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35538,6 +37170,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35552,6 +37185,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35572,6 +37206,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35586,6 +37221,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35606,6 +37242,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35620,6 +37257,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35640,6 +37278,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35654,6 +37293,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35674,6 +37314,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35688,6 +37329,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35708,6 +37350,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35722,6 +37365,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35742,6 +37386,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35756,6 +37401,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35802,6 +37448,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35822,6 +37469,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35844,6 +37492,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35864,6 +37513,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35884,6 +37534,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35923,6 +37574,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35937,6 +37589,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -35957,6 +37610,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35971,6 +37625,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -35991,6 +37646,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36005,6 +37661,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36025,6 +37682,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36039,6 +37697,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36059,6 +37718,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36073,6 +37733,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36119,6 +37780,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -36139,6 +37801,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36161,6 +37824,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36181,6 +37845,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36201,6 +37866,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36240,6 +37906,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36254,6 +37921,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -36274,6 +37942,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36288,6 +37957,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36334,6 +38004,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -36354,6 +38025,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36376,6 +38048,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36396,6 +38069,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36416,6 +38090,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36455,6 +38130,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36469,6 +38145,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -36489,6 +38166,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36503,6 +38181,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36549,6 +38228,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -36569,6 +38249,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36591,6 +38272,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36611,6 +38293,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36631,6 +38314,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36670,6 +38354,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36684,6 +38369,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -36704,6 +38390,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36718,6 +38405,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36764,6 +38452,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -36784,6 +38473,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36806,6 +38496,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36826,6 +38517,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36846,6 +38538,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36885,6 +38578,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36899,6 +38593,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -36919,6 +38614,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36933,6 +38629,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36953,6 +38650,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36967,6 +38665,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37013,6 +38712,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37033,6 +38733,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37055,6 +38756,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37075,6 +38777,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37095,6 +38798,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37134,6 +38838,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37148,6 +38853,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -37168,6 +38874,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37182,6 +38889,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37228,6 +38936,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37248,6 +38957,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37270,6 +38980,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37290,6 +39001,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37310,6 +39022,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37349,6 +39062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37363,6 +39077,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -37409,6 +39124,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37429,6 +39145,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ modulus, exponent @@ -37454,6 +39171,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ modulus, exponent @@ -37477,6 +39195,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37497,6 +39216,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37536,6 +39256,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37550,6 +39271,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -37570,6 +39292,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37584,6 +39307,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37630,6 +39354,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37650,6 +39375,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37672,6 +39398,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37692,6 +39419,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37712,6 +39440,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37751,6 +39480,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37765,6 +39495,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -37785,6 +39516,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37799,6 +39531,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37819,6 +39552,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37833,6 +39567,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37879,6 +39614,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37899,6 +39635,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37921,6 +39658,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37941,6 +39679,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37961,6 +39700,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38000,6 +39740,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38014,6 +39755,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -38034,6 +39776,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38048,6 +39791,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -38068,6 +39812,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38082,6 +39827,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -38102,6 +39848,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38116,6 +39863,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -38136,6 +39884,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38150,6 +39899,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -38196,6 +39946,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38216,6 +39967,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38238,6 +39990,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38258,6 +40011,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38278,6 +40032,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38317,6 +40072,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38331,6 +40087,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -38351,6 +40108,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38365,6 +40123,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -38411,6 +40170,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38431,6 +40191,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38453,6 +40214,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38473,6 +40235,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38493,6 +40256,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38557,6 +40321,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38577,6 +40342,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38599,6 +40365,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38638,6 +40405,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38652,6 +40420,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -38698,6 +40467,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38718,6 +40488,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38740,6 +40511,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38760,6 +40532,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38780,6 +40553,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38819,6 +40593,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38833,6 +40608,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -38853,6 +40629,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38867,6 +40644,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -38913,6 +40691,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38933,6 +40712,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38955,6 +40735,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38975,6 +40756,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38995,6 +40777,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39059,6 +40842,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39079,6 +40863,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39101,6 +40886,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39140,6 +40926,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39154,6 +40941,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -39174,6 +40962,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39188,6 +40977,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -39234,6 +41024,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39254,6 +41045,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39276,6 +41068,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39296,6 +41089,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39316,6 +41110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39380,6 +41175,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39400,6 +41196,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39422,6 +41219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39461,6 +41259,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39475,6 +41274,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39492,6 +41292,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39506,6 +41307,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39550,6 +41352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ username, rsaEncryptedPassword @@ -39573,6 +41376,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39595,6 +41399,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ username, rsaEncryptedPassword @@ -39618,6 +41423,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ username, rsaEncryptedPassword @@ -39641,6 +41447,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ username, rsaEncryptedPassword @@ -39664,6 +41471,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39684,6 +41492,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39704,6 +41513,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39743,6 +41553,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39757,6 +41568,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -39803,6 +41615,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39823,6 +41636,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ userData, isFederated, @@ -39852,6 +41666,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ userData, isFederated, @@ -39879,6 +41694,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39899,6 +41715,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39938,6 +41755,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39952,6 +41770,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -39972,6 +41791,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39986,6 +41806,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40006,6 +41827,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40020,6 +41842,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40040,6 +41863,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40054,6 +41878,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40100,6 +41925,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40120,6 +41946,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -40147,6 +41974,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -40172,6 +42000,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40192,6 +42021,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40231,6 +42061,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40245,6 +42076,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -40265,6 +42097,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40279,6 +42112,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40299,6 +42133,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40313,6 +42148,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40333,6 +42169,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40347,6 +42184,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40367,6 +42205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40381,6 +42220,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40401,6 +42241,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40415,6 +42256,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40435,6 +42277,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40449,6 +42292,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40469,6 +42313,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40483,6 +42328,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40503,6 +42349,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40517,6 +42364,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40563,6 +42411,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40583,6 +42432,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ memoData, links, @@ -40609,6 +42459,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ memoData, links, @@ -40633,6 +42484,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40653,6 +42505,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40692,6 +42545,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40706,6 +42560,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -40726,6 +42581,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40740,6 +42596,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40760,6 +42617,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40774,6 +42632,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40794,6 +42653,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40808,6 +42668,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -40854,6 +42715,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40874,6 +42736,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40896,6 +42759,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40916,6 +42780,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40936,6 +42801,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40975,6 +42841,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40989,6 +42856,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -41009,6 +42877,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41023,6 +42892,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41043,6 +42913,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41057,6 +42928,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41077,6 +42949,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41091,6 +42964,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41111,6 +42985,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41125,6 +43000,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41171,6 +43047,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41191,6 +43068,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -41218,6 +43096,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -41243,6 +43122,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41263,6 +43143,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41302,6 +43183,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41316,6 +43198,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -41336,6 +43219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41350,6 +43234,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41370,6 +43255,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41384,6 +43270,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41404,6 +43291,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41418,6 +43306,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41438,6 +43327,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41452,6 +43342,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41472,6 +43363,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41486,6 +43378,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41506,6 +43399,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41520,6 +43414,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41540,6 +43435,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41554,6 +43450,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41574,6 +43471,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41588,6 +43486,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41608,6 +43507,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41622,6 +43522,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41642,6 +43543,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41656,6 +43558,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41702,6 +43605,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41722,6 +43626,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -41755,6 +43660,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -41786,6 +43692,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41806,6 +43713,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41845,6 +43753,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41859,6 +43768,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -41879,6 +43789,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41893,6 +43804,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41939,6 +43851,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41959,6 +43872,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41981,6 +43895,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42001,6 +43916,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42021,6 +43937,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42060,6 +43977,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42074,6 +43992,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -42094,6 +44013,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42108,6 +44028,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -42154,6 +44075,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42174,6 +44096,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42196,6 +44119,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42216,6 +44140,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42236,6 +44161,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42275,6 +44201,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42289,6 +44216,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -42309,6 +44237,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42323,6 +44252,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -42369,6 +44299,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42389,6 +44320,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42411,6 +44343,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42431,6 +44364,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42451,6 +44385,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42490,6 +44425,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42504,6 +44440,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -42524,6 +44461,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42538,6 +44476,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -42584,6 +44523,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42604,6 +44544,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42626,6 +44567,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42646,6 +44588,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42666,6 +44609,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42705,6 +44649,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42719,6 +44664,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -42739,6 +44685,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42753,6 +44700,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -42773,6 +44721,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42787,6 +44736,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -42807,6 +44757,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42821,6 +44772,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -42867,6 +44819,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42887,6 +44840,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42909,6 +44863,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42929,6 +44884,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42949,6 +44905,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42988,6 +44945,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43002,6 +44960,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -43022,6 +44981,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43036,6 +44996,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43056,6 +45017,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43070,6 +45032,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43090,6 +45053,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43104,6 +45068,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43124,6 +45089,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43138,6 +45104,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43158,6 +45125,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43172,6 +45140,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43192,6 +45161,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43206,6 +45176,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43226,6 +45197,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43240,6 +45212,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43260,6 +45233,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43274,6 +45248,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43294,6 +45269,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43308,6 +45284,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43328,6 +45305,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43342,6 +45320,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43388,6 +45367,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43408,6 +45388,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43430,6 +45411,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43450,6 +45432,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43470,6 +45453,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43509,6 +45493,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43523,6 +45508,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -43543,6 +45529,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43557,6 +45544,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43603,6 +45591,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43623,6 +45612,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ memos, folders, @@ -43650,6 +45640,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ memos, folders, @@ -43675,6 +45666,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43695,6 +45687,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43734,6 +45727,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43748,6 +45742,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -43768,6 +45763,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43782,6 +45778,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43802,6 +45799,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43816,6 +45814,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43836,6 +45835,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43850,6 +45850,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43896,6 +45897,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43916,6 +45918,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43938,6 +45941,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43958,6 +45962,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43978,6 +45983,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44017,6 +46023,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44031,6 +46038,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -44051,6 +46059,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44065,6 +46074,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44085,6 +46095,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44099,6 +46110,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44119,6 +46131,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44133,6 +46146,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44153,6 +46167,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44167,6 +46182,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44187,6 +46203,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44201,6 +46218,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44221,6 +46239,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44235,6 +46254,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44255,6 +46275,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44269,6 +46290,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44289,6 +46311,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44303,6 +46326,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44323,6 +46347,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44337,6 +46362,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44383,6 +46409,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44403,6 +46430,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44425,6 +46453,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44445,6 +46474,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44465,6 +46495,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44504,6 +46535,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44518,6 +46550,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -44538,6 +46571,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44552,6 +46586,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44572,6 +46607,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44586,6 +46622,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44606,6 +46643,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44620,6 +46658,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44640,6 +46679,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44654,6 +46694,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44674,6 +46715,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44688,6 +46730,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44708,6 +46751,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44722,6 +46766,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44742,6 +46787,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44756,6 +46802,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44802,6 +46849,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44822,6 +46870,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44844,6 +46893,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44864,6 +46914,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44884,6 +46935,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44923,6 +46975,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44937,6 +46990,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -44957,6 +47011,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44971,6 +47026,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -44991,6 +47047,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45005,6 +47062,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45051,6 +47109,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45071,6 +47130,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45093,6 +47153,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45113,6 +47174,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45133,6 +47195,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45172,6 +47235,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45186,6 +47250,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -45206,6 +47271,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45220,6 +47286,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45240,6 +47307,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45254,6 +47322,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45300,6 +47369,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45320,6 +47390,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45342,6 +47413,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45362,6 +47434,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45382,6 +47455,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45421,6 +47495,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45435,6 +47510,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -45455,6 +47531,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45469,6 +47546,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45489,6 +47567,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45503,6 +47582,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45523,6 +47603,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45537,6 +47618,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45557,6 +47639,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45571,6 +47654,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45591,6 +47675,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45605,6 +47690,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45625,6 +47711,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45639,6 +47726,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45685,6 +47773,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45705,6 +47794,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45727,6 +47817,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45747,6 +47838,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45767,6 +47859,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45806,6 +47899,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45820,6 +47914,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -45840,6 +47935,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45854,6 +47950,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45874,6 +47971,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45888,6 +47986,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45908,6 +48007,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45922,6 +48022,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -45968,6 +48069,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45988,6 +48090,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -46015,6 +48118,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -46040,6 +48144,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46060,6 +48165,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46099,6 +48205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46113,6 +48220,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -46133,6 +48241,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46147,6 +48256,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46167,6 +48277,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46181,6 +48292,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46201,6 +48313,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46215,6 +48328,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46235,6 +48349,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46249,6 +48364,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46269,6 +48385,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46283,6 +48400,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46303,6 +48421,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46317,6 +48436,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46337,6 +48457,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46351,6 +48472,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46371,6 +48493,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46385,6 +48508,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46405,6 +48529,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46419,6 +48544,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46439,6 +48565,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46453,6 +48580,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46473,6 +48601,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46487,6 +48616,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46507,6 +48637,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46521,6 +48652,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46541,6 +48673,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46555,6 +48688,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46575,6 +48709,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46589,6 +48724,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46609,6 +48745,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46623,6 +48760,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46669,6 +48807,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46689,6 +48828,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ memoData, links, @@ -46715,6 +48855,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ memoData, links, @@ -46739,6 +48880,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46759,6 +48901,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46798,6 +48941,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46812,6 +48956,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -46832,6 +48977,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46846,6 +48992,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46866,6 +49013,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46880,6 +49028,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46900,6 +49049,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46914,6 +49064,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -46960,6 +49111,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46980,6 +49132,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -47010,6 +49163,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -47038,6 +49192,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47058,6 +49213,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47097,6 +49253,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47111,6 +49268,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -47131,6 +49289,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47145,6 +49304,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47165,6 +49325,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47179,6 +49340,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47199,6 +49361,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47213,6 +49376,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47233,6 +49397,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47247,6 +49412,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47293,6 +49459,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47313,6 +49480,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -47343,6 +49511,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -47371,6 +49540,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47391,6 +49561,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47430,6 +49601,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47444,6 +49616,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -47464,6 +49637,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47478,6 +49652,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47498,6 +49673,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47512,6 +49688,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47558,6 +49735,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47578,6 +49756,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47600,6 +49779,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47620,6 +49800,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47640,6 +49821,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47679,6 +49861,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47693,6 +49876,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -47739,6 +49923,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47759,6 +49944,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47781,6 +49967,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47801,6 +49988,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47821,6 +50009,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47860,6 +50049,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47874,6 +50064,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -47894,6 +50085,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47908,6 +50100,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47954,6 +50147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47974,6 +50168,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47996,6 +50191,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48016,6 +50212,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48036,6 +50233,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48075,6 +50273,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48089,6 +50288,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -48109,6 +50309,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48123,6 +50324,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -48169,6 +50371,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48189,6 +50392,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48211,6 +50415,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48231,6 +50436,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48251,6 +50457,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48290,6 +50497,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48304,6 +50512,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -48324,6 +50533,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48338,6 +50548,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -48384,6 +50595,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48404,6 +50616,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -48434,6 +50647,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -48462,6 +50676,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48482,6 +50697,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48521,6 +50737,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48535,6 +50752,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -48555,6 +50773,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48569,6 +50788,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -48615,6 +50835,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48635,6 +50856,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -48665,6 +50887,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -48693,6 +50916,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48713,6 +50937,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48752,6 +50977,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48766,6 +50992,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -48786,6 +51013,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48800,6 +51028,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -48846,6 +51075,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48866,6 +51096,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48888,6 +51119,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48908,6 +51140,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48928,6 +51161,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48967,6 +51201,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48981,6 +51216,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -49001,6 +51237,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49015,6 +51252,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -49061,6 +51299,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49081,6 +51320,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ resourcesToProcess, resourcesProcessed, @@ -49112,6 +51352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ resourcesToProcess, resourcesProcessed, @@ -49141,6 +51382,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49161,6 +51403,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49200,6 +51443,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49214,6 +51458,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -49234,6 +51479,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49248,6 +51494,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -49294,6 +51541,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49314,6 +51562,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49336,6 +51585,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49356,6 +51606,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49376,6 +51627,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49415,6 +51667,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49429,6 +51682,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -49449,6 +51703,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49463,6 +51718,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -49483,6 +51739,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49497,6 +51754,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -49543,6 +51801,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49563,6 +51822,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49585,6 +51845,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49605,6 +51866,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49625,6 +51887,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49664,6 +51927,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49678,6 +51942,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -49698,6 +51963,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49712,6 +51978,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -49732,6 +51999,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49746,6 +52014,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -49766,6 +52035,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49780,6 +52050,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -49800,6 +52071,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49814,6 +52086,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -49860,6 +52133,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49880,6 +52154,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49902,6 +52177,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49922,6 +52198,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49942,6 +52219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49981,6 +52259,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49995,6 +52274,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -50015,6 +52295,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50029,6 +52310,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50049,6 +52331,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50063,6 +52346,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50109,6 +52393,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50129,6 +52414,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50151,6 +52437,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50171,6 +52458,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50191,6 +52479,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50230,6 +52519,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50244,6 +52534,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -50264,6 +52555,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50278,6 +52570,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50298,6 +52591,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50312,6 +52606,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50332,6 +52627,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50346,6 +52642,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50366,6 +52663,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50380,6 +52678,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50400,6 +52699,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50414,6 +52714,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50460,6 +52761,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50480,6 +52782,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50502,6 +52805,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50522,6 +52826,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50542,6 +52847,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50581,6 +52887,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50595,6 +52902,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -50615,6 +52923,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50629,6 +52938,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50649,6 +52959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50663,6 +52974,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50683,6 +52995,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50697,6 +53010,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50743,6 +53057,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50763,6 +53078,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50785,6 +53101,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50805,6 +53122,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50825,6 +53143,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50864,6 +53183,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50878,6 +53198,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -50898,6 +53219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50912,6 +53234,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50932,6 +53255,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50946,6 +53270,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50966,6 +53291,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50980,6 +53306,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51026,6 +53353,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51046,6 +53374,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -51076,6 +53405,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, title, @@ -51104,6 +53434,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51124,6 +53455,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51163,6 +53495,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51177,6 +53510,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -51197,6 +53531,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51211,6 +53546,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51231,6 +53567,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51245,6 +53582,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51265,6 +53603,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51279,6 +53618,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51299,6 +53639,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51313,6 +53654,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51333,6 +53675,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51347,6 +53690,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51393,6 +53737,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51413,6 +53758,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51435,6 +53781,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51455,6 +53802,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51475,6 +53823,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51514,6 +53863,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51528,6 +53878,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -51548,6 +53899,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51562,6 +53914,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51582,6 +53935,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51596,6 +53950,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51616,6 +53971,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51630,6 +53986,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51650,6 +54007,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51664,6 +54022,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51684,6 +54043,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51698,6 +54058,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51718,6 +54079,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51732,6 +54094,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51752,6 +54115,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51766,6 +54130,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -51812,6 +54177,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51832,6 +54198,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -51868,6 +54235,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -51902,6 +54270,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51922,6 +54291,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51961,6 +54331,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51975,6 +54346,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -51995,6 +54367,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52009,6 +54382,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52029,6 +54403,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52043,6 +54418,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52063,6 +54439,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52077,6 +54454,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52097,6 +54475,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52111,6 +54490,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52157,6 +54537,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52177,6 +54558,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52199,6 +54581,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52219,6 +54602,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52239,6 +54623,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52278,6 +54663,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52292,6 +54678,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -52312,6 +54699,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52326,6 +54714,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52346,6 +54735,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52360,6 +54750,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52380,6 +54771,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52394,6 +54786,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52414,6 +54807,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52428,6 +54822,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52448,6 +54843,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52462,6 +54858,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52508,6 +54905,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52528,6 +54926,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52550,6 +54949,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52570,6 +54970,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52590,6 +54991,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52629,6 +55031,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52643,6 +55046,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -52663,6 +55067,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52677,6 +55082,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52697,6 +55103,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52711,6 +55118,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52731,6 +55139,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52745,6 +55154,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52765,6 +55175,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52779,6 +55190,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52825,6 +55237,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52845,6 +55258,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ document, excerpts, @@ -52871,6 +55285,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ document, excerpts, @@ -52895,6 +55310,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52915,6 +55331,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52954,6 +55371,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52968,6 +55386,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -52988,6 +55407,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53002,6 +55422,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53022,6 +55443,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53036,6 +55458,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53056,6 +55479,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53070,6 +55494,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53090,6 +55515,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53104,6 +55530,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53124,6 +55551,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53138,6 +55566,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53158,6 +55587,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53172,6 +55602,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53192,6 +55623,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53206,6 +55638,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53226,6 +55659,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53240,6 +55674,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53260,6 +55695,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53274,6 +55710,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53294,6 +55731,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53308,6 +55746,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53328,6 +55767,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53342,6 +55782,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53362,6 +55803,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53376,6 +55818,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53396,6 +55839,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53410,6 +55854,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53430,6 +55875,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53444,6 +55890,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53490,6 +55937,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -53510,6 +55958,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -53546,6 +55995,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -53580,6 +56030,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53600,6 +56051,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53639,6 +56091,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53653,6 +56106,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -53673,6 +56127,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53687,6 +56142,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53707,6 +56163,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53721,6 +56178,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53741,6 +56199,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53755,6 +56214,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53775,6 +56235,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53789,6 +56250,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53809,6 +56271,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53823,6 +56286,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53843,6 +56307,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53857,6 +56322,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53877,6 +56343,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53891,6 +56358,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53937,6 +56405,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -53957,6 +56426,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53979,6 +56449,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53999,6 +56470,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54019,6 +56491,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54058,6 +56531,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54072,6 +56546,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -54092,6 +56567,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54106,6 +56582,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -54152,6 +56629,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54172,6 +56650,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -54208,6 +56687,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -54242,6 +56722,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54262,6 +56743,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54301,6 +56783,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54315,6 +56798,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -54335,6 +56819,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54349,6 +56834,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -54395,6 +56881,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54415,6 +56902,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54437,6 +56925,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54457,6 +56946,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54477,6 +56967,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54516,6 +57007,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54530,6 +57022,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -54550,6 +57043,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54564,6 +57058,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -54610,6 +57105,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54630,6 +57126,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -54666,6 +57163,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -54700,6 +57198,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54720,6 +57219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54759,6 +57259,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54773,6 +57274,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -54793,6 +57295,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54807,6 +57310,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -54827,6 +57331,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54841,6 +57346,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -54887,6 +57393,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54907,6 +57414,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -54943,6 +57451,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -54977,6 +57486,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54997,6 +57507,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55036,6 +57547,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55050,6 +57562,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -55070,6 +57583,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55084,6 +57598,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55104,6 +57619,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55118,6 +57634,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55164,6 +57681,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55184,6 +57702,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55206,6 +57725,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55226,6 +57746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55246,6 +57767,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55285,6 +57807,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55299,6 +57822,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -55319,6 +57843,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55333,6 +57858,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55379,6 +57905,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55399,6 +57926,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55421,6 +57949,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55441,6 +57970,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55461,6 +57991,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55500,6 +58031,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55514,6 +58046,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -55534,6 +58067,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55548,6 +58082,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55594,6 +58129,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55614,6 +58150,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55636,6 +58173,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55656,6 +58194,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55676,6 +58215,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55715,6 +58255,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55729,6 +58270,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -55749,6 +58291,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55763,6 +58306,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55809,6 +58353,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55829,6 +58374,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55851,6 +58397,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55871,6 +58418,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55891,6 +58439,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55930,6 +58479,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55944,6 +58494,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -55964,6 +58515,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55978,6 +58530,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -56024,6 +58577,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56044,6 +58598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56066,6 +58621,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56086,6 +58642,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56106,6 +58663,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56145,6 +58703,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56159,6 +58718,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -56179,6 +58739,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56193,6 +58754,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -56213,6 +58775,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56227,6 +58790,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -56273,6 +58837,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56293,6 +58858,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56315,6 +58881,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56335,6 +58902,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56355,6 +58923,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56394,6 +58963,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56408,6 +58978,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -56428,6 +58999,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56442,6 +59014,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -56488,6 +59061,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56508,6 +59082,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56530,6 +59105,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56550,6 +59126,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56570,6 +59147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56609,6 +59187,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56623,6 +59202,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -56643,6 +59223,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56657,6 +59238,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -56677,6 +59259,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56691,6 +59274,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -56737,6 +59321,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56757,6 +59342,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56779,6 +59365,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56799,6 +59386,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56819,6 +59407,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56858,6 +59447,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56872,6 +59462,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -56892,6 +59483,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56906,6 +59498,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -56926,6 +59519,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56940,6 +59534,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -56986,6 +59581,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57006,6 +59602,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -57042,6 +59639,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -57076,6 +59674,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57096,6 +59695,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57135,6 +59735,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57149,6 +59750,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -57169,6 +59771,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57183,6 +59786,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -57229,6 +59833,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57249,6 +59854,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57271,6 +59877,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57291,6 +59898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57311,6 +59919,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57350,6 +59959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57364,6 +59974,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -57384,6 +59995,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57398,6 +60010,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -57444,6 +60057,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57464,6 +60078,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57486,6 +60101,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57506,6 +60122,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57526,6 +60143,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57565,6 +60183,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57579,6 +60198,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -57599,6 +60219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57613,6 +60234,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -57659,6 +60281,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57679,6 +60302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57701,6 +60325,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57721,6 +60346,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57741,6 +60367,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57780,6 +60407,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57794,6 +60422,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -57814,6 +60443,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57828,6 +60458,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -57848,6 +60479,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57862,6 +60494,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -57908,6 +60541,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57928,6 +60562,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57950,6 +60585,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57970,6 +60606,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57990,6 +60627,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58029,6 +60667,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58043,6 +60682,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -58063,6 +60703,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58077,6 +60718,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58097,6 +60739,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58111,6 +60754,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58131,6 +60775,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58145,6 +60790,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58165,6 +60811,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58179,6 +60826,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58225,6 +60873,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58245,6 +60894,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58267,6 +60917,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58287,6 +60938,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58307,6 +60959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58346,6 +60999,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58360,6 +61014,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -58380,6 +61035,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58394,6 +61050,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58414,6 +61071,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58428,6 +61086,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58448,6 +61107,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58462,6 +61122,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58482,6 +61143,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58496,6 +61158,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58542,6 +61205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58562,6 +61226,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58584,6 +61249,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58604,6 +61270,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58624,6 +61291,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58663,6 +61331,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58677,6 +61346,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -58697,6 +61367,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58711,6 +61382,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58731,6 +61403,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58745,6 +61418,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58765,6 +61439,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58779,6 +61454,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -58825,6 +61501,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58845,6 +61522,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58867,6 +61545,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58887,6 +61566,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58907,6 +61587,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58946,6 +61627,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58960,6 +61642,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -58980,6 +61663,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58994,6 +61678,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59014,6 +61699,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59028,6 +61714,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59074,6 +61761,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59094,6 +61782,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59116,6 +61805,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59136,6 +61826,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59156,6 +61847,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59195,6 +61887,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59209,6 +61902,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -59229,6 +61923,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59243,6 +61938,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59263,6 +61959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59277,6 +61974,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59323,6 +62021,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59343,6 +62042,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59365,6 +62065,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59385,6 +62086,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59405,6 +62107,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59444,6 +62147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59458,6 +62162,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -59478,6 +62183,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59492,6 +62198,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59512,6 +62219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59526,6 +62234,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59546,6 +62255,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59560,6 +62270,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59580,6 +62291,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59594,6 +62306,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59614,6 +62327,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59628,6 +62342,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59648,6 +62363,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59662,6 +62378,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59708,6 +62425,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59728,6 +62446,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59750,6 +62469,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59770,6 +62490,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59790,6 +62511,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59829,6 +62551,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59843,6 +62566,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -59863,6 +62587,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59877,6 +62602,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59897,6 +62623,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59911,6 +62638,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -59957,6 +62685,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59977,6 +62706,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59999,6 +62729,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60019,6 +62750,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60039,6 +62771,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60078,6 +62811,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60092,6 +62826,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -60112,6 +62847,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60126,6 +62862,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60146,6 +62883,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60160,6 +62898,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60180,6 +62919,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60194,6 +62934,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60214,6 +62955,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60228,6 +62970,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60274,6 +63017,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60294,6 +63038,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60316,6 +63061,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60336,6 +63082,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60356,6 +63103,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60395,6 +63143,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60409,6 +63158,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -60429,6 +63179,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60443,6 +63194,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60463,6 +63215,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60477,6 +63230,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60523,6 +63277,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60543,6 +63298,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60565,6 +63321,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60585,6 +63342,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60605,6 +63363,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60644,6 +63403,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60658,6 +63418,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -60678,6 +63439,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60692,6 +63454,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60712,6 +63475,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60726,6 +63490,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60746,6 +63511,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60760,6 +63526,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60780,6 +63547,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60794,6 +63562,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60814,6 +63583,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60828,6 +63598,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60848,6 +63619,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60862,6 +63634,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -60908,6 +63681,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60928,6 +63702,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60950,6 +63725,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60970,6 +63746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -60990,6 +63767,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61029,6 +63807,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61043,6 +63822,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -61063,6 +63843,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61077,6 +63858,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61097,6 +63879,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61111,6 +63894,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61131,6 +63915,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61145,6 +63930,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61165,6 +63951,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61179,6 +63966,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61225,6 +64013,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -61245,6 +64034,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -61281,6 +64071,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -61315,6 +64106,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61335,6 +64127,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61374,6 +64167,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61388,6 +64182,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -61408,6 +64203,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61422,6 +64218,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61442,6 +64239,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61456,6 +64254,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61476,6 +64275,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61490,6 +64290,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61510,6 +64311,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61524,6 +64326,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61544,6 +64347,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61558,6 +64362,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61578,6 +64383,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61592,6 +64398,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61612,6 +64419,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61626,6 +64434,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61672,6 +64481,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -61692,6 +64502,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61714,6 +64525,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61734,6 +64546,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61754,6 +64567,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61793,6 +64607,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61807,6 +64622,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -61827,6 +64643,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61841,6 +64658,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61861,6 +64679,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61875,6 +64694,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61895,6 +64715,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61909,6 +64730,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61929,6 +64751,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61943,6 +64766,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61963,6 +64787,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -61977,6 +64802,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -61997,6 +64823,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62011,6 +64838,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62031,6 +64859,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62045,6 +64874,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62065,6 +64895,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62079,6 +64910,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62099,6 +64931,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62113,6 +64946,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62159,6 +64993,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -62179,6 +65014,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62201,6 +65037,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62221,6 +65058,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62241,6 +65079,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62305,6 +65144,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -62325,6 +65165,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ modulus, exponent @@ -62350,6 +65191,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ modulus, exponent @@ -62392,6 +65234,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62406,6 +65249,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -62426,6 +65270,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62440,6 +65285,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62460,6 +65306,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62474,6 +65321,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62494,6 +65342,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62508,6 +65357,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62554,6 +65404,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -62574,6 +65425,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -62603,6 +65455,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -62630,6 +65483,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62650,6 +65504,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62689,6 +65544,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62703,6 +65559,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -62723,6 +65580,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62737,6 +65595,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62757,6 +65616,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62771,6 +65631,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62791,6 +65652,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62805,6 +65667,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62825,6 +65688,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62839,6 +65703,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62859,6 +65724,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62873,6 +65739,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62893,6 +65760,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62907,6 +65775,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -62953,6 +65822,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -62973,6 +65843,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -63002,6 +65873,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -63029,6 +65901,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63049,6 +65922,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63088,6 +65962,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63102,6 +65977,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -63148,6 +66024,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63168,6 +66045,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63190,6 +66068,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63210,6 +66089,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63230,6 +66110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63269,6 +66150,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63283,6 +66165,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -63303,6 +66186,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63317,6 +66201,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -63363,6 +66248,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63383,6 +66269,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63405,6 +66292,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63425,6 +66313,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63445,6 +66334,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63484,6 +66374,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63498,6 +66389,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -63518,6 +66410,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63532,6 +66425,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -63578,6 +66472,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63598,6 +66493,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63620,6 +66516,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63640,6 +66537,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63660,6 +66558,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63699,6 +66598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63713,6 +66613,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -63759,6 +66660,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63779,6 +66681,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63801,6 +66704,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63821,6 +66725,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63841,6 +66746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63880,6 +66786,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63894,6 +66801,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -63940,6 +66848,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63960,6 +66869,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63982,6 +66892,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64002,6 +66913,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64022,6 +66934,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64061,6 +66974,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64075,6 +66989,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -64095,6 +67010,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64109,6 +67025,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64129,6 +67046,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64143,6 +67061,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64189,6 +67108,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64209,6 +67129,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64231,6 +67152,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64251,6 +67173,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64271,6 +67194,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64310,6 +67234,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64324,6 +67249,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -64344,6 +67270,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64358,6 +67285,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64378,6 +67306,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64392,6 +67321,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64412,6 +67342,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64426,6 +67357,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64472,6 +67404,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64492,6 +67425,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64514,6 +67448,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64534,6 +67469,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64554,6 +67490,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64593,6 +67530,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64607,6 +67545,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -64627,6 +67566,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64641,6 +67581,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64661,6 +67602,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64675,6 +67617,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64695,6 +67638,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64709,6 +67653,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64729,6 +67674,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64743,6 +67689,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64789,6 +67736,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64809,6 +67757,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64831,6 +67780,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64851,6 +67801,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64871,6 +67822,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64910,6 +67862,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64924,6 +67877,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -64970,6 +67924,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64990,6 +67945,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65012,6 +67968,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65032,6 +67989,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65071,6 +68029,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65085,6 +68044,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65131,6 +68091,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65151,6 +68112,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65173,6 +68135,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65193,6 +68156,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65232,6 +68196,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65246,6 +68211,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -65292,6 +68258,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65312,6 +68279,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65334,6 +68302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65354,6 +68323,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65374,6 +68344,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65413,6 +68384,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65427,6 +68399,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -65447,6 +68420,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65461,6 +68435,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65481,6 +68456,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65495,6 +68471,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65541,6 +68518,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65561,6 +68539,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65583,6 +68562,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65603,6 +68583,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65623,6 +68604,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65662,6 +68644,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65676,6 +68659,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -65696,6 +68680,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65710,6 +68695,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65730,6 +68716,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65744,6 +68731,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65764,6 +68752,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65778,6 +68767,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65798,6 +68788,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65812,6 +68803,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65832,6 +68824,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65846,6 +68839,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65866,6 +68860,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65880,6 +68875,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -65926,6 +68922,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65946,6 +68943,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -65975,6 +68973,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -66002,6 +69001,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66022,6 +69022,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66061,6 +69062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66075,6 +69077,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -66095,6 +69098,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66109,6 +69113,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66155,6 +69160,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -66175,6 +69181,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ isComplete, errors, @@ -66201,6 +69208,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ isComplete, errors, @@ -66225,6 +69233,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66245,6 +69254,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66284,6 +69294,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66298,6 +69309,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -66318,6 +69330,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66332,6 +69345,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66352,6 +69366,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66366,6 +69381,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66386,6 +69402,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66400,6 +69417,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66446,6 +69464,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -66466,6 +69485,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66488,6 +69508,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66508,6 +69529,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66528,6 +69550,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66567,6 +69590,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66581,6 +69605,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -66601,6 +69626,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66615,6 +69641,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66635,6 +69662,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66649,6 +69677,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66669,6 +69698,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66683,6 +69713,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66703,6 +69734,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66717,6 +69749,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66737,6 +69770,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66751,6 +69785,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66771,6 +69806,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66785,6 +69821,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -66831,6 +69868,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -66851,6 +69889,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -66882,6 +69921,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -66911,6 +69951,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66931,6 +69972,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66970,6 +70012,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66984,6 +70027,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -67004,6 +70048,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67018,6 +70063,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67038,6 +70084,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67052,6 +70099,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67072,6 +70120,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67086,6 +70135,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67106,6 +70156,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67120,6 +70171,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67140,6 +70192,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67154,6 +70207,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67200,6 +70254,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -67220,6 +70275,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67242,6 +70298,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67262,6 +70319,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67282,6 +70340,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67321,6 +70380,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67335,6 +70395,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -67355,6 +70416,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67369,6 +70431,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67389,6 +70452,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67403,6 +70467,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67423,6 +70488,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67437,6 +70503,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67457,6 +70524,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67471,6 +70539,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67491,6 +70560,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67505,6 +70575,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67525,6 +70596,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67539,6 +70611,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67559,6 +70632,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67573,6 +70647,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67593,6 +70668,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67607,6 +70683,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67627,6 +70704,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67641,6 +70719,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67687,6 +70766,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -67707,6 +70787,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -67743,6 +70824,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -67777,6 +70859,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67797,6 +70880,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67836,6 +70920,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67850,6 +70935,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -67870,6 +70956,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67884,6 +70971,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67904,6 +70992,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67918,6 +71007,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67938,6 +71028,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67952,6 +71043,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -67972,6 +71064,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -67986,6 +71079,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68032,6 +71126,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -68052,6 +71147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -68082,6 +71178,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -68110,6 +71207,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68130,6 +71228,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68169,6 +71268,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68183,6 +71283,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -68203,6 +71304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68217,6 +71319,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68237,6 +71340,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68251,6 +71355,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68271,6 +71376,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68285,6 +71391,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68305,6 +71412,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68319,6 +71427,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68339,6 +71448,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68353,6 +71463,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68373,6 +71484,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68387,6 +71499,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68407,6 +71520,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68421,6 +71535,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68441,6 +71556,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68455,6 +71571,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68475,6 +71592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68489,6 +71607,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68509,6 +71628,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68523,6 +71643,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68569,6 +71690,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -68589,6 +71711,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -68625,6 +71748,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -68659,6 +71783,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68679,6 +71804,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68718,6 +71844,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68732,6 +71859,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -68752,6 +71880,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68766,6 +71895,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68786,6 +71916,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68800,6 +71931,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68820,6 +71952,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68834,6 +71967,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68854,6 +71988,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68868,6 +72003,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68888,6 +72024,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68902,6 +72039,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68922,6 +72060,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68936,6 +72075,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68956,6 +72096,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -68970,6 +72111,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -68990,6 +72132,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69004,6 +72147,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69024,6 +72168,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69038,6 +72183,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69058,6 +72204,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69072,6 +72219,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69092,6 +72240,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69106,6 +72255,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69126,6 +72276,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69140,6 +72291,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69160,6 +72312,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69174,6 +72327,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69194,6 +72348,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69208,6 +72363,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69254,6 +72410,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -69274,6 +72431,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69296,6 +72454,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69316,6 +72475,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69336,6 +72496,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69375,6 +72536,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69389,6 +72551,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -69409,6 +72572,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69423,6 +72587,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69443,6 +72608,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69457,6 +72623,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69477,6 +72644,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69491,6 +72659,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69511,6 +72680,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69525,6 +72695,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69545,6 +72716,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69559,6 +72731,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69579,6 +72752,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69593,6 +72767,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69613,6 +72788,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69627,6 +72803,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69647,6 +72824,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69661,6 +72839,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69707,6 +72886,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -69727,6 +72907,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -69757,6 +72938,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -69785,6 +72967,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69805,6 +72988,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69844,6 +73028,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69858,6 +73043,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -69878,6 +73064,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -69892,6 +73079,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -69938,6 +73126,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -69958,6 +73147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -69994,6 +73184,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -70028,6 +73219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70048,6 +73240,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70087,6 +73280,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70101,6 +73295,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -70121,6 +73316,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70135,6 +73331,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70155,6 +73352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70169,6 +73367,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70189,6 +73388,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70203,6 +73403,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70223,6 +73424,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70237,6 +73439,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70283,6 +73486,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -70303,6 +73507,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70325,6 +73530,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70345,6 +73551,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70365,6 +73572,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70404,6 +73612,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70418,6 +73627,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -70438,6 +73648,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70452,6 +73663,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70498,6 +73710,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -70518,6 +73731,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70540,6 +73754,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70560,6 +73775,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70580,6 +73796,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70619,6 +73836,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70633,6 +73851,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -70653,6 +73872,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70667,6 +73887,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70713,6 +73934,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -70733,6 +73955,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70755,6 +73978,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70775,6 +73999,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70795,6 +74020,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70834,6 +74060,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70848,6 +74075,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -70868,6 +74096,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70882,6 +74111,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70902,6 +74132,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70916,6 +74147,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70936,6 +74168,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -70950,6 +74183,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -70996,6 +74230,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -71016,6 +74251,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71038,6 +74274,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71058,6 +74295,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71078,6 +74316,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71117,6 +74356,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71131,6 +74371,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -71151,6 +74392,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71165,6 +74407,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -71211,6 +74454,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -71231,6 +74475,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71253,6 +74498,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71273,6 +74519,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71293,6 +74540,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71332,6 +74580,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71346,6 +74595,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -71366,6 +74616,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71380,6 +74631,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -71426,6 +74678,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -71446,6 +74699,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71468,6 +74722,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71488,6 +74743,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71508,6 +74764,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71547,6 +74804,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71561,6 +74819,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -71581,6 +74840,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71595,6 +74855,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -71641,6 +74902,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -71661,6 +74923,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71683,6 +74946,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71703,6 +74967,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71723,6 +74988,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71762,6 +75028,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71776,6 +75043,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -71796,6 +75064,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71810,6 +75079,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -71856,6 +75126,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -71876,6 +75147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71898,6 +75170,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71918,6 +75191,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71938,6 +75212,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71977,6 +75252,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -71991,6 +75267,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -72011,6 +75288,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72025,6 +75303,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -72071,6 +75350,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -72091,6 +75371,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72113,6 +75394,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72133,6 +75415,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72153,6 +75436,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72192,6 +75476,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72206,6 +75491,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -72226,6 +75512,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72240,6 +75527,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -72260,6 +75548,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72274,6 +75563,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -72294,6 +75584,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72308,6 +75599,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -72354,6 +75646,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -72374,6 +75667,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72396,6 +75690,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72416,6 +75711,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72436,6 +75732,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72475,6 +75772,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72489,6 +75787,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -72509,6 +75808,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72523,6 +75823,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -72543,6 +75844,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72557,6 +75859,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -72603,6 +75906,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -72623,6 +75927,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -72654,6 +75959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, projectId, @@ -72683,6 +75989,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72703,6 +76010,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72742,6 +76050,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72756,6 +76065,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -72776,6 +76086,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72790,6 +76101,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -72836,6 +76148,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -72856,6 +76169,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72878,6 +76192,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72898,6 +76213,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72918,6 +76234,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72957,6 +76274,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -72971,6 +76289,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -72991,6 +76310,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73005,6 +76325,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73025,6 +76346,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73039,6 +76361,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73085,6 +76408,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -73105,6 +76429,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73127,6 +76452,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73147,6 +76473,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73167,6 +76494,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73206,6 +76534,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73220,6 +76549,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -73240,6 +76570,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73254,6 +76585,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73274,6 +76606,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73288,6 +76621,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73334,6 +76668,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -73354,6 +76689,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73376,6 +76712,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73396,6 +76733,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73416,6 +76754,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73455,6 +76794,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73469,6 +76809,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -73489,6 +76830,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73503,6 +76845,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73523,6 +76866,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73537,6 +76881,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73557,6 +76902,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73571,6 +76917,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73591,6 +76938,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73605,6 +76953,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73625,6 +76974,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73639,6 +76989,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73659,6 +77010,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73673,6 +77025,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73693,6 +77046,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73707,6 +77061,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73727,6 +77082,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73741,6 +77097,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73761,6 +77118,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73775,6 +77133,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73795,6 +77154,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73809,6 +77169,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73829,6 +77190,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73843,6 +77205,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73863,6 +77226,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73877,6 +77241,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73897,6 +77262,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -73911,6 +77277,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -73957,6 +77324,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -73977,6 +77345,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -74013,6 +77382,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -74047,6 +77417,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74067,6 +77438,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74106,6 +77478,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74120,6 +77493,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -74140,6 +77514,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74154,6 +77529,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74174,6 +77550,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74188,6 +77565,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74208,6 +77586,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74222,6 +77601,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74268,6 +77648,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -74288,6 +77669,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74310,6 +77692,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74330,6 +77713,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74350,6 +77734,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74389,6 +77774,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74403,6 +77789,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -74423,6 +77810,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74437,6 +77825,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74457,6 +77846,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74471,6 +77861,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74491,6 +77882,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74505,6 +77897,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74525,6 +77918,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74539,6 +77933,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74559,6 +77954,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74573,6 +77969,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74593,6 +77990,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74607,6 +78005,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74627,6 +78026,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74641,6 +78041,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74687,6 +78088,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -74707,6 +78109,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -74737,6 +78140,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -74765,6 +78169,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74785,6 +78190,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74824,6 +78230,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74838,6 +78245,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -74858,6 +78266,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74872,6 +78281,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74892,6 +78302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74906,6 +78317,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -74952,6 +78364,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -74972,6 +78385,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -74994,6 +78408,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75014,6 +78429,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75034,6 +78450,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75073,6 +78490,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75087,6 +78505,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -75107,6 +78526,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75121,6 +78541,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75141,6 +78562,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75155,6 +78577,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75175,6 +78598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75189,6 +78613,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75209,6 +78634,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75223,6 +78649,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75243,6 +78670,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75257,6 +78685,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75277,6 +78706,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75291,6 +78721,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75311,6 +78742,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75325,6 +78757,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75371,6 +78804,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -75391,6 +78825,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75413,6 +78848,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75433,6 +78869,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75453,6 +78890,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75492,6 +78930,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75506,6 +78945,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -75526,6 +78966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75540,6 +78981,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75560,6 +79002,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75574,6 +79017,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75594,6 +79038,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75608,6 +79053,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75628,6 +79074,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75642,6 +79089,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75662,6 +79110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75676,6 +79125,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75696,6 +79146,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75710,6 +79161,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75730,6 +79182,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75744,6 +79197,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75764,6 +79218,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75778,6 +79233,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75798,6 +79254,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75812,6 +79269,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75832,6 +79290,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75846,6 +79305,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -75892,6 +79352,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -75912,6 +79373,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -75945,6 +79407,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -75976,6 +79439,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -75996,6 +79460,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76035,6 +79500,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76049,6 +79515,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -76069,6 +79536,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76083,6 +79551,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -76129,6 +79598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -76149,6 +79619,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -76182,6 +79653,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -76213,6 +79685,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76233,6 +79706,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76272,6 +79746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76286,6 +79761,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -76306,6 +79782,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76320,6 +79797,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -76340,6 +79818,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76354,6 +79833,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -76400,6 +79880,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -76420,6 +79901,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76442,6 +79924,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76462,6 +79945,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76482,6 +79966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76521,6 +80006,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76535,6 +80021,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -76555,6 +80042,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76569,6 +80057,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -76589,6 +80078,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76603,6 +80093,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -76649,6 +80140,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -76669,6 +80161,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76691,6 +80184,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76711,6 +80205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76731,6 +80226,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76770,6 +80266,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76784,6 +80281,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -76804,6 +80302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76818,6 +80317,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -76864,6 +80364,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -76884,6 +80385,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76906,6 +80408,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76926,6 +80429,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76946,6 +80450,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76985,6 +80490,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -76999,6 +80505,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -77019,6 +80526,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77033,6 +80541,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -77053,6 +80562,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77067,6 +80577,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -77087,6 +80598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77101,6 +80613,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -77147,6 +80660,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -77167,6 +80681,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77189,6 +80704,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77209,6 +80725,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77229,6 +80746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77268,6 +80786,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77282,6 +80801,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -77302,6 +80822,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77316,6 +80837,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -77362,6 +80884,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -77382,6 +80905,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77404,6 +80928,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77424,6 +80949,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77444,6 +80970,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77483,6 +81010,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77497,6 +81025,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -77517,6 +81046,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77531,6 +81061,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -77551,6 +81082,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77565,6 +81097,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -77611,6 +81144,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -77631,6 +81165,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77653,6 +81188,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77673,6 +81209,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77693,6 +81230,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77732,6 +81270,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77746,6 +81285,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -77766,6 +81306,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77780,6 +81321,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -77826,6 +81368,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -77846,6 +81389,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77868,6 +81412,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77888,6 +81433,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77908,6 +81454,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77947,6 +81494,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77961,6 +81509,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -77981,6 +81530,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -77995,6 +81545,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78015,6 +81566,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78029,6 +81581,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78049,6 +81602,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78063,6 +81617,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78083,6 +81638,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78097,6 +81653,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78117,6 +81674,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78131,6 +81689,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78151,6 +81710,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78165,6 +81725,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78211,6 +81772,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -78231,6 +81793,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -78263,6 +81826,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -78293,6 +81857,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78313,6 +81878,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78352,6 +81918,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78366,6 +81933,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -78386,6 +81954,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78400,6 +81969,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78420,6 +81990,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78434,6 +82005,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78454,6 +82026,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78468,6 +82041,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78488,6 +82062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78502,6 +82077,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78548,6 +82124,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -78568,6 +82145,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78590,6 +82168,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78610,6 +82189,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78630,6 +82210,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78669,6 +82250,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78683,6 +82265,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -78703,6 +82286,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78717,6 +82301,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78737,6 +82322,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78751,6 +82337,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78771,6 +82358,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78785,6 +82373,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78805,6 +82394,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78819,6 +82409,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78839,6 +82430,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78853,6 +82445,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78873,6 +82466,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78887,6 +82481,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78907,6 +82502,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -78921,6 +82517,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78967,6 +82564,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -78987,6 +82585,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -79019,6 +82618,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -79049,6 +82649,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79069,6 +82670,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79108,6 +82710,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79122,6 +82725,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -79139,6 +82743,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79153,6 +82758,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -79197,6 +82803,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ username, password @@ -79220,6 +82827,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79242,6 +82850,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ username, password @@ -79265,6 +82874,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ username, password @@ -79288,6 +82898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ username, password @@ -79311,6 +82922,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79331,6 +82943,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79351,6 +82964,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79390,6 +83004,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79404,6 +83019,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -79424,6 +83040,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79438,6 +83055,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -79458,6 +83076,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79472,6 +83091,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -79492,6 +83112,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79506,6 +83127,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -79553,6 +83175,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79573,6 +83196,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79595,6 +83219,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79615,6 +83240,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79635,6 +83261,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79655,6 +83282,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79675,6 +83303,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79695,6 +83324,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79734,6 +83364,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79748,6 +83379,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -79768,6 +83400,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79782,6 +83415,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -79828,6 +83462,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -79848,6 +83483,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79870,6 +83506,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79890,6 +83527,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79910,6 +83548,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79949,6 +83588,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79963,6 +83603,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -79983,6 +83624,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -79997,6 +83639,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80017,6 +83660,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80031,6 +83675,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80051,6 +83696,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80065,6 +83711,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80085,6 +83732,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80099,6 +83747,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80119,6 +83768,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80133,6 +83783,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80153,6 +83804,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80167,6 +83819,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80187,6 +83840,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80201,6 +83855,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80221,6 +83876,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80235,6 +83891,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80281,6 +83938,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -80301,6 +83959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ userData, userGroupLinkData @@ -80326,6 +83985,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ userData, userGroupLinkData @@ -80349,6 +84009,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80369,6 +84030,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80408,6 +84070,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80422,6 +84085,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80468,6 +84132,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -80488,6 +84153,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80510,6 +84176,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80530,6 +84197,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80569,6 +84237,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80583,6 +84252,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -80629,6 +84299,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -80649,6 +84320,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80671,6 +84343,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80691,6 +84364,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80730,6 +84404,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80744,6 +84419,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -80790,6 +84466,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -80810,6 +84487,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ isPastDue, isDisabled, @@ -80843,6 +84521,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ isPastDue, isDisabled, @@ -80874,6 +84553,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80894,6 +84574,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80933,6 +84614,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -80947,6 +84629,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -80993,6 +84676,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -81013,6 +84697,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81035,6 +84720,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81055,6 +84741,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81075,6 +84762,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81114,6 +84802,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81128,6 +84817,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -81148,6 +84838,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81162,6 +84853,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -81208,6 +84900,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -81228,6 +84921,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81250,6 +84944,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81270,6 +84965,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81290,6 +84986,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81329,6 +85026,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81343,6 +85041,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -81363,6 +85062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81377,6 +85077,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -81397,6 +85098,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81411,6 +85113,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -81431,6 +85134,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81445,6 +85149,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -81491,6 +85196,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -81511,6 +85217,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81533,6 +85240,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81553,6 +85261,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81573,6 +85282,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81612,6 +85322,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81626,6 +85337,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -81646,6 +85358,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81660,6 +85373,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -81706,6 +85420,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -81726,6 +85441,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81748,6 +85464,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81768,6 +85485,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81788,6 +85506,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81827,6 +85546,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81841,6 +85561,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -81861,6 +85582,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81875,6 +85597,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -81895,6 +85618,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81909,6 +85633,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -81929,6 +85654,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -81943,6 +85669,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -81989,6 +85716,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -82009,6 +85737,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82031,6 +85760,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82051,6 +85781,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82071,6 +85802,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82110,6 +85842,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82124,6 +85857,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -82144,6 +85878,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82158,6 +85893,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82178,6 +85914,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82192,6 +85929,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82238,6 +85976,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -82258,6 +85997,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82280,6 +86020,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82300,6 +86041,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82320,6 +86062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82359,6 +86102,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82373,6 +86117,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -82393,6 +86138,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82407,6 +86153,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82427,6 +86174,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82441,6 +86189,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82487,6 +86236,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -82507,6 +86257,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82529,6 +86280,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82549,6 +86301,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82569,6 +86322,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82608,6 +86362,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82622,6 +86377,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -82642,6 +86398,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82656,6 +86413,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82702,6 +86460,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -82722,6 +86481,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82744,6 +86504,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82764,6 +86525,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82784,6 +86546,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82823,6 +86586,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82837,6 +86601,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -82857,6 +86622,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82871,6 +86637,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82891,6 +86658,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82905,6 +86673,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82925,6 +86694,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82939,6 +86709,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82959,6 +86730,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -82973,6 +86745,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -82993,6 +86766,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83007,6 +86781,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83027,6 +86802,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83041,6 +86817,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83087,6 +86864,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -83107,6 +86885,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83129,6 +86908,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83149,6 +86929,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83169,6 +86950,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83208,6 +86990,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83222,6 +87005,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -83242,6 +87026,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83256,6 +87041,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83276,6 +87062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83290,6 +87077,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83310,6 +87098,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83324,6 +87113,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83344,6 +87134,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83358,6 +87149,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83378,6 +87170,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83392,6 +87185,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83412,6 +87206,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83426,6 +87221,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83446,6 +87242,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83460,6 +87257,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83480,6 +87278,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83494,6 +87293,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83514,6 +87314,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83528,6 +87329,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83548,6 +87350,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83562,6 +87365,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83582,6 +87386,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83596,6 +87401,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83616,6 +87422,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83630,6 +87437,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83650,6 +87458,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83664,6 +87473,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83684,6 +87494,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83698,6 +87509,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83718,6 +87530,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83732,6 +87545,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -83778,6 +87592,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -83798,6 +87613,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ isSuccessfull, transactionId, @@ -83826,6 +87642,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ isSuccessfull, transactionId, @@ -83852,6 +87669,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83872,6 +87690,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83911,6 +87730,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83925,6 +87745,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -83945,6 +87766,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -83959,6 +87781,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84005,6 +87828,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -84025,6 +87849,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84047,6 +87872,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84067,6 +87893,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84087,6 +87914,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84126,6 +87954,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84140,6 +87969,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -84160,6 +87990,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84174,6 +88005,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84194,6 +88026,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84208,6 +88041,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84228,6 +88062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84242,6 +88077,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84288,6 +88124,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -84308,6 +88145,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84330,6 +88168,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84350,6 +88189,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84370,6 +88210,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84409,6 +88250,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84423,6 +88265,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -84443,6 +88286,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84457,6 +88301,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84477,6 +88322,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84491,6 +88337,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84537,6 +88384,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -84557,6 +88405,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84579,6 +88428,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84599,6 +88449,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84619,6 +88470,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84658,6 +88510,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84672,6 +88525,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -84692,6 +88546,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84706,6 +88561,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84726,6 +88582,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84740,6 +88597,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84760,6 +88618,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84774,6 +88633,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84794,6 +88654,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84808,6 +88669,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84828,6 +88690,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84842,6 +88705,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84862,6 +88726,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84876,6 +88741,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -84922,6 +88788,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -84942,6 +88809,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84964,6 +88832,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -84984,6 +88853,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85004,6 +88874,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85043,6 +88914,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85057,6 +88929,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -85077,6 +88950,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85091,6 +88965,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85111,6 +88986,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85125,6 +89001,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85145,6 +89022,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85159,6 +89037,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85179,6 +89058,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85193,6 +89073,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85213,6 +89094,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85227,6 +89109,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85247,6 +89130,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85261,6 +89145,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85281,6 +89166,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85295,6 +89181,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85315,6 +89202,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85329,6 +89217,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85349,6 +89238,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85363,6 +89253,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85383,6 +89274,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85397,6 +89289,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85443,6 +89336,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -85463,6 +89357,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85485,6 +89380,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85505,6 +89401,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85525,6 +89422,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85564,6 +89462,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85578,6 +89477,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -85598,6 +89498,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85612,6 +89513,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85632,6 +89534,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85646,6 +89549,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85666,6 +89570,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85680,6 +89585,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85726,6 +89632,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -85746,6 +89653,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -85790,6 +89698,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -85832,6 +89741,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85852,6 +89762,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85891,6 +89802,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85905,6 +89817,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -85925,6 +89838,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85939,6 +89853,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85959,6 +89874,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85973,6 +89889,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -85993,6 +89910,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86007,6 +89925,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -86053,6 +89972,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86073,6 +89993,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86095,6 +90016,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86115,6 +90037,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86135,6 +90058,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86174,6 +90098,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86188,6 +90113,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -86208,6 +90134,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86222,6 +90149,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -86242,6 +90170,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86256,6 +90185,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -86276,6 +90206,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86290,6 +90221,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -86336,6 +90268,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86356,6 +90289,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ userData, isFederated, @@ -86385,6 +90319,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ userData, isFederated, @@ -86412,6 +90347,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86432,6 +90368,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86471,6 +90408,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86485,6 +90423,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -86505,6 +90444,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86519,6 +90459,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -86539,6 +90480,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86553,6 +90495,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -86599,6 +90542,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86619,6 +90563,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -86663,6 +90608,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -86705,6 +90651,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86725,6 +90672,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -86764,6 +90712,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86778,6 +90727,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -86795,6 +90745,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86809,6 +90760,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -86826,6 +90778,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86840,6 +90793,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -86857,6 +90811,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86871,6 +90826,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -86888,6 +90844,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86902,6 +90859,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -86919,6 +90877,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86933,6 +90892,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -86950,6 +90910,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86964,6 +90925,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -86981,6 +90943,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86995,6 +90958,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87012,6 +90976,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87026,6 +90991,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87043,6 +91009,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87057,6 +91024,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87074,6 +91042,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87088,6 +91057,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87105,6 +91075,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87119,6 +91090,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87136,6 +91108,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87150,6 +91123,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87167,6 +91141,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87181,6 +91156,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87198,6 +91174,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87212,6 +91189,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87229,6 +91207,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87243,6 +91222,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87260,6 +91240,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87274,6 +91255,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87291,6 +91273,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87305,6 +91288,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87322,6 +91306,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87336,6 +91321,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87353,6 +91339,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87367,6 +91354,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -87410,6 +91398,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87430,6 +91419,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87495,6 +91485,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87515,6 +91506,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87580,6 +91572,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87600,6 +91593,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87665,6 +91659,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87685,6 +91680,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87750,6 +91746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87770,6 +91767,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87835,6 +91833,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87855,6 +91854,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87920,6 +91920,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -87940,6 +91941,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88005,6 +92007,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88025,6 +92028,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88090,6 +92094,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88110,6 +92115,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88175,6 +92181,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88195,6 +92202,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88260,6 +92268,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88280,6 +92289,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88345,6 +92355,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88365,6 +92376,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88430,6 +92442,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88450,6 +92463,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88515,6 +92529,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88535,6 +92550,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88600,6 +92616,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88620,6 +92637,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88685,6 +92703,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88705,6 +92724,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88770,6 +92790,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88790,6 +92811,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88855,6 +92877,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88875,6 +92898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88940,6 +92964,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -88960,6 +92985,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -89025,6 +93051,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -89045,6 +93072,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -89110,6 +93138,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -89130,6 +93159,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Dedoose/Models/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Dedoose/Models/_.verified.txt index 7f24a414a6..9c4aa5d27c 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Dedoose/Models/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Dedoose/Models/_.verified.txt @@ -40,6 +40,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54,6 +55,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -71,6 +73,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85,6 +88,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -102,6 +106,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -116,6 +121,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -133,6 +139,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -147,6 +154,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -164,6 +172,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -178,6 +187,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -195,6 +205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -209,6 +220,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -226,6 +238,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -240,6 +253,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -257,6 +271,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -271,6 +286,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -288,6 +304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -302,6 +319,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -319,6 +337,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -333,6 +352,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -392,6 +412,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -406,6 +427,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -423,6 +445,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -437,6 +460,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -454,6 +478,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -468,6 +493,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -485,6 +511,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -499,6 +526,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -516,6 +544,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -530,6 +559,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -547,6 +577,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -561,6 +592,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -578,6 +610,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -592,6 +625,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -609,6 +643,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -623,6 +658,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -682,6 +718,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, createStamp, @@ -723,6 +760,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -740,6 +778,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -754,6 +793,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -813,6 +853,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -827,6 +868,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -844,6 +886,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -858,6 +901,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -875,6 +919,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -889,6 +934,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -906,6 +952,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -920,6 +967,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -937,6 +985,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -951,6 +1000,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -968,6 +1018,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -982,6 +1033,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -999,6 +1051,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1013,6 +1066,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1030,6 +1084,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1044,6 +1099,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1061,6 +1117,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1075,6 +1132,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1092,6 +1150,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1106,6 +1165,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1123,6 +1183,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1137,6 +1198,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1154,6 +1216,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1168,6 +1231,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1185,6 +1249,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1199,6 +1264,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1216,6 +1282,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1230,6 +1297,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1247,6 +1315,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1261,6 +1330,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1278,6 +1348,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1292,6 +1363,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1309,6 +1381,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1323,6 +1396,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1340,6 +1414,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1354,6 +1429,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1371,6 +1447,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1385,6 +1462,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1402,6 +1480,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1416,6 +1495,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1433,6 +1513,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1447,6 +1528,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1464,6 +1546,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1478,6 +1561,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1495,6 +1579,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1509,6 +1594,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1526,6 +1612,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1540,6 +1627,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1557,6 +1645,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1571,6 +1660,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1588,6 +1678,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1602,6 +1693,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1661,6 +1753,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, createStamp, @@ -1702,6 +1795,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1719,6 +1813,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1733,6 +1828,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1750,6 +1846,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1764,6 +1861,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1823,6 +1921,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1837,6 +1936,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1854,6 +1954,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1868,6 +1969,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1885,6 +1987,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1899,6 +2002,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1916,6 +2020,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1930,6 +2035,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1947,6 +2053,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1961,6 +2068,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1978,6 +2086,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1992,6 +2101,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2009,6 +2119,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2023,6 +2134,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2040,6 +2152,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2054,6 +2167,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2071,6 +2185,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2085,6 +2200,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2102,6 +2218,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2116,6 +2233,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2133,6 +2251,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2147,6 +2266,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2206,6 +2326,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2220,6 +2341,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2237,6 +2359,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2251,6 +2374,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2268,6 +2392,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2282,6 +2407,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2299,6 +2425,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2313,6 +2440,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2330,6 +2458,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2344,6 +2473,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2361,6 +2491,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2375,6 +2506,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2434,6 +2566,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2448,6 +2581,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2465,6 +2599,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2479,6 +2614,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2496,6 +2632,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2510,6 +2647,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2527,6 +2665,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2541,6 +2680,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2600,6 +2740,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2614,6 +2755,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2631,6 +2773,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2645,6 +2788,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2704,6 +2848,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2718,6 +2863,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2735,6 +2881,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2749,6 +2896,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2808,6 +2956,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2822,6 +2971,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2839,6 +2989,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2853,6 +3004,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2912,6 +3064,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2926,6 +3079,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2943,6 +3097,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2957,6 +3112,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3016,6 +3172,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3030,6 +3187,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3047,6 +3205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3061,6 +3220,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3078,6 +3238,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3092,6 +3253,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3109,6 +3271,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3123,6 +3286,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3140,6 +3304,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3154,6 +3319,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3171,6 +3337,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3185,6 +3352,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3244,6 +3412,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3258,6 +3427,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3275,6 +3445,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3289,6 +3460,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3306,6 +3478,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3320,6 +3493,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3337,6 +3511,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3351,6 +3526,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3368,6 +3544,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3382,6 +3559,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3399,6 +3577,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3413,6 +3592,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3430,6 +3610,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3444,6 +3625,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3461,6 +3643,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3475,6 +3658,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3534,6 +3718,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3548,6 +3733,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3565,6 +3751,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3579,6 +3766,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3596,6 +3784,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3610,6 +3799,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3627,6 +3817,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3641,6 +3832,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3658,6 +3850,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3672,6 +3865,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3689,6 +3883,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3703,6 +3898,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3762,6 +3958,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3776,6 +3973,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3793,6 +3991,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3807,6 +4006,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3824,6 +4024,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3838,6 +4039,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3855,6 +4057,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3869,6 +4072,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3886,6 +4090,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3900,6 +4105,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3917,6 +4123,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3931,6 +4138,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3948,6 +4156,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3962,6 +4171,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3979,6 +4189,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ includedTagIds, includedDescriptorIds, @@ -4000,6 +4211,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4017,6 +4229,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4031,6 +4244,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4048,6 +4262,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4062,6 +4277,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4079,6 +4295,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4093,6 +4310,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4110,6 +4328,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4124,6 +4343,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4141,6 +4361,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4155,6 +4376,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4214,6 +4436,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4228,6 +4451,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4245,6 +4469,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4259,6 +4484,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4276,6 +4502,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4290,6 +4517,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4307,6 +4535,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4321,6 +4550,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4338,6 +4568,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4352,6 +4583,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4369,6 +4601,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4383,6 +4616,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4400,6 +4634,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4414,6 +4649,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4431,6 +4667,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4445,6 +4682,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4462,6 +4700,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4476,6 +4715,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4535,6 +4775,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4549,6 +4790,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4566,6 +4808,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4580,6 +4823,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4597,6 +4841,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4611,6 +4856,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4628,6 +4874,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4642,6 +4889,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4659,6 +4907,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4673,6 +4922,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4690,6 +4940,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4704,6 +4955,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4721,6 +4973,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4735,6 +4988,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4752,6 +5006,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4766,6 +5021,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4783,6 +5039,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4797,6 +5054,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4814,6 +5072,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4828,6 +5087,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4887,6 +5147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4901,6 +5162,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4918,6 +5180,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4932,6 +5195,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4949,6 +5213,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4963,6 +5228,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4980,6 +5246,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4994,6 +5261,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5011,6 +5279,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5025,6 +5294,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5042,6 +5312,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5056,6 +5327,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5073,6 +5345,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5087,6 +5360,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5104,6 +5378,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5118,6 +5393,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5177,6 +5453,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -5202,6 +5479,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5219,6 +5497,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5233,6 +5512,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5292,6 +5572,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5306,6 +5587,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5323,6 +5605,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5337,6 +5620,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5396,6 +5680,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5410,6 +5695,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5427,6 +5713,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5441,6 +5728,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5458,6 +5746,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5472,6 +5761,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5489,6 +5779,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5503,6 +5794,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5520,6 +5812,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5534,6 +5827,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5551,6 +5845,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5565,6 +5860,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5624,6 +5920,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5638,6 +5935,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5655,6 +5953,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5669,6 +5968,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5728,6 +6028,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5742,6 +6043,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5759,6 +6061,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5773,6 +6076,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5790,6 +6094,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5804,6 +6109,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5821,6 +6127,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5835,6 +6142,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5852,6 +6160,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5866,6 +6175,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5883,6 +6193,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5897,6 +6208,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5914,6 +6226,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5928,6 +6241,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5945,6 +6259,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5959,6 +6274,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6018,6 +6334,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6032,6 +6349,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6049,6 +6367,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6063,6 +6382,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6080,6 +6400,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6094,6 +6415,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6111,6 +6433,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6125,6 +6448,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6142,6 +6466,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6156,6 +6481,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6173,6 +6499,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6187,6 +6514,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6204,6 +6532,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6218,6 +6547,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6277,6 +6607,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -6301,6 +6632,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6318,6 +6650,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6332,6 +6665,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6391,6 +6725,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6405,6 +6740,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6422,6 +6758,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6436,6 +6773,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6453,6 +6791,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6467,6 +6806,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6484,6 +6824,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6498,6 +6839,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6515,6 +6857,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6529,6 +6872,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6546,6 +6890,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6560,6 +6905,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6577,6 +6923,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6591,6 +6938,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6608,6 +6956,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6622,6 +6971,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6639,6 +6989,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6653,6 +7004,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6712,6 +7064,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6726,6 +7079,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6743,6 +7097,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6757,6 +7112,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6774,6 +7130,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6788,6 +7145,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6805,6 +7163,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6819,6 +7178,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6836,6 +7196,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6850,6 +7211,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6867,6 +7229,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6881,6 +7244,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6898,6 +7262,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6912,6 +7277,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6929,6 +7295,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6943,6 +7310,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6960,6 +7328,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6974,6 +7343,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6991,6 +7361,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7005,6 +7376,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7022,6 +7394,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7036,6 +7409,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7053,6 +7427,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7067,6 +7442,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7084,6 +7460,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7098,6 +7475,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7115,6 +7493,7 @@ IsBase64: true, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7129,6 +7508,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7188,6 +7568,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -7217,6 +7598,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7234,6 +7616,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7248,6 +7631,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7307,6 +7691,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7321,6 +7706,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7338,6 +7724,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7352,6 +7739,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7369,6 +7757,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7383,6 +7772,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7400,6 +7790,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7414,6 +7805,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7431,6 +7823,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7445,6 +7838,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7504,6 +7898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7518,6 +7913,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7535,6 +7931,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7549,6 +7946,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7566,6 +7964,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7580,6 +7979,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7639,6 +8039,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7653,6 +8054,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7670,6 +8072,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7684,6 +8087,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7701,6 +8105,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7715,6 +8120,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7732,6 +8138,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7746,6 +8153,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7763,6 +8171,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7777,6 +8186,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7794,6 +8204,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7808,6 +8219,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7825,6 +8237,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7839,6 +8252,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7898,6 +8312,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7912,6 +8327,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7929,6 +8345,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7943,6 +8360,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7960,6 +8378,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7974,6 +8393,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7991,6 +8411,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8005,6 +8426,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8064,6 +8486,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8078,6 +8501,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8095,6 +8519,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8109,6 +8534,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8168,6 +8594,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8182,6 +8609,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8199,6 +8627,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8213,6 +8642,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8230,6 +8660,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8244,6 +8675,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8261,6 +8693,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8275,6 +8708,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8292,6 +8726,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8306,6 +8741,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8323,6 +8759,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8337,6 +8774,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8354,6 +8792,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8368,6 +8807,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8385,6 +8825,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8399,6 +8840,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8416,6 +8858,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8430,6 +8873,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8447,6 +8891,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8461,6 +8906,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8520,6 +8966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, id, @@ -8545,6 +8992,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8562,6 +9010,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8576,6 +9025,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8593,6 +9043,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8607,6 +9058,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8666,6 +9118,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8680,6 +9133,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8697,6 +9151,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8711,6 +9166,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8728,6 +9184,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8742,6 +9199,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8759,6 +9217,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8773,6 +9232,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8832,6 +9292,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8846,6 +9307,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8863,6 +9325,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8877,6 +9340,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8894,6 +9358,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8908,6 +9373,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8925,6 +9391,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8939,6 +9406,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8956,6 +9424,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8970,6 +9439,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8987,6 +9457,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9001,6 +9472,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9060,6 +9532,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9074,6 +9547,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9091,6 +9565,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9105,6 +9580,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9122,6 +9598,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9136,6 +9613,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9153,6 +9631,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9167,6 +9646,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9184,6 +9664,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9198,6 +9679,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9215,6 +9697,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9229,6 +9712,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9246,6 +9730,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9260,6 +9745,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9277,6 +9763,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9291,6 +9778,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9308,6 +9796,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9322,6 +9811,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9339,6 +9829,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9353,6 +9844,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9370,6 +9862,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9384,6 +9877,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9443,6 +9937,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9457,6 +9952,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9474,6 +9970,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9488,6 +9985,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9505,6 +10003,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9519,6 +10018,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9536,6 +10036,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9550,6 +10051,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9609,6 +10111,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9623,6 +10126,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9640,6 +10144,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9654,6 +10159,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9713,6 +10219,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9727,6 +10234,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9744,6 +10252,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9758,6 +10267,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9775,6 +10285,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9789,6 +10300,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9806,6 +10318,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, accountId, @@ -9829,6 +10342,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9846,6 +10360,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, accountId, @@ -9867,6 +10382,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9926,6 +10442,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9940,6 +10457,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9957,6 +10475,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9971,6 +10490,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9988,6 +10508,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10002,6 +10523,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10019,6 +10541,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10033,6 +10556,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10050,6 +10574,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10064,6 +10589,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10081,6 +10607,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10095,6 +10622,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10112,6 +10640,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10126,6 +10655,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10185,6 +10715,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10199,6 +10730,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10216,6 +10748,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10230,6 +10763,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10247,6 +10781,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10261,6 +10796,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10278,6 +10814,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10292,6 +10829,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10309,6 +10847,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10323,6 +10862,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10382,6 +10922,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10396,6 +10937,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10413,6 +10955,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10427,6 +10970,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10444,6 +10988,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10458,6 +11003,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10517,6 +11063,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10531,6 +11078,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10548,6 +11096,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10562,6 +11111,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10579,6 +11129,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10593,6 +11144,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10610,6 +11162,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10624,6 +11177,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10641,6 +11195,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10655,6 +11210,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10672,6 +11228,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10686,6 +11243,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10703,6 +11261,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10717,6 +11276,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10734,6 +11294,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10748,6 +11309,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10807,6 +11369,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10821,6 +11384,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10838,6 +11402,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10852,6 +11417,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10911,6 +11477,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10925,6 +11492,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10942,6 +11510,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10956,6 +11525,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10973,6 +11543,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10987,6 +11558,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11004,6 +11576,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11018,6 +11591,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11035,6 +11609,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11049,6 +11624,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11066,6 +11642,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11080,6 +11657,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11097,6 +11675,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11111,6 +11690,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11128,6 +11708,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11142,6 +11723,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11159,6 +11741,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11173,6 +11756,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11190,6 +11774,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11204,6 +11789,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11221,6 +11807,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11235,6 +11822,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11252,6 +11840,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11266,6 +11855,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11283,6 +11873,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11297,6 +11888,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11356,6 +11948,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -11384,6 +11977,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11401,6 +11995,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11415,6 +12010,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11432,6 +12028,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11446,6 +12043,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11505,6 +12103,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11519,6 +12118,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11536,6 +12136,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11550,6 +12151,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11567,6 +12169,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11581,6 +12184,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11598,6 +12202,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11612,6 +12217,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11629,6 +12235,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11643,6 +12250,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11660,6 +12268,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11674,6 +12283,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11691,6 +12301,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11705,6 +12316,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11764,6 +12376,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11778,6 +12391,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11795,6 +12409,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11809,6 +12424,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11826,6 +12442,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11840,6 +12457,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11857,6 +12475,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11871,6 +12490,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11930,6 +12550,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11944,6 +12565,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11961,6 +12583,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11975,6 +12598,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11992,6 +12616,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12006,6 +12631,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12065,6 +12691,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12079,6 +12706,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12096,6 +12724,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12110,6 +12739,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12127,6 +12757,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12141,6 +12772,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12158,6 +12790,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12172,6 +12805,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12189,6 +12823,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12203,6 +12838,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12220,6 +12856,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12234,6 +12871,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12251,6 +12889,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12265,6 +12904,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12282,6 +12922,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12296,6 +12937,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12313,6 +12955,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12327,6 +12970,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12344,6 +12988,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12358,6 +13003,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12375,6 +13021,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12389,6 +13036,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12406,6 +13054,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12420,6 +13069,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12437,6 +13087,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12451,6 +13102,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12510,6 +13162,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12524,6 +13177,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12541,6 +13195,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12555,6 +13210,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12572,6 +13228,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12586,6 +13243,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12603,6 +13261,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12617,6 +13276,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12634,6 +13294,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12648,6 +13309,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12665,6 +13327,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12679,6 +13342,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12696,6 +13360,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12710,6 +13375,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12727,6 +13393,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12741,6 +13408,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12800,6 +13468,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12814,6 +13483,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12831,6 +13501,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12845,6 +13516,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12904,6 +13576,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12918,6 +13591,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12935,6 +13609,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12949,6 +13624,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12966,6 +13642,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12980,6 +13657,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12997,6 +13675,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13011,6 +13690,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13028,6 +13708,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13042,6 +13723,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13059,6 +13741,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13073,6 +13756,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13090,6 +13774,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13104,6 +13789,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13121,6 +13807,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13135,6 +13822,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13152,6 +13840,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13166,6 +13855,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13225,6 +13915,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13239,6 +13930,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13256,6 +13948,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13270,6 +13963,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13287,6 +13981,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13301,6 +13996,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13318,6 +14014,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13332,6 +14029,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13349,6 +14047,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13363,6 +14062,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13380,6 +14080,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13394,6 +14095,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13411,6 +14113,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13425,6 +14128,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13484,6 +14188,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13498,6 +14203,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13515,6 +14221,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13529,6 +14236,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13546,6 +14254,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13560,6 +14269,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13577,6 +14287,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13591,6 +14302,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13608,6 +14320,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13622,6 +14335,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13639,6 +14353,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13653,6 +14368,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13670,6 +14386,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13684,6 +14401,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13701,6 +14419,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13715,6 +14434,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13732,6 +14452,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13746,6 +14467,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13763,6 +14485,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13777,6 +14500,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13836,6 +14560,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13850,6 +14575,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13867,6 +14593,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13881,6 +14608,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13898,6 +14626,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13912,6 +14641,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13929,6 +14659,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13943,6 +14674,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13960,6 +14692,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13974,6 +14707,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13991,6 +14725,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14005,6 +14740,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14022,6 +14758,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14036,6 +14773,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14053,6 +14791,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14067,6 +14806,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14084,6 +14824,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14098,6 +14839,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14115,6 +14857,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14129,6 +14872,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14188,6 +14932,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14202,6 +14947,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14219,6 +14965,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14233,6 +14980,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14250,6 +14998,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14264,6 +15013,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14281,6 +15031,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14295,6 +15046,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14312,6 +15064,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14326,6 +15079,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14343,6 +15097,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14357,6 +15112,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14374,6 +15130,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14388,6 +15145,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14405,6 +15163,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14419,6 +15178,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14436,6 +15196,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14450,6 +15211,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14509,6 +15271,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14523,6 +15286,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14540,6 +15304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14554,6 +15319,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14571,6 +15337,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14585,6 +15352,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14602,6 +15370,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14616,6 +15385,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14633,6 +15403,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14647,6 +15418,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14664,6 +15436,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14678,6 +15451,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14695,6 +15469,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14709,6 +15484,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14726,6 +15502,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14740,6 +15517,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14757,6 +15535,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14771,6 +15550,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14830,6 +15610,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14844,6 +15625,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14861,6 +15643,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14875,6 +15658,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14892,6 +15676,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14906,6 +15691,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14923,6 +15709,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14937,6 +15724,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14954,6 +15742,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14968,6 +15757,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14985,6 +15775,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14999,6 +15790,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15016,6 +15808,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15030,6 +15823,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15047,6 +15841,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15061,6 +15856,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15078,6 +15874,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15092,6 +15889,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15109,6 +15907,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15123,6 +15922,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15140,6 +15940,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15154,6 +15955,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15171,6 +15973,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15185,6 +15988,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15202,6 +16006,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15216,6 +16021,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15233,6 +16039,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15247,6 +16054,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15306,6 +16114,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15320,6 +16129,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15337,6 +16147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15351,6 +16162,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15368,6 +16180,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15382,6 +16195,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15399,6 +16213,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15413,6 +16228,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15430,6 +16246,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15444,6 +16261,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15461,6 +16279,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15475,6 +16294,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15492,6 +16312,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15506,6 +16327,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15523,6 +16345,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15537,6 +16360,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15554,6 +16378,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15568,6 +16393,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15585,6 +16411,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15599,6 +16426,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15658,6 +16486,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15672,6 +16501,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15689,6 +16519,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15703,6 +16534,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15720,6 +16552,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15734,6 +16567,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15751,6 +16585,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15765,6 +16600,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15782,6 +16618,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15796,6 +16633,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15813,6 +16651,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15827,6 +16666,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15844,6 +16684,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15858,6 +16699,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15917,6 +16759,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15931,6 +16774,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15948,6 +16792,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15962,6 +16807,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16021,6 +16867,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16035,6 +16882,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16052,6 +16900,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16066,6 +16915,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16083,6 +16933,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16097,6 +16948,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16114,6 +16966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16128,6 +16981,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16145,6 +16999,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16159,6 +17014,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16176,6 +17032,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16190,6 +17047,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16207,6 +17065,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16221,6 +17080,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16238,6 +17098,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16252,6 +17113,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16269,6 +17131,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16283,6 +17146,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16300,6 +17164,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16314,6 +17179,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16331,6 +17197,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16345,6 +17212,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16362,6 +17230,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16376,6 +17245,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16393,6 +17263,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16407,6 +17278,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16424,6 +17296,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16438,6 +17311,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16455,6 +17329,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16469,6 +17344,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16486,6 +17362,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16500,6 +17377,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16517,6 +17395,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16531,6 +17410,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16548,6 +17428,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16562,6 +17443,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16579,6 +17461,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16593,6 +17476,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16610,6 +17494,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16624,6 +17509,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16641,6 +17527,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16655,6 +17542,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16714,6 +17602,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16728,6 +17617,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16745,6 +17635,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16759,6 +17650,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16776,6 +17668,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16790,6 +17683,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16807,6 +17701,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16821,6 +17716,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16838,6 +17734,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16852,6 +17749,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16869,6 +17767,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16883,6 +17782,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16900,6 +17800,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16914,6 +17815,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16931,6 +17833,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16945,6 +17848,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16962,6 +17866,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16976,6 +17881,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16993,6 +17899,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17007,6 +17914,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17066,6 +17974,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17080,6 +17989,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17097,6 +18007,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17111,6 +18022,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17128,6 +18040,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17142,6 +18055,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17159,6 +18073,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17173,6 +18088,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17190,6 +18106,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17204,6 +18121,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17221,6 +18139,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17235,6 +18154,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17294,6 +18214,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17308,6 +18229,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17325,6 +18247,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17339,6 +18262,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17356,6 +18280,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17370,6 +18295,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17387,6 +18313,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17401,6 +18328,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17418,6 +18346,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17432,6 +18361,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17449,6 +18379,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17463,6 +18394,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17522,6 +18454,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17536,6 +18469,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17553,6 +18487,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17567,6 +18502,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17584,6 +18520,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17598,6 +18535,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17615,6 +18553,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17629,6 +18568,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17646,6 +18586,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17660,6 +18601,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17677,6 +18619,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17691,6 +18634,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17708,6 +18652,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17722,6 +18667,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17739,6 +18685,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17753,6 +18700,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17770,6 +18718,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17784,6 +18733,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17801,6 +18751,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17815,6 +18766,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17832,6 +18784,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17846,6 +18799,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17905,6 +18859,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -17941,6 +18896,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17958,6 +18914,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ projectIdKey, projectId, @@ -17979,6 +18936,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18038,6 +18996,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, username, @@ -18074,6 +19033,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18091,6 +19051,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18105,6 +19066,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18122,6 +19084,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18136,6 +19099,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18153,6 +19117,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18167,6 +19132,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18184,6 +19150,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18198,6 +19165,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18215,6 +19183,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18229,6 +19198,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/LangSmith/Methods/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/LangSmith/Methods/_.verified.txt index 3edc40a28c..84546980fb 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/LangSmith/Methods/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/LangSmith/Methods/_.verified.txt @@ -18,6 +18,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32,6 +33,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -52,6 +54,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66,6 +69,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -87,6 +91,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -102,6 +107,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -150,6 +156,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -170,6 +177,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ start_time, end_time, @@ -222,6 +230,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ start_time, end_time, @@ -272,6 +281,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -313,6 +323,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -327,6 +338,7 @@ Get a specific session., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -347,6 +359,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -362,6 +375,7 @@ Get a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -379,6 +393,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -394,6 +409,7 @@ Get a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -411,6 +427,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -426,6 +443,7 @@ Get a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -443,6 +461,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -458,6 +477,7 @@ Get a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -475,6 +495,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -490,6 +511,7 @@ Get a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -507,6 +529,7 @@ Get a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -522,6 +545,7 @@ Get a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -568,6 +592,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -595,6 +620,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ start_time, end_time, @@ -629,6 +655,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -656,6 +683,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ start_time, end_time, @@ -688,6 +716,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -729,6 +758,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -743,6 +773,7 @@ Create a new session., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -792,6 +823,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -812,6 +844,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -834,6 +867,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -854,6 +888,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -895,6 +930,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -910,6 +946,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -930,6 +967,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -945,6 +983,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -965,6 +1004,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -980,6 +1020,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1000,6 +1041,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1015,6 +1057,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1035,6 +1078,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1050,6 +1094,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1070,6 +1115,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1085,6 +1131,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1105,6 +1152,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -1120,6 +1168,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1141,6 +1190,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1155,6 +1205,7 @@ Delete a specific session., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1176,6 +1227,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1191,6 +1243,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1211,6 +1264,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1225,6 +1279,7 @@ Delete a specific session., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1246,6 +1301,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1260,6 +1316,7 @@ Delete a specific session., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1281,6 +1338,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1295,6 +1353,7 @@ Delete a specific session., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1316,6 +1375,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1331,6 +1391,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -1379,6 +1440,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1399,6 +1461,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1421,6 +1484,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1441,6 +1505,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -1482,6 +1547,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1496,6 +1562,7 @@ Get all sessions., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -1517,6 +1584,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1531,6 +1599,7 @@ Get all sessions., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1548,6 +1617,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1563,6 +1633,7 @@ Get all sessions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1580,6 +1651,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1595,6 +1667,7 @@ Get all sessions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1612,6 +1685,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1626,6 +1700,7 @@ Get all sessions., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1643,6 +1718,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1658,6 +1734,7 @@ Get all sessions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1675,6 +1752,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1690,6 +1768,7 @@ Get all sessions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1707,6 +1786,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1722,6 +1802,7 @@ Get all sessions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1739,6 +1820,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1754,6 +1836,7 @@ Get all sessions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1771,6 +1854,7 @@ Get all sessions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1786,6 +1870,7 @@ Get all sessions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1832,6 +1917,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ start_time, end_time, @@ -1862,6 +1948,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ start_time, end_time, @@ -1896,6 +1983,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ start_time, end_time, @@ -1926,6 +2014,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ start_time, end_time, @@ -1958,6 +2047,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -1999,6 +2089,7 @@ Create a new session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2013,6 +2104,7 @@ Create a new session., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2062,6 +2154,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2082,6 +2175,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2104,6 +2198,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2124,6 +2219,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -2165,6 +2261,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2179,6 +2276,7 @@ Delete a specific session., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -2199,6 +2297,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2214,6 +2313,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2234,6 +2334,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2249,6 +2350,7 @@ Delete a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2269,6 +2371,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2283,6 +2386,7 @@ Delete a specific session., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2304,6 +2408,7 @@ Delete a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2318,6 +2423,7 @@ Delete a specific session., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -2367,6 +2473,7 @@ Given a session, a number K, and (optionally) a list of metadata keys, return th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2387,6 +2494,7 @@ Given a session, a number K, and (optionally) a list of metadata keys, return th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2409,6 +2517,7 @@ Given a session, a number K, and (optionally) a list of metadata keys, return th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2429,6 +2538,7 @@ Given a session, a number K, and (optionally) a list of metadata keys, return th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -2470,6 +2580,7 @@ Given a session, a number K, and (optionally) a list of metadata keys, return th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2484,6 +2595,7 @@ Given a session, a number K, and (optionally) a list of metadata keys, return th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -2532,6 +2644,7 @@ Get all filter views for a session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2552,6 +2665,7 @@ Get all filter views for a session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2574,6 +2688,7 @@ Get all filter views for a session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2594,6 +2709,7 @@ Get all filter views for a session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -2635,6 +2751,7 @@ Get all filter views for a session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2649,6 +2766,7 @@ Get all filter views for a session., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -2669,6 +2787,7 @@ Get all filter views for a session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2683,6 +2802,7 @@ Get all filter views for a session., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2700,6 +2820,7 @@ Get all filter views for a session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2714,6 +2835,7 @@ Get all filter views for a session., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2731,6 +2853,7 @@ Get all filter views for a session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2746,6 +2869,7 @@ Get all filter views for a session., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2792,6 +2916,7 @@ Create a new filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -2816,6 +2941,7 @@ Create a new filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -2846,6 +2972,7 @@ Create a new filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -2870,6 +2997,7 @@ Create a new filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -2898,6 +3026,7 @@ Create a new filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -2939,6 +3068,7 @@ Create a new filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2953,6 +3083,7 @@ Create a new filter view., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -2973,6 +3104,7 @@ Create a new filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2987,6 +3119,7 @@ Create a new filter view., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3035,6 +3168,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3055,6 +3189,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -3085,6 +3220,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -3113,6 +3249,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -3154,6 +3291,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3168,6 +3306,7 @@ Get a specific filter view., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3188,6 +3327,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3202,6 +3342,7 @@ Get a specific filter view., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3222,6 +3363,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -3237,6 +3379,7 @@ Get a specific filter view., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -3254,6 +3397,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -3269,6 +3413,7 @@ Get a specific filter view., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -3286,6 +3431,7 @@ Get a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -3301,6 +3447,7 @@ Get a specific filter view., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -3347,6 +3494,7 @@ Update a filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -3371,6 +3519,7 @@ Update a filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -3401,6 +3550,7 @@ Update a filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -3425,6 +3575,7 @@ Update a filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter_string, display_name, @@ -3453,6 +3604,7 @@ Update a filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -3494,6 +3646,7 @@ Update a filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3508,6 +3661,7 @@ Update a filter view., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3528,6 +3682,7 @@ Update a filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3542,6 +3697,7 @@ Update a filter view., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3591,6 +3747,7 @@ Delete a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3611,6 +3768,7 @@ Delete a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3633,6 +3791,7 @@ Delete a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3653,6 +3812,7 @@ Delete a specific filter view., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -3721,6 +3881,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3741,6 +3902,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3763,6 +3925,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3828,6 +3991,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3848,6 +4012,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ client_secret ], @@ -3872,6 +4037,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ client_secret ], @@ -3938,6 +4104,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3958,6 +4125,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -3995,6 +4163,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -4074,6 +4243,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4094,6 +4264,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -4125,6 +4296,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -4198,6 +4370,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4218,6 +4391,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -4254,6 +4428,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -4307,6 +4482,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Invoices, Usage, @@ -4329,6 +4505,7 @@ Get all orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.OrganizationDashboardTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4349,6 +4526,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -4364,6 +4542,7 @@ Get all orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4410,6 +4589,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4430,6 +4610,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ embeddable_url ], @@ -4454,6 +4635,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ embeddable_url ], @@ -4476,6 +4658,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -4517,6 +4700,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, address @@ -4534,6 +4718,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Stripe customer billing information., ConverterType: , @@ -4551,6 +4736,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4565,6 +4751,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4609,6 +4796,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ billing_info, setup_intent @@ -4632,6 +4820,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4654,6 +4843,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ billing_info, setup_intent @@ -4677,6 +4867,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4697,6 +4888,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -4763,6 +4955,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4783,6 +4976,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ company_info, tax_id, @@ -4810,6 +5004,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ company_info, tax_id, @@ -4854,6 +5049,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -4869,6 +5065,7 @@ Get all orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -4886,6 +5083,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -4901,6 +5099,7 @@ Get all orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -4918,6 +5117,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -4933,6 +5133,7 @@ Get all orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -4950,6 +5151,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4964,6 +5166,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -5009,6 +5212,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ company_info, tax_id, @@ -5034,6 +5238,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5056,6 +5261,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ company_info, tax_id, @@ -5081,6 +5287,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5101,6 +5308,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -5142,6 +5350,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Disabled, Developer, @@ -5170,6 +5379,7 @@ Get all orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.ChangePaymentPlanReqJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enum for payment plans that the user can change to. Developer plans are permanent and enterprise plans will be changed manually., ConverterType: global::OpenApiGenerator.JsonConverters.ChangePaymentPlanReqJsonConverter, @@ -5214,6 +5424,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tier ], @@ -5236,6 +5447,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5258,6 +5470,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tier ], @@ -5280,6 +5493,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5300,6 +5514,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -5366,6 +5581,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5386,6 +5602,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5408,6 +5625,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5447,6 +5665,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5461,6 +5680,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5478,6 +5698,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5492,6 +5713,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5509,6 +5731,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5523,6 +5746,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5567,6 +5791,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name, description, @@ -5591,6 +5816,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, name, @@ -5621,6 +5847,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name, description, @@ -5645,6 +5872,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, name, @@ -5673,6 +5901,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -5714,6 +5943,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5728,6 +5958,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5775,6 +6006,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5795,6 +6027,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, name, @@ -5825,6 +6058,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, name, @@ -5853,6 +6087,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -5894,6 +6129,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5908,6 +6144,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5928,6 +6165,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5942,6 +6180,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5959,6 +6198,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5973,6 +6213,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5990,6 +6231,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6004,6 +6246,7 @@ Get all orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6048,6 +6291,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name, description, @@ -6072,6 +6316,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, name, @@ -6102,6 +6347,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name, description, @@ -6126,6 +6372,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, name, @@ -6154,6 +6401,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -6220,6 +6468,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6240,6 +6489,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6262,6 +6512,7 @@ Get all orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6328,6 +6579,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6348,6 +6600,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6370,6 +6623,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6434,6 +6688,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6454,6 +6709,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ organization_id, members, @@ -6480,6 +6736,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ organization_id, members, @@ -6523,6 +6780,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6537,6 +6795,7 @@ Get all pending orgs visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6554,6 +6813,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6568,6 +6828,7 @@ Get all pending orgs visible to this auth, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -6586,6 +6847,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6601,6 +6863,7 @@ Get all pending orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6618,6 +6881,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6633,6 +6897,7 @@ Get all pending orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6650,6 +6915,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6665,6 +6931,7 @@ Get all pending orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6682,6 +6949,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6697,6 +6965,7 @@ Get all pending orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6714,6 +6983,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6729,6 +6999,7 @@ Get all pending orgs visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6773,6 +7044,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ email, read_only, @@ -6801,6 +7073,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ email, read_only, @@ -6838,6 +7111,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ email, read_only, @@ -6866,6 +7140,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ email, read_only, @@ -6901,6 +7176,7 @@ Get all pending orgs visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -6970,6 +7246,7 @@ Batch invite up to 500 users to the current org., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6990,6 +7267,7 @@ Batch invite up to 500 users to the current org., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7012,6 +7290,7 @@ Batch invite up to 500 users to the current org., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7032,6 +7311,7 @@ Batch invite up to 500 users to the current org., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7052,6 +7332,7 @@ Batch invite up to 500 users to the current org., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -7093,6 +7374,7 @@ Batch invite up to 500 users to the current org., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7107,6 +7389,7 @@ Batch invite up to 500 users to the current org., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -7156,6 +7439,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7176,6 +7460,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7198,6 +7483,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7218,6 +7504,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -7259,6 +7546,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7273,6 +7561,7 @@ When an admin deletes a pending member invite., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -7320,6 +7609,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7340,6 +7630,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7362,6 +7653,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7382,6 +7674,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -7423,6 +7716,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7437,6 +7731,7 @@ When an admin deletes a pending member invite., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -7484,6 +7779,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7504,6 +7800,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -7536,6 +7833,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -7566,6 +7864,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -7607,6 +7906,7 @@ When an admin deletes a pending member invite., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7621,6 +7921,7 @@ When an admin deletes a pending member invite., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -7670,6 +7971,7 @@ Hard delete a user from the current organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7690,6 +7992,7 @@ Hard delete a user from the current organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7712,6 +8015,7 @@ Hard delete a user from the current organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7732,6 +8036,7 @@ Hard delete a user from the current organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -7773,6 +8078,7 @@ Hard delete a user from the current organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7787,6 +8093,7 @@ Hard delete a user from the current organization., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -7807,6 +8114,7 @@ Hard delete a user from the current organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7821,6 +8129,7 @@ Hard delete a user from the current organization., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7838,6 +8147,7 @@ Hard delete a user from the current organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7853,6 +8163,7 @@ Hard delete a user from the current organization., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7870,6 +8181,7 @@ Hard delete a user from the current organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7885,6 +8197,7 @@ Hard delete a user from the current organization., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7931,6 +8244,7 @@ This is used for updating a user's role (all auth modes) or full_name/password ( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ role_id, password, @@ -7955,6 +8269,7 @@ This is used for updating a user's role (all auth modes) or full_name/password ( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7977,6 +8292,7 @@ This is used for updating a user's role (all auth modes) or full_name/password ( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ role_id, password, @@ -8001,6 +8317,7 @@ This is used for updating a user's role (all auth modes) or full_name/password ( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8021,6 +8338,7 @@ This is used for updating a user's role (all auth modes) or full_name/password ( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -8089,6 +8407,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8109,6 +8428,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8131,6 +8451,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8170,6 +8491,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Longlived, Shortlived @@ -8190,6 +8512,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter, @@ -8234,6 +8557,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ default_trace_tier ], @@ -8256,6 +8580,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, default_trace_tier, @@ -8286,6 +8611,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ default_trace_tier ], @@ -8308,6 +8634,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, default_trace_tier, @@ -8336,6 +8663,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -8403,6 +8731,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8423,6 +8752,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ access_token ], @@ -8447,6 +8777,7 @@ List out the configured TTL settings for a given org (org-level and tenant-level IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ access_token ], @@ -8515,6 +8846,7 @@ Get the current tenant's API keys, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8535,6 +8867,7 @@ Get the current tenant's API keys, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8557,6 +8890,7 @@ Get the current tenant's API keys, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8624,6 +8958,7 @@ Generate an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -8645,6 +8980,7 @@ Generate an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, id, @@ -8674,6 +9010,7 @@ Generate an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -8695,6 +9032,7 @@ Generate an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, id, @@ -8722,6 +9060,7 @@ Generate an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -8763,6 +9102,7 @@ Generate an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8777,6 +9117,7 @@ Generate an api key for the user, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -8826,6 +9167,7 @@ Delete an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8846,6 +9188,7 @@ Delete an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, id, @@ -8874,6 +9217,7 @@ Delete an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, id, @@ -8900,6 +9244,7 @@ Delete an api key for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -8968,6 +9313,7 @@ Get the current users PATs for this tenant, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8988,6 +9334,7 @@ Get the current users PATs for this tenant, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9010,6 +9357,7 @@ Get the current users PATs for this tenant, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9077,6 +9425,7 @@ Generate a Personal Access Token the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -9098,6 +9447,7 @@ Generate a Personal Access Token the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, id, @@ -9127,6 +9477,7 @@ Generate a Personal Access Token the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -9148,6 +9499,7 @@ Generate a Personal Access Token the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, id, @@ -9175,6 +9527,7 @@ Generate a Personal Access Token the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -9216,6 +9569,7 @@ Generate a Personal Access Token the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9230,6 +9584,7 @@ Generate a Personal Access Token the user, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -9279,6 +9634,7 @@ Delete a Personal Access Token for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9299,6 +9655,7 @@ Delete a Personal Access Token for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, id, @@ -9327,6 +9684,7 @@ Delete a Personal Access Token for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, id, @@ -9353,6 +9711,7 @@ Delete a Personal Access Token for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -9394,6 +9753,7 @@ Delete a Personal Access Token for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9408,6 +9768,7 @@ Delete a Personal Access Token for the user, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -9428,6 +9789,7 @@ Delete a Personal Access Token for the user, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9443,6 +9805,7 @@ Delete a Personal Access Token for the user, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -9494,6 +9857,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9514,6 +9878,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ inputs, outputs, @@ -9546,6 +9911,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ inputs, outputs, @@ -9576,6 +9942,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -9617,6 +9984,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9631,6 +9999,7 @@ Get a specific example., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -9651,6 +10020,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9666,6 +10036,7 @@ Get a specific example., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9683,6 +10054,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9698,6 +10070,7 @@ Get a specific example., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9715,6 +10088,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9730,6 +10104,7 @@ Get a specific example., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9747,6 +10122,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9762,6 +10138,7 @@ Get a specific example., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9779,6 +10156,7 @@ Get a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -9794,6 +10172,7 @@ Get a specific example., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -9840,6 +10219,7 @@ Update a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ dataset_id, inputs, @@ -9866,6 +10246,7 @@ Update a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9888,6 +10269,7 @@ Update a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ dataset_id, inputs, @@ -9914,6 +10296,7 @@ Update a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9934,6 +10317,7 @@ Update a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -9975,6 +10359,7 @@ Update a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9989,6 +10374,7 @@ Update a specific example., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -10038,6 +10424,7 @@ Delete a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10058,6 +10445,7 @@ Delete a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10080,6 +10468,7 @@ Delete a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10100,6 +10489,7 @@ Delete a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -10141,6 +10531,7 @@ Delete a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10156,6 +10547,7 @@ Delete a specific example., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10176,6 +10568,7 @@ Delete a specific example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10191,6 +10584,7 @@ Delete a specific example., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10214,6 +10608,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10229,6 +10624,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10249,6 +10645,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10264,6 +10661,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10284,6 +10682,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10299,6 +10698,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10319,6 +10719,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10334,6 +10735,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10354,6 +10756,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10368,6 +10771,7 @@ Default Value: latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10389,6 +10793,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10403,6 +10808,7 @@ Default Value: latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10424,6 +10830,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -10439,6 +10846,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10460,6 +10868,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10475,6 +10884,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10495,6 +10905,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10509,6 +10920,7 @@ Default Value: latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10530,6 +10942,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10545,6 +10958,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10593,6 +11007,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10613,6 +11028,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10635,6 +11051,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10655,6 +11072,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -10696,6 +11114,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10710,6 +11129,7 @@ Get all examples by query params, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10727,6 +11147,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10742,6 +11163,7 @@ Get all examples by query params, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10759,6 +11181,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10773,6 +11196,7 @@ Get all examples by query params, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10790,6 +11214,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10805,6 +11230,7 @@ Get all examples by query params, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10822,6 +11248,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10837,6 +11264,7 @@ Get all examples by query params, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10854,6 +11282,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10868,6 +11297,7 @@ Get all examples by query params, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10885,6 +11315,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10900,6 +11331,7 @@ Get all examples by query params, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10917,6 +11349,7 @@ Get all examples by query params, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -10932,6 +11365,7 @@ Get all examples by query params, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "base", IsDeprecated: false, Summary: Default Value: base, @@ -10979,6 +11413,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ inputs, outputs, @@ -11008,6 +11443,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ inputs, outputs, @@ -11040,6 +11476,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ inputs, outputs, @@ -11069,6 +11506,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ inputs, outputs, @@ -11099,6 +11537,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -11140,6 +11579,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11154,6 +11594,7 @@ Create a new example., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -11203,6 +11644,7 @@ Delete a specific set of examples., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11223,6 +11665,7 @@ Delete a specific set of examples., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11245,6 +11688,7 @@ Delete a specific set of examples., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11265,6 +11709,7 @@ Delete a specific set of examples., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -11334,6 +11779,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11354,6 +11800,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11376,6 +11823,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11396,6 +11844,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11416,6 +11865,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -11485,6 +11935,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11505,6 +11956,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11527,6 +11979,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11547,6 +12000,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11567,6 +12021,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -11608,6 +12063,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11622,6 +12078,7 @@ Update examples in bulk., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -11642,6 +12099,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -11656,6 +12114,7 @@ Update examples in bulk., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11673,6 +12132,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11687,6 +12147,7 @@ Update examples in bulk., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: , ConverterType: , @@ -11704,6 +12165,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11718,6 +12180,7 @@ Update examples in bulk., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11735,6 +12198,7 @@ Update examples in bulk., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11749,6 +12213,7 @@ Update examples in bulk., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11795,6 +12260,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, input_keys, @@ -11819,6 +12285,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11841,6 +12308,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, input_keys, @@ -11865,6 +12333,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11885,6 +12354,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -11926,6 +12396,7 @@ Create a new example., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11940,6 +12411,7 @@ Create a new example., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -11988,6 +12460,7 @@ Get a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12008,6 +12481,7 @@ Get a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -12043,6 +12517,7 @@ Get a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -12076,6 +12551,7 @@ Get a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -12117,6 +12593,7 @@ Get a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12131,6 +12608,7 @@ Get a specific dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -12180,6 +12658,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12200,6 +12679,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12222,6 +12702,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12242,6 +12723,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -12283,6 +12765,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12297,6 +12780,7 @@ Delete a specific dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -12317,6 +12801,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -12332,6 +12817,7 @@ Delete a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -12349,6 +12835,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -12364,6 +12851,7 @@ Delete a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -12381,6 +12869,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -12396,6 +12885,7 @@ Delete a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -12413,6 +12903,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -12428,6 +12919,7 @@ Delete a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -12445,6 +12937,7 @@ Delete a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12460,6 +12953,7 @@ Delete a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12506,6 +13000,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -12532,6 +13027,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -12563,6 +13059,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -12589,6 +13086,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -12618,6 +13116,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -12659,6 +13158,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12674,6 +13174,7 @@ Update a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12694,6 +13195,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12709,6 +13211,7 @@ Update a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12729,6 +13232,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12744,6 +13248,7 @@ Update a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12764,6 +13269,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12779,6 +13285,7 @@ Update a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12799,6 +13306,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12813,6 +13321,7 @@ Update a specific dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12834,6 +13343,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12848,6 +13358,7 @@ Update a specific dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12869,6 +13380,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -12884,6 +13396,7 @@ Update a specific dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12905,6 +13418,7 @@ Update a specific dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12919,6 +13433,7 @@ Update a specific dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12968,6 +13483,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12988,6 +13504,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13010,6 +13527,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13030,6 +13548,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -13071,6 +13590,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13085,6 +13605,7 @@ Get all datasets by query params and owner., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13102,6 +13623,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13117,6 +13639,7 @@ Get all datasets by query params and owner., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13134,6 +13657,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13148,6 +13672,7 @@ Get all datasets by query params and owner., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13165,6 +13690,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13180,6 +13706,7 @@ Get all datasets by query params and owner., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.DataType.Kv, IsDeprecated: false, Summary: Default Value: kv, @@ -13198,6 +13725,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13213,6 +13741,7 @@ Get all datasets by query params and owner., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13230,6 +13759,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13245,6 +13775,7 @@ Get all datasets by query params and owner., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13262,6 +13793,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13277,6 +13809,7 @@ Get all datasets by query params and owner., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13294,6 +13827,7 @@ Get all datasets by query params and owner., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13309,6 +13843,7 @@ Get all datasets by query params and owner., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13355,6 +13890,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -13384,6 +13920,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -13419,6 +13956,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -13448,6 +13986,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -13481,6 +14020,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -13522,6 +14062,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -13536,6 +14077,7 @@ Create a new dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13553,6 +14095,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13567,6 +14110,7 @@ Create a new dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: , ConverterType: , @@ -13584,6 +14128,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13598,6 +14143,7 @@ Create a new dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13615,6 +14161,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13630,6 +14177,7 @@ Create a new dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13647,6 +14195,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -13662,6 +14211,7 @@ Create a new dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "kv", IsDeprecated: false, Summary: Default Value: kv, @@ -13680,6 +14230,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13694,6 +14245,7 @@ Create a new dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13711,6 +14263,7 @@ Create a new dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13726,6 +14279,7 @@ Create a new dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13772,6 +14326,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, input_keys, @@ -13799,6 +14354,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -13834,6 +14390,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, input_keys, @@ -13861,6 +14418,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -13894,6 +14452,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -13935,6 +14494,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13949,6 +14509,7 @@ Create a new dataset from a CSV file., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -13969,6 +14530,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13984,6 +14546,7 @@ Create a new dataset from a CSV file., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14004,6 +14567,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14019,6 +14583,7 @@ Create a new dataset from a CSV file., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14039,6 +14604,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14053,6 +14619,7 @@ Create a new dataset from a CSV file., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14074,6 +14641,7 @@ Create a new dataset from a CSV file., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14088,6 +14656,7 @@ Create a new dataset from a CSV file., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14137,6 +14706,7 @@ Get dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14157,6 +14727,7 @@ Get dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14179,6 +14750,7 @@ Get dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14199,6 +14771,7 @@ Get dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -14240,6 +14813,7 @@ Get dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14254,6 +14828,7 @@ Get dataset versions., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14274,6 +14849,7 @@ Get dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14289,6 +14865,7 @@ Get dataset versions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14309,6 +14886,7 @@ Get dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14324,6 +14902,7 @@ Get dataset versions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14372,6 +14951,7 @@ Get diff between two dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14392,6 +14972,7 @@ Get diff between two dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ examples_modified, examples_added, @@ -14418,6 +14999,7 @@ Get diff between two dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ examples_modified, examples_added, @@ -14442,6 +15024,7 @@ Get diff between two dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -14483,6 +15066,7 @@ Get diff between two dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14497,6 +15081,7 @@ Get diff between two dataset versions., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14517,6 +15102,7 @@ Get diff between two dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14532,6 +15118,7 @@ Get diff between two dataset versions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14552,6 +15139,7 @@ Get diff between two dataset versions., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14567,6 +15155,7 @@ Get diff between two dataset versions., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14615,6 +15204,7 @@ Get dataset version by as_of or exact tag., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14635,6 +15225,7 @@ Get dataset version by as_of or exact tag., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tags, as_of @@ -14660,6 +15251,7 @@ Get dataset version by as_of or exact tag., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tags, as_of @@ -14683,6 +15275,7 @@ Get dataset version by as_of or exact tag., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -14724,6 +15317,7 @@ Get dataset version by as_of or exact tag., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14738,6 +15332,7 @@ Get dataset version by as_of or exact tag., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14758,6 +15353,7 @@ Get dataset version by as_of or exact tag., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14772,6 +15368,7 @@ Get dataset version by as_of or exact tag., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14789,6 +15386,7 @@ Get dataset version by as_of or exact tag., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14803,6 +15401,7 @@ Get dataset version by as_of or exact tag., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14849,6 +15448,7 @@ Set a tag on a dataset version., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ as_of, tag @@ -14872,6 +15472,7 @@ Set a tag on a dataset version., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tags, as_of @@ -14897,6 +15498,7 @@ Set a tag on a dataset version., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ as_of, tag @@ -14920,6 +15522,7 @@ Set a tag on a dataset version., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tags, as_of @@ -14943,6 +15546,7 @@ Set a tag on a dataset version., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -14984,6 +15588,7 @@ Set a tag on a dataset version., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14998,6 +15603,7 @@ Set a tag on a dataset version., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -15018,6 +15624,7 @@ Set a tag on a dataset version., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15033,6 +15640,7 @@ Set a tag on a dataset version., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15081,6 +15689,7 @@ Download a dataset as OpenAI Evals Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -15101,6 +15710,7 @@ Download a dataset as OpenAI Evals Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15123,6 +15733,7 @@ Download a dataset as OpenAI Evals Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15143,6 +15754,7 @@ Download a dataset as OpenAI Evals Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -15184,6 +15796,7 @@ Download a dataset as OpenAI Evals Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15198,6 +15811,7 @@ Download a dataset as OpenAI Evals Jsonl format., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -15218,6 +15832,7 @@ Download a dataset as OpenAI Evals Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15233,6 +15848,7 @@ Download a dataset as OpenAI Evals Jsonl format., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15281,6 +15897,7 @@ Download a dataset as OpenAI Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -15301,6 +15918,7 @@ Download a dataset as OpenAI Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15323,6 +15941,7 @@ Download a dataset as OpenAI Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15343,6 +15962,7 @@ Download a dataset as OpenAI Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -15384,6 +16004,7 @@ Download a dataset as OpenAI Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15398,6 +16019,7 @@ Download a dataset as OpenAI Jsonl format., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -15418,6 +16040,7 @@ Download a dataset as OpenAI Jsonl format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15433,6 +16056,7 @@ Download a dataset as OpenAI Jsonl format., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15481,6 +16105,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -15501,6 +16126,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15523,6 +16149,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15543,6 +16170,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -15584,6 +16212,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15598,6 +16227,7 @@ Download a dataset as CSV format., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -15618,6 +16248,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15632,6 +16263,7 @@ Download a dataset as CSV format., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15649,6 +16281,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15664,6 +16297,7 @@ Download a dataset as CSV format., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15681,6 +16315,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15696,6 +16331,7 @@ Download a dataset as CSV format., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15713,6 +16349,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15727,6 +16364,7 @@ Download a dataset as CSV format., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -15745,6 +16383,7 @@ Download a dataset as CSV format., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15759,6 +16398,7 @@ Download a dataset as CSV format., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 20, IsDeprecated: false, Summary: Default Value: 20, @@ -15806,6 +16446,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ session_ids, comparative_experiment_id, @@ -15832,6 +16473,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15855,6 +16497,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ session_ids, comparative_experiment_id, @@ -15881,6 +16524,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15902,6 +16546,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -15943,6 +16588,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15957,6 +16603,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -15977,6 +16624,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15991,6 +16639,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16008,6 +16657,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16022,6 +16672,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16039,6 +16690,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16053,6 +16705,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16070,6 +16723,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16085,6 +16739,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16102,6 +16757,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16116,6 +16772,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -16134,6 +16791,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16148,6 +16806,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 100, IsDeprecated: false, Summary: Default Value: 100, @@ -16166,6 +16825,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16181,6 +16841,7 @@ Fetch examples for a dataset, and fetch the runs for each example if they are as ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16227,6 +16888,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ baseline_session_id, comparison_session_ids, @@ -16255,6 +16917,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_deltas ], @@ -16279,6 +16942,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ baseline_session_id, comparison_session_ids, @@ -16307,6 +16971,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_deltas ], @@ -16329,6 +16994,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -16370,6 +17036,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16384,6 +17051,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16432,6 +17100,7 @@ Get the state of sharing a dataset, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16452,6 +17121,7 @@ Get the state of sharing a dataset, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16475,6 +17145,7 @@ Get the state of sharing a dataset, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16496,6 +17167,7 @@ Get the state of sharing a dataset, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -16537,6 +17209,7 @@ Get the state of sharing a dataset, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16551,6 +17224,7 @@ Get the state of sharing a dataset, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16571,6 +17245,7 @@ Get the state of sharing a dataset, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16585,6 +17260,7 @@ Get the state of sharing a dataset, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16635,6 +17311,7 @@ Share a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16655,6 +17332,7 @@ Share a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ dataset_id, share_token @@ -16680,6 +17358,7 @@ Share a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ dataset_id, share_token @@ -16703,6 +17382,7 @@ Share a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -16744,6 +17424,7 @@ Share a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16758,6 +17439,7 @@ Share a dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16807,6 +17489,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16827,6 +17510,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16849,6 +17533,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16869,6 +17554,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -16910,6 +17596,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16924,6 +17611,7 @@ Unshare a dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16944,6 +17632,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16959,6 +17648,7 @@ Unshare a dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16979,6 +17669,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16994,6 +17685,7 @@ Unshare a dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17014,6 +17706,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17029,6 +17722,7 @@ Unshare a dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17049,6 +17743,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17063,6 +17758,7 @@ Unshare a dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17084,6 +17780,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17098,6 +17795,7 @@ Unshare a dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17119,6 +17817,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -17134,6 +17833,7 @@ Unshare a dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17155,6 +17855,7 @@ Unshare a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17169,6 +17870,7 @@ Unshare a dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17218,6 +17920,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17238,6 +17941,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17260,6 +17964,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17280,6 +17985,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -17321,6 +18027,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17335,6 +18042,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17352,6 +18060,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17366,6 +18075,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17383,6 +18093,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17398,6 +18109,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17415,6 +18127,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17430,6 +18143,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17447,6 +18161,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17461,6 +18176,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17478,6 +18194,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17492,6 +18209,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17509,6 +18227,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17523,6 +18242,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17540,6 +18260,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17555,6 +18276,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17601,6 +18323,7 @@ Create a comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, experiment_ids, @@ -17630,6 +18353,7 @@ Create a comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, name, @@ -17661,6 +18385,7 @@ Create a comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, experiment_ids, @@ -17690,6 +18415,7 @@ Create a comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, name, @@ -17719,6 +18445,7 @@ Create a comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -17760,6 +18487,7 @@ Create a comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17774,6 +18502,7 @@ Create a comparative experiment., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -17823,6 +18552,7 @@ Delete a specific comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17843,6 +18573,7 @@ Delete a specific comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17865,6 +18596,7 @@ Delete a specific comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17885,6 +18617,7 @@ Delete a specific comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -17926,6 +18659,7 @@ Delete a specific comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17940,6 +18674,7 @@ Delete a specific comparative experiment., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17957,6 +18692,7 @@ Delete a specific comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17971,6 +18707,7 @@ Delete a specific comparative experiment., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17988,6 +18725,7 @@ Delete a specific comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18003,6 +18741,7 @@ Delete a specific comparative experiment., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18020,6 +18759,7 @@ Delete a specific comparative experiment., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18034,6 +18774,7 @@ Delete a specific comparative experiment., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18080,6 +18821,7 @@ Clone a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ target_dataset_id, source_dataset_id, @@ -18105,6 +18847,7 @@ Clone a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18127,6 +18870,7 @@ Clone a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ target_dataset_id, source_dataset_id, @@ -18152,6 +18896,7 @@ Clone a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18172,6 +18917,7 @@ Clone a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -18213,6 +18959,7 @@ Clone a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18227,6 +18974,7 @@ Clone a dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -18247,6 +18995,7 @@ Clone a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18262,6 +19011,7 @@ Clone a dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18311,6 +19061,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18331,6 +19082,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18353,6 +19105,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18373,6 +19126,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -18414,6 +19168,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18428,6 +19183,7 @@ Default Value: latest, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -18448,6 +19204,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18462,6 +19219,7 @@ Default Value: latest, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18479,6 +19237,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18493,6 +19252,7 @@ Default Value: latest, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18510,6 +19270,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18524,6 +19285,7 @@ Default Value: latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -18569,6 +19331,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ split_name, examples, @@ -18593,6 +19356,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18615,6 +19379,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ split_name, examples, @@ -18639,6 +19404,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18659,6 +19425,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -18700,6 +19467,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18714,6 +19482,7 @@ Default Value: latest, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -18734,6 +19503,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18749,6 +19519,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "latest", IsDeprecated: false, Summary: Default Value: latest, @@ -18796,6 +19567,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tag ], @@ -18818,6 +19590,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18840,6 +19613,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tag ], @@ -18862,6 +19636,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18882,6 +19657,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -18923,6 +19699,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18937,6 +19714,7 @@ Serve a dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -18986,6 +19764,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19006,6 +19785,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19028,6 +19808,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19048,6 +19829,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -19089,6 +19871,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19103,6 +19886,7 @@ Serve a dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -19123,6 +19907,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19137,6 +19922,7 @@ Serve a dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19154,6 +19940,7 @@ Serve a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19168,6 +19955,7 @@ Serve a dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 5, IsDeprecated: false, Summary: Default Value: 5, @@ -19215,6 +20003,7 @@ Search a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ inputs, limit @@ -19238,6 +20027,7 @@ Search a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ examples ], @@ -19262,6 +20052,7 @@ Search a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ inputs, limit @@ -19285,6 +20076,7 @@ Search a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ examples ], @@ -19307,6 +20099,7 @@ Search a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -19348,6 +20141,7 @@ Search a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19363,6 +20157,7 @@ Search a dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19383,6 +20178,7 @@ Search a dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19398,6 +20194,7 @@ Search a dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -19446,6 +20243,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19466,6 +20264,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19488,6 +20287,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19508,6 +20308,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -19549,6 +20350,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19563,6 +20365,7 @@ List all run rules., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19580,6 +20383,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19595,6 +20399,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19612,6 +20417,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19626,6 +20432,7 @@ List all run rules., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: Default Value: true, @@ -19644,6 +20451,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19659,6 +20467,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19676,6 +20485,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19690,6 +20500,7 @@ List all run rules., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19707,6 +20518,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19722,6 +20534,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19739,6 +20552,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19754,6 +20568,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19771,6 +20586,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19786,6 +20602,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19803,6 +20620,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19818,6 +20636,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19835,6 +20654,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19849,6 +20669,7 @@ List all run rules., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -19867,6 +20688,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19882,6 +20704,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19899,6 +20722,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19913,6 +20737,7 @@ List all run rules., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -19931,6 +20756,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19946,6 +20772,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19963,6 +20790,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19978,6 +20806,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19995,6 +20824,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20009,6 +20839,7 @@ List all run rules., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -20027,6 +20858,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20042,6 +20874,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20059,6 +20892,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20074,6 +20908,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20091,6 +20926,7 @@ List all run rules., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20106,6 +20942,7 @@ List all run rules., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20152,6 +20989,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name, session_id, @@ -20191,6 +21029,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, tenant_id, @@ -20241,6 +21080,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name, session_id, @@ -20280,6 +21120,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, tenant_id, @@ -20328,6 +21169,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -20369,6 +21211,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20383,6 +21226,7 @@ Create a new run rule., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -20403,6 +21247,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20417,6 +21262,7 @@ Create a new run rule., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20434,6 +21280,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20449,6 +21296,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20466,6 +21314,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20480,6 +21329,7 @@ Create a new run rule., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: Default Value: true, @@ -20498,6 +21348,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20513,6 +21364,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20530,6 +21382,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20544,6 +21397,7 @@ Create a new run rule., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20561,6 +21415,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20576,6 +21431,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20593,6 +21449,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20608,6 +21465,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20625,6 +21483,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20640,6 +21499,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20657,6 +21517,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20672,6 +21533,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20689,6 +21551,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20703,6 +21566,7 @@ Create a new run rule., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -20721,6 +21585,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20736,6 +21601,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20753,6 +21619,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20767,6 +21634,7 @@ Create a new run rule., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -20785,6 +21653,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20800,6 +21669,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20817,6 +21687,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20832,6 +21703,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20849,6 +21721,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20863,6 +21736,7 @@ Create a new run rule., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -20881,6 +21755,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20896,6 +21771,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20913,6 +21789,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20928,6 +21805,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20945,6 +21823,7 @@ Create a new run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20960,6 +21839,7 @@ Create a new run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21006,6 +21886,7 @@ Update a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name, session_id, @@ -21045,6 +21926,7 @@ Update a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, tenant_id, @@ -21095,6 +21977,7 @@ Update a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name, session_id, @@ -21134,6 +22017,7 @@ Update a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, tenant_id, @@ -21182,6 +22066,7 @@ Update a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -21223,6 +22108,7 @@ Update a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21237,6 +22123,7 @@ Update a run rule., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -21286,6 +22173,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21306,6 +22194,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21328,6 +22217,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21348,6 +22238,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -21389,6 +22280,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21403,6 +22295,7 @@ Delete a run rule., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -21423,6 +22316,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21437,6 +22331,7 @@ Delete a run rule., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21458,6 +22353,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21472,6 +22368,7 @@ Delete a run rule., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21493,6 +22390,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21508,6 +22406,7 @@ Delete a run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21528,6 +22427,7 @@ Delete a run rule., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21543,6 +22443,7 @@ Delete a run rule., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -21591,6 +22492,7 @@ List logs for a particular rule, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21611,6 +22513,7 @@ List logs for a particular rule, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21633,6 +22536,7 @@ List logs for a particular rule, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21653,6 +22557,7 @@ List logs for a particular rule, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -21694,6 +22599,7 @@ List logs for a particular rule, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21708,6 +22614,7 @@ List logs for a particular rule, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -21757,6 +22664,7 @@ Trigger a run rule manually., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21777,6 +22685,7 @@ Trigger a run rule manually., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, tenant_id, @@ -21827,6 +22736,7 @@ Trigger a run rule manually., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, tenant_id, @@ -21875,6 +22785,7 @@ Trigger a run rule manually., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -21916,6 +22827,7 @@ Trigger a run rule manually., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21930,6 +22842,7 @@ Trigger a run rule manually., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -21950,6 +22863,7 @@ Trigger a run rule manually., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21964,6 +22878,7 @@ Trigger a run rule manually., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -22013,6 +22928,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22033,6 +22949,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -22100,6 +23017,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -22165,6 +23083,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -22206,6 +23125,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22220,6 +23140,7 @@ Get a specific run., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -22240,6 +23161,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22255,6 +23177,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22272,6 +23195,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22287,6 +23211,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22304,6 +23229,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22319,6 +23245,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22336,6 +23263,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 3, Properties: null, EnumValues: null, @@ -22351,6 +23279,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3, @@ -22368,6 +23297,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22383,6 +23313,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22400,6 +23331,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22415,6 +23347,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22432,6 +23365,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22447,6 +23381,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22464,6 +23399,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22479,6 +23415,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22496,6 +23433,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22511,6 +23449,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22528,6 +23467,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22543,6 +23483,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22560,6 +23501,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22575,6 +23517,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22592,6 +23535,7 @@ Get a specific run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -22607,6 +23551,7 @@ Get a specific run., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -22653,6 +23598,7 @@ Update a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ trace_id, dotted_order, @@ -22686,6 +23632,7 @@ Update a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22708,6 +23655,7 @@ Update a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ trace_id, dotted_order, @@ -22741,6 +23689,7 @@ Update a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22761,6 +23710,7 @@ Update a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -22802,6 +23752,7 @@ Update a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22816,6 +23767,7 @@ Update a run., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -22864,6 +23816,7 @@ Get the state of sharing of a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22884,6 +23837,7 @@ Get the state of sharing of a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22907,6 +23861,7 @@ Get the state of sharing of a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22928,6 +23883,7 @@ Get the state of sharing of a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -22969,6 +23925,7 @@ Get the state of sharing of a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22983,6 +23940,7 @@ Get the state of sharing of a run., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -23032,6 +23990,7 @@ Share a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23052,6 +24011,7 @@ Share a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ run_id, share_token @@ -23077,6 +24037,7 @@ Share a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ run_id, share_token @@ -23100,6 +24061,7 @@ Share a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -23141,6 +24103,7 @@ Share a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23155,6 +24118,7 @@ Share a run., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -23204,6 +24168,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23224,6 +24189,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23246,6 +24212,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23266,6 +24233,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -23307,6 +24275,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23322,6 +24291,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23339,6 +24309,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23354,6 +24325,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23371,6 +24343,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23386,6 +24359,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23403,6 +24377,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23418,6 +24393,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23435,6 +24411,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23450,6 +24427,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23467,6 +24445,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23482,6 +24461,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23499,6 +24479,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23514,6 +24495,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23531,6 +24513,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23546,6 +24529,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23563,6 +24547,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23578,6 +24563,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23595,6 +24581,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23610,6 +24597,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23627,6 +24615,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23642,6 +24631,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23659,6 +24649,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23674,6 +24665,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23691,6 +24683,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23706,6 +24699,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23723,6 +24717,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23738,6 +24733,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23755,6 +24751,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23770,6 +24767,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23787,6 +24785,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23802,6 +24801,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23819,6 +24819,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23834,6 +24835,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23851,6 +24853,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23865,6 +24868,7 @@ Unshare a run., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 100, IsDeprecated: false, Summary: Default Value: 100, @@ -23883,6 +24887,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23897,6 +24902,7 @@ Unshare a run., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Default Value: [id, name, run_type, start_time, end_time, status, error, extra, events, inputs, outputs, parent_run_id, manifest_id, manifest_s3_id, session_id, serialized, reference_example_id, total_tokens, prompt_tokens, completion_tokens, total_cost, prompt_cost, completion_cost, price_model_id, first_token_time, trace_id, dotted_order, last_queued_at, feedback_stats, child_run_ids, parent_run_ids, tags, in_dataset, app_path, share_token, trace_tier, trace_first_received_at, ttl_seconds, trace_upgrade], @@ -23915,6 +24921,7 @@ Unshare a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -23930,6 +24937,7 @@ Unshare a run., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "desc", IsDeprecated: false, Summary: Default Value: desc, @@ -23977,6 +24985,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, trace, @@ -24018,6 +25027,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ runs, cursors, @@ -24044,6 +25054,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, trace, @@ -24085,6 +25096,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ runs, cursors, @@ -24109,6 +25121,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -24150,6 +25163,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24164,6 +25178,7 @@ Get all runs by query in body payload., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24181,6 +25196,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24195,6 +25211,7 @@ Get all runs by query in body payload., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24241,6 +25258,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ query, feedback_keys @@ -24264,6 +25282,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter, feedback_urls @@ -24289,6 +25308,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ query, feedback_keys @@ -24312,6 +25332,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter, feedback_urls @@ -24335,6 +25356,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -24376,6 +25398,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24391,6 +25414,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24408,6 +25432,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24423,6 +25448,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24440,6 +25466,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24455,6 +25482,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24472,6 +25500,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24487,6 +25516,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24504,6 +25534,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24519,6 +25550,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24536,6 +25568,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24551,6 +25584,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24568,6 +25602,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24583,6 +25618,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24600,6 +25636,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24615,6 +25652,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24632,6 +25670,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24647,6 +25686,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24664,6 +25704,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24679,6 +25720,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24696,6 +25738,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24711,6 +25754,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24728,6 +25772,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24743,6 +25788,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24760,6 +25806,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24775,6 +25822,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24792,6 +25840,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24807,6 +25856,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24824,6 +25874,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24839,6 +25890,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24856,6 +25908,7 @@ Get runs filter expression query for a given natural language query., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24871,6 +25924,7 @@ Get runs filter expression query for a given natural language query., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24917,6 +25971,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, trace, @@ -24954,6 +26009,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ run_count, latency_p50, @@ -24994,6 +26050,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, trace, @@ -25031,6 +26088,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ run_count, latency_p50, @@ -25069,6 +26127,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -25110,6 +26169,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25124,6 +26184,7 @@ Get all runs by query in body payload., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "UTC", IsDeprecated: false, Summary: Default Value: UTC, @@ -25142,6 +26203,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25156,6 +26218,7 @@ Get all runs by query in body payload., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25173,6 +26236,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -25188,6 +26252,7 @@ Get all runs by query in body payload., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1, @@ -25205,6 +26270,7 @@ Get all runs by query in body payload., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -25220,6 +26286,7 @@ Get all runs by query in body payload., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1, @@ -25266,6 +26333,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ timezone, groups, @@ -25291,6 +26359,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ blocks ], @@ -25315,6 +26384,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ timezone, groups, @@ -25340,6 +26410,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ blocks ], @@ -25362,6 +26433,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -25403,6 +26475,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25417,6 +26490,7 @@ Get monitoring data for a specific session., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25434,6 +26508,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25449,6 +26524,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25466,6 +26542,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool, Chain, @@ -25496,6 +26573,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.CreateRunRequestRunTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.CreateRunRequestRunTypeJsonConverter, @@ -25513,6 +26591,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 3, Properties: null, EnumValues: null, @@ -25528,6 +26607,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3, @@ -25545,6 +26625,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 3, Properties: null, EnumValues: null, @@ -25560,6 +26641,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3, @@ -25577,6 +26659,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25592,6 +26675,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25609,6 +26693,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25624,6 +26709,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25641,6 +26727,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25656,6 +26743,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25673,6 +26761,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25688,6 +26777,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25705,6 +26795,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25720,6 +26811,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25737,6 +26829,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25752,6 +26845,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25769,6 +26863,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25784,6 +26879,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25801,6 +26897,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25816,6 +26913,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25833,6 +26931,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25848,6 +26947,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25865,6 +26965,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25880,6 +26981,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25897,6 +26999,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25912,6 +27015,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25929,6 +27033,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25944,6 +27049,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25961,6 +27067,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -25976,6 +27083,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -25993,6 +27101,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -26008,6 +27117,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -26025,6 +27135,7 @@ Get monitoring data for a specific session., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -26040,6 +27151,7 @@ Get monitoring data for a specific session., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -26086,6 +27198,7 @@ Create a new run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -26127,6 +27240,7 @@ Create a new run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26149,6 +27263,7 @@ Create a new run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -26190,6 +27305,7 @@ Create a new run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26229,6 +27345,7 @@ Create a new run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26243,6 +27360,7 @@ Create a new run., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26260,6 +27378,7 @@ Create a new run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26274,6 +27393,7 @@ Create a new run., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26320,6 +27440,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ post, patch @@ -26343,6 +27464,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26365,6 +27487,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ post, patch @@ -26388,6 +27511,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26427,6 +27551,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26442,6 +27567,7 @@ Batch ingest runs., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -26462,6 +27588,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26476,6 +27603,7 @@ Batch ingest runs., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26493,6 +27621,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Conversation ], @@ -26511,6 +27640,7 @@ Batch ingest runs., ConverterType: global::OpenApiGenerator.JsonConverters.RunGroupByJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunGroupByJsonConverter, @@ -26528,6 +27658,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26543,6 +27674,7 @@ Batch ingest runs., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26560,6 +27692,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26575,6 +27708,7 @@ Batch ingest runs., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26592,6 +27726,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26607,6 +27742,7 @@ Batch ingest runs., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26624,6 +27760,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26638,6 +27775,7 @@ Batch ingest runs., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -26656,6 +27794,7 @@ Batch ingest runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26670,6 +27809,7 @@ Batch ingest runs., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 10, IsDeprecated: false, Summary: Default Value: 10, @@ -26717,6 +27857,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ session_id, group_by, @@ -26745,6 +27886,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26767,6 +27909,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ session_id, group_by, @@ -26795,6 +27938,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26815,6 +27959,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -26856,6 +28001,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26870,6 +28016,7 @@ Get runs grouped by an expression, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26887,6 +28034,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Conversation ], @@ -26905,6 +28053,7 @@ Get runs grouped by an expression, ConverterType: global::OpenApiGenerator.JsonConverters.RunGroupByJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunGroupByJsonConverter, @@ -26922,6 +28071,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26937,6 +28087,7 @@ Get runs grouped by an expression, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26954,6 +28105,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26969,6 +28121,7 @@ Get runs grouped by an expression, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26986,6 +28139,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -27001,6 +28155,7 @@ Get runs grouped by an expression, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -27018,6 +28173,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27032,6 +28188,7 @@ Get runs grouped by an expression, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -27050,6 +28207,7 @@ Get runs grouped by an expression, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27064,6 +28222,7 @@ Get runs grouped by an expression, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 10, IsDeprecated: false, Summary: Default Value: 10, @@ -27111,6 +28270,7 @@ Get stats for the grouped runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ session_id, group_by, @@ -27139,6 +28299,7 @@ Get stats for the grouped runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ run_count, latency_p50, @@ -27180,6 +28341,7 @@ Get stats for the grouped runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ session_id, group_by, @@ -27208,6 +28370,7 @@ Get stats for the grouped runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ run_count, latency_p50, @@ -27247,6 +28410,7 @@ Get stats for the grouped runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -27288,6 +28452,7 @@ Get stats for the grouped runs., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27302,6 +28467,7 @@ Get stats for the grouped runs., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -27350,6 +28516,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27370,6 +28537,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -27406,6 +28574,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -27440,6 +28609,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -27481,6 +28651,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27495,6 +28666,7 @@ Get a specific feedback., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -27515,6 +28687,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -27530,6 +28703,7 @@ Get a specific feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4, @@ -27547,6 +28721,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 6, Properties: null, EnumValues: null, @@ -27562,6 +28737,7 @@ Get a specific feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6, @@ -27579,6 +28755,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -27594,6 +28771,7 @@ Get a specific feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -27611,6 +28789,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -27626,6 +28805,7 @@ Get a specific feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -27643,6 +28823,7 @@ Get a specific feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -27658,6 +28839,7 @@ Get a specific feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -27704,6 +28886,7 @@ Replace an existing feedback entry with a new, modified entry., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ score, value, @@ -27730,6 +28913,7 @@ Replace an existing feedback entry with a new, modified entry., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -27766,6 +28950,7 @@ Replace an existing feedback entry with a new, modified entry., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ score, value, @@ -27792,6 +28977,7 @@ Replace an existing feedback entry with a new, modified entry., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -27826,6 +29012,7 @@ Replace an existing feedback entry with a new, modified entry., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -27867,6 +29054,7 @@ Replace an existing feedback entry with a new, modified entry., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27881,6 +29069,7 @@ Replace an existing feedback entry with a new, modified entry., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -27930,6 +29119,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27950,6 +29140,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27972,6 +29163,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27992,6 +29184,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -28033,6 +29226,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28048,6 +29242,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28068,6 +29263,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28083,6 +29279,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28103,6 +29300,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28118,6 +29316,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28138,6 +29337,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28153,6 +29353,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28173,6 +29374,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28187,6 +29389,7 @@ Delete a feedback., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28208,6 +29411,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28222,6 +29426,7 @@ Delete a feedback., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28243,6 +29448,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28258,6 +29464,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28278,6 +29485,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28293,6 +29501,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28313,6 +29522,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28328,6 +29538,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28348,6 +29559,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28363,6 +29575,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28383,6 +29596,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28398,6 +29612,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28418,6 +29633,7 @@ Delete a feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28433,6 +29649,7 @@ Delete a feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -28481,6 +29698,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28501,6 +29719,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28523,6 +29742,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28543,6 +29763,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -28584,6 +29805,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28598,6 +29820,7 @@ List all Feedback by query params., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28615,6 +29838,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28629,6 +29853,7 @@ List all Feedback by query params., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28646,6 +29871,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28661,6 +29887,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -28678,6 +29905,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28693,6 +29921,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -28710,6 +29939,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28724,6 +29954,7 @@ List all Feedback by query params., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28741,6 +29972,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -28756,6 +29988,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4, @@ -28773,6 +30006,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 6, Properties: null, EnumValues: null, @@ -28788,6 +30022,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6, @@ -28805,6 +30040,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28820,6 +30056,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -28837,6 +30074,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -28852,6 +30090,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -28869,6 +30108,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28884,6 +30124,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -28901,6 +30142,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28916,6 +30158,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -28933,6 +30176,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28947,6 +30191,7 @@ List all Feedback by query params., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28964,6 +30209,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 5, Properties: null, EnumValues: null, @@ -28979,6 +30225,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5, @@ -28996,6 +30243,7 @@ List all Feedback by query params., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29011,6 +30259,7 @@ List all Feedback by query params., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29057,6 +30306,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -29092,6 +30342,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -29128,6 +30379,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -29163,6 +30415,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -29197,6 +30450,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -29238,6 +30492,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29252,6 +30507,7 @@ Create a new feedback., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29269,6 +30525,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29283,6 +30540,7 @@ Create a new feedback., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29300,6 +30558,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29315,6 +30574,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29332,6 +30592,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29347,6 +30608,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29364,6 +30626,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29378,6 +30641,7 @@ Create a new feedback., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29395,6 +30659,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -29410,6 +30675,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4, @@ -29427,6 +30693,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 6, Properties: null, EnumValues: null, @@ -29442,6 +30709,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6, @@ -29459,6 +30727,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29474,6 +30743,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29491,6 +30761,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -29506,6 +30777,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -29523,6 +30795,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29538,6 +30811,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29555,6 +30829,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29570,6 +30845,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29587,6 +30863,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29601,6 +30878,7 @@ Create a new feedback., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29618,6 +30896,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 5, Properties: null, EnumValues: null, @@ -29633,6 +30912,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5, @@ -29650,6 +30930,7 @@ Create a new feedback., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29665,6 +30946,7 @@ Create a new feedback., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29714,6 +30996,7 @@ is already visible in the app, thus already present in DB, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -29749,6 +31032,7 @@ is already visible in the app, thus already present in DB, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -29785,6 +31069,7 @@ is already visible in the app, thus already present in DB, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -29820,6 +31105,7 @@ is already visible in the app, thus already present in DB, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created_at, modified_at, @@ -29854,6 +31140,7 @@ is already visible in the app, thus already present in DB, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -29923,6 +31210,7 @@ Create a new feedback ingest token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29944,6 +31232,7 @@ Create a new feedback ingest token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29967,6 +31256,7 @@ Create a new feedback ingest token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29988,6 +31278,7 @@ Create a new feedback ingest token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30009,6 +31300,7 @@ Create a new feedback ingest token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -30050,6 +31342,7 @@ Create a new feedback ingest token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30064,6 +31357,7 @@ Create a new feedback ingest token., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30112,6 +31406,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30132,6 +31427,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30154,6 +31450,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30174,6 +31471,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -30215,6 +31513,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30229,6 +31528,7 @@ List all feedback ingest tokens for a run., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -30249,6 +31549,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -30264,6 +31565,7 @@ List all feedback ingest tokens for a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30284,6 +31586,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 5, Properties: null, EnumValues: null, @@ -30299,6 +31602,7 @@ List all feedback ingest tokens for a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30319,6 +31623,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30334,6 +31639,7 @@ List all feedback ingest tokens for a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30354,6 +31660,7 @@ List all feedback ingest tokens for a run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30369,6 +31676,7 @@ List all feedback ingest tokens for a run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30417,6 +31725,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30437,6 +31746,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30459,6 +31769,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30479,6 +31790,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -30520,6 +31832,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30534,6 +31847,7 @@ Create a new feedback with a token., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -30554,6 +31868,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -30569,6 +31884,7 @@ Create a new feedback with a token., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4, @@ -30586,6 +31902,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 5, Properties: null, EnumValues: null, @@ -30601,6 +31918,7 @@ Create a new feedback with a token., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5, @@ -30618,6 +31936,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30633,6 +31952,7 @@ Create a new feedback with a token., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30650,6 +31970,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -30665,6 +31986,7 @@ Create a new feedback with a token., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -30682,6 +32004,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30697,6 +32020,7 @@ Create a new feedback with a token., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30743,6 +32067,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ score, value, @@ -30769,6 +32094,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30791,6 +32117,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ score, value, @@ -30817,6 +32144,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30837,6 +32165,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -30878,6 +32207,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30892,6 +32222,7 @@ Create a new feedback with a token., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -30912,6 +32243,7 @@ Create a new feedback with a token., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30926,6 +32258,7 @@ Create a new feedback with a token., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -30975,6 +32308,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30995,6 +32329,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -31053,6 +32388,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -31109,6 +32445,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -31150,6 +32487,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31164,6 +32502,7 @@ Get the shared run., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -31184,6 +32523,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31198,6 +32538,7 @@ Get the shared run., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -31218,6 +32559,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31232,6 +32574,7 @@ Get the shared run., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31281,6 +32624,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31301,6 +32645,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -31359,6 +32704,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -31415,6 +32761,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -31456,6 +32803,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31470,6 +32818,7 @@ Get the shared run., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -31490,6 +32839,7 @@ Get the shared run., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31505,6 +32855,7 @@ Get the shared run., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31551,6 +32902,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id ], @@ -31573,6 +32925,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ runs, cursors, @@ -31599,6 +32952,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id ], @@ -31621,6 +32975,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ runs, cursors, @@ -31645,6 +33000,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -31686,6 +33042,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31700,6 +33057,7 @@ Get run by ids or the shared run if not specifed., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -31720,6 +33078,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31735,6 +33094,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31755,6 +33115,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31770,6 +33131,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31790,6 +33152,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31805,6 +33168,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31825,6 +33189,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31840,6 +33205,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31860,6 +33226,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31874,6 +33241,7 @@ Get run by ids or the shared run if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31895,6 +33263,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31909,6 +33278,7 @@ Get run by ids or the shared run if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31930,6 +33300,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31945,6 +33316,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -31965,6 +33337,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31980,6 +33353,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32000,6 +33374,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32015,6 +33390,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32035,6 +33411,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32050,6 +33427,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32096,6 +33474,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32116,6 +33495,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32138,6 +33518,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32158,6 +33539,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -32199,6 +33581,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32213,6 +33596,7 @@ Get run by ids or the shared run if not specifed., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -32233,6 +33617,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32247,6 +33632,7 @@ Get run by ids or the shared run if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32268,6 +33654,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32282,6 +33669,7 @@ Get run by ids or the shared run if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32303,6 +33691,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -32318,6 +33707,7 @@ Get run by ids or the shared run if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32339,6 +33729,7 @@ Get run by ids or the shared run if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32353,6 +33744,7 @@ Get run by ids or the shared run if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32402,6 +33794,7 @@ Get dataset by ids or the shared dataset if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32422,6 +33815,7 @@ Get dataset by ids or the shared dataset if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -32453,6 +33847,7 @@ Get dataset by ids or the shared dataset if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -32482,6 +33877,7 @@ Get dataset by ids or the shared dataset if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -32523,6 +33919,7 @@ Get dataset by ids or the shared dataset if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32537,6 +33934,7 @@ Get dataset by ids or the shared dataset if not specifed., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -32557,6 +33955,7 @@ Get dataset by ids or the shared dataset if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32572,6 +33971,7 @@ Get dataset by ids or the shared dataset if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32592,6 +33992,7 @@ Get dataset by ids or the shared dataset if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32607,6 +34008,7 @@ Get dataset by ids or the shared dataset if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32630,6 +34032,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32645,6 +34048,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32665,6 +34069,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32679,6 +34084,7 @@ Default Value: latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32700,6 +34106,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32714,6 +34121,7 @@ Default Value: latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32735,6 +34143,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32749,6 +34158,7 @@ Default Value: latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32770,6 +34180,7 @@ Default Value: latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32785,6 +34196,7 @@ Default Value: latest, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -32833,6 +34245,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32853,6 +34266,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32875,6 +34289,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32895,6 +34310,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -32936,6 +34352,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32950,6 +34367,7 @@ Get example by ids or the shared example if not specifed., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -32970,6 +34388,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32985,6 +34404,7 @@ Get example by ids or the shared example if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33005,6 +34425,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33020,6 +34441,7 @@ Get example by ids or the shared example if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33040,6 +34462,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33055,6 +34478,7 @@ Get example by ids or the shared example if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33075,6 +34499,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33090,6 +34515,7 @@ Get example by ids or the shared example if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33110,6 +34536,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -33125,6 +34552,7 @@ Get example by ids or the shared example if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33146,6 +34574,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33160,6 +34589,7 @@ Get example by ids or the shared example if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33181,6 +34611,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33196,6 +34627,7 @@ Get example by ids or the shared example if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33216,6 +34648,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33230,6 +34663,7 @@ Get example by ids or the shared example if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33251,6 +34685,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33265,6 +34700,7 @@ Get example by ids or the shared example if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33286,6 +34722,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33300,6 +34737,7 @@ Get example by ids or the shared example if not specifed., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -33321,6 +34759,7 @@ Get example by ids or the shared example if not specifed., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33336,6 +34775,7 @@ Get example by ids or the shared example if not specifed., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Header, ParameterStyle: Simple, ParameterExplode: false, @@ -33384,6 +34824,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33404,6 +34845,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33426,6 +34868,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33446,6 +34889,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -33487,6 +34931,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33501,6 +34946,7 @@ Get projects run on a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -33521,6 +34967,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33535,6 +34982,7 @@ Get projects run on a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33552,6 +35000,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33567,6 +35016,7 @@ Get projects run on a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33584,6 +35034,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33599,6 +35050,7 @@ Get projects run on a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33616,6 +35068,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33630,6 +35083,7 @@ Get projects run on a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -33648,6 +35102,7 @@ Get projects run on a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33662,6 +35117,7 @@ Get projects run on a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 20, IsDeprecated: false, Summary: Default Value: 20, @@ -33709,6 +35165,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ session_ids, comparative_experiment_id, @@ -33735,6 +35192,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33758,6 +35216,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ session_ids, comparative_experiment_id, @@ -33784,6 +35243,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33805,6 +35265,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -33846,6 +35307,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33860,6 +35322,7 @@ Get examples with associated runs from sessions in a dataset that has been share ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -33880,6 +35343,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33894,6 +35358,7 @@ Get examples with associated runs from sessions in a dataset that has been share ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33911,6 +35376,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33925,6 +35391,7 @@ Get examples with associated runs from sessions in a dataset that has been share ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33942,6 +35409,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33956,6 +35424,7 @@ Get examples with associated runs from sessions in a dataset that has been share ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33973,6 +35442,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33988,6 +35458,7 @@ Get examples with associated runs from sessions in a dataset that has been share ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34005,6 +35476,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34019,6 +35491,7 @@ Get examples with associated runs from sessions in a dataset that has been share ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -34037,6 +35510,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34051,6 +35525,7 @@ Get examples with associated runs from sessions in a dataset that has been share ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 100, IsDeprecated: false, Summary: Default Value: 100, @@ -34069,6 +35544,7 @@ Get examples with associated runs from sessions in a dataset that has been share IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34084,6 +35560,7 @@ Get examples with associated runs from sessions in a dataset that has been share ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34130,6 +35607,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ baseline_session_id, comparison_session_ids, @@ -34158,6 +35636,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_deltas ], @@ -34182,6 +35661,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ baseline_session_id, comparison_session_ids, @@ -34210,6 +35690,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_deltas ], @@ -34232,6 +35713,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -34273,6 +35755,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34287,6 +35770,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -34307,6 +35791,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34322,6 +35807,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34339,6 +35825,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34354,6 +35841,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34371,6 +35859,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34386,6 +35875,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34403,6 +35893,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34418,6 +35909,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34435,6 +35927,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34450,6 +35943,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34467,6 +35961,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34482,6 +35977,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34499,6 +35995,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34514,6 +36011,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34531,6 +36029,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34546,6 +36045,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34563,6 +36063,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34578,6 +36079,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34595,6 +36097,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34610,6 +36113,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34627,6 +36131,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34642,6 +36147,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34659,6 +36165,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34674,6 +36181,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34691,6 +36199,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34706,6 +36215,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34723,6 +36233,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34738,6 +36249,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34755,6 +36267,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34770,6 +36283,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34787,6 +36301,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34802,6 +36317,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34819,6 +36335,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34834,6 +36351,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34851,6 +36369,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34865,6 +36384,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 100, IsDeprecated: false, Summary: Default Value: 100, @@ -34883,6 +36403,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34897,6 +36418,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Default Value: [id, name, run_type, start_time, end_time, status, error, extra, events, inputs, outputs, parent_run_id, manifest_id, manifest_s3_id, session_id, serialized, reference_example_id, total_tokens, prompt_tokens, completion_tokens, total_cost, prompt_cost, completion_cost, price_model_id, first_token_time, trace_id, dotted_order, last_queued_at, feedback_stats, child_run_ids, parent_run_ids, tags, in_dataset, app_path, share_token, trace_tier, trace_first_received_at, ttl_seconds, trace_upgrade], @@ -34915,6 +36437,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -34930,6 +36453,7 @@ Fetch the number of regressions/improvements for each example in a dataset, betw ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "desc", IsDeprecated: false, Summary: Default Value: desc, @@ -34977,6 +36501,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, trace, @@ -35018,6 +36543,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ runs, cursors, @@ -35044,6 +36570,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, trace, @@ -35085,6 +36612,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ runs, cursors, @@ -35109,6 +36637,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -35150,6 +36679,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35164,6 +36694,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -35184,6 +36715,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35198,6 +36730,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35215,6 +36748,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35229,6 +36763,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35275,6 +36810,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ query, feedback_keys @@ -35298,6 +36834,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter, feedback_urls @@ -35323,6 +36860,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ query, feedback_keys @@ -35346,6 +36884,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ filter, feedback_urls @@ -35369,6 +36908,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -35410,6 +36950,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35424,6 +36965,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -35444,6 +36986,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35459,6 +37002,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35476,6 +37020,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35491,6 +37036,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35508,6 +37054,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35523,6 +37070,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35540,6 +37088,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35555,6 +37104,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35572,6 +37122,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35587,6 +37138,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35604,6 +37156,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35619,6 +37172,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35636,6 +37190,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35651,6 +37206,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35668,6 +37224,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35683,6 +37240,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35700,6 +37258,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35715,6 +37274,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35732,6 +37292,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35747,6 +37308,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35764,6 +37326,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35779,6 +37342,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35796,6 +37360,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35811,6 +37376,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35828,6 +37394,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35843,6 +37410,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35860,6 +37428,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35875,6 +37444,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35892,6 +37462,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35907,6 +37478,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35924,6 +37496,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35939,6 +37512,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35985,6 +37559,7 @@ Get run stats in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, trace, @@ -36022,6 +37597,7 @@ Get run stats in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ run_count, latency_p50, @@ -36062,6 +37638,7 @@ Get run stats in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, trace, @@ -36099,6 +37676,7 @@ Get run stats in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ run_count, latency_p50, @@ -36137,6 +37715,7 @@ Get run stats in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -36178,6 +37757,7 @@ Get run stats in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36192,6 +37772,7 @@ Get run stats in projects run over a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -36212,6 +37793,7 @@ Get run stats in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36226,6 +37808,7 @@ Get run stats in projects run over a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -36246,6 +37829,7 @@ Get run stats in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36260,6 +37844,7 @@ Get run stats in projects run over a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36309,6 +37894,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -36329,6 +37915,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -36388,6 +37975,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -36445,6 +38033,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -36486,6 +38075,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36500,6 +38090,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -36520,6 +38111,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36535,6 +38127,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36555,6 +38148,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36570,6 +38164,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36590,6 +38185,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36605,6 +38201,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36625,6 +38222,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36640,6 +38238,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36660,6 +38259,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36674,6 +38274,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36695,6 +38296,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36709,6 +38311,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36730,6 +38333,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36745,6 +38349,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36765,6 +38370,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36780,6 +38386,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36800,6 +38407,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36815,6 +38423,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36835,6 +38444,7 @@ Get runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36850,6 +38460,7 @@ Get runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -36898,6 +38509,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -36918,6 +38530,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36940,6 +38553,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36960,6 +38574,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -37001,6 +38616,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37015,6 +38631,7 @@ Get feedback for runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -37035,6 +38652,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37050,6 +38668,7 @@ Get feedback for runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37070,6 +38689,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37085,6 +38705,7 @@ Get feedback for runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37105,6 +38726,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37119,6 +38741,7 @@ Get feedback for runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37140,6 +38763,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37154,6 +38778,7 @@ Get feedback for runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37175,6 +38800,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -37190,6 +38816,7 @@ Get feedback for runs in projects run over a dataset that has been shared., ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37211,6 +38838,7 @@ Get feedback for runs in projects run over a dataset that has been shared., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37225,6 +38853,7 @@ Get feedback for runs in projects run over a dataset that has been shared., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37274,6 +38903,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37294,6 +38924,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37316,6 +38947,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37336,6 +38968,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -37377,6 +39010,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37392,6 +39026,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37412,6 +39047,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37427,6 +39063,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37447,6 +39084,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37462,6 +39100,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37482,6 +39121,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37496,6 +39136,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37517,6 +39158,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37531,6 +39173,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -37578,6 +39221,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37598,6 +39242,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37620,6 +39265,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37640,6 +39286,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -37681,6 +39328,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37695,6 +39343,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37712,6 +39361,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37727,6 +39377,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37744,6 +39395,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37758,6 +39410,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37775,6 +39428,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37789,6 +39443,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37806,6 +39461,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37821,6 +39477,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37838,6 +39495,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37852,6 +39510,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37896,6 +39555,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -37923,6 +39583,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -37953,6 +39614,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -37980,6 +39642,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -38008,6 +39671,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -38049,6 +39713,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38063,6 +39728,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -38110,6 +39776,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38130,6 +39797,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38152,6 +39820,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38172,6 +39841,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -38213,6 +39883,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38227,6 +39898,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -38247,6 +39919,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38262,6 +39935,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38279,6 +39953,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38294,6 +39969,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38311,6 +39987,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38326,6 +40003,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38370,6 +40048,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -38394,6 +40073,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38416,6 +40096,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, description, @@ -38440,6 +40121,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38460,6 +40142,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -38501,6 +40184,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38515,6 +40199,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -38562,6 +40247,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38582,6 +40268,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38604,6 +40291,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38624,6 +40312,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38644,6 +40333,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -38685,6 +40375,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38699,6 +40390,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -38719,6 +40411,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38733,6 +40426,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -38779,6 +40473,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38799,6 +40494,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -38868,6 +40564,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, inputs, @@ -38935,6 +40632,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -38976,6 +40674,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38990,6 +40689,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -39036,6 +40736,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39056,6 +40757,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39078,6 +40780,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39098,6 +40801,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -39139,6 +40843,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39153,6 +40858,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -39173,6 +40879,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39187,6 +40894,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -39207,6 +40915,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39222,6 +40931,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39239,6 +40949,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39254,6 +40965,7 @@ Get all comparative experiments for a given dataset., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39298,6 +41010,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ last_reviewed_time, added_at @@ -39321,6 +41034,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39343,6 +41057,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ last_reviewed_time, added_at @@ -39366,6 +41081,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39386,6 +41102,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -39427,6 +41144,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39441,6 +41159,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -39461,6 +41180,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39475,6 +41195,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -39522,6 +41243,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39542,6 +41264,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39564,6 +41287,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39584,6 +41308,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -39625,6 +41350,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39639,6 +41365,7 @@ Get all comparative experiments for a given dataset., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -39685,6 +41412,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39705,6 +41433,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ size ], @@ -39729,6 +41458,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ size ], @@ -39751,6 +41481,7 @@ Get all comparative experiments for a given dataset., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -39819,6 +41550,7 @@ Get all tenants visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39839,6 +41571,7 @@ Get all tenants visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39861,6 +41594,7 @@ Get all tenants visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39900,6 +41634,7 @@ Get all tenants visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39914,6 +41649,7 @@ Get all tenants visible to this auth, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39931,6 +41667,7 @@ Get all tenants visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39946,6 +41683,7 @@ Get all tenants visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39963,6 +41701,7 @@ Get all tenants visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39977,6 +41716,7 @@ Get all tenants visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39994,6 +41734,7 @@ Get all tenants visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40009,6 +41750,7 @@ Get all tenants visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40055,6 +41797,7 @@ Create a new organization and corresponding workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -40080,6 +41823,7 @@ Create a new organization and corresponding workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -40109,6 +41853,7 @@ Create a new organization and corresponding workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -40134,6 +41879,7 @@ Create a new organization and corresponding workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -40161,6 +41907,7 @@ Create a new organization and corresponding workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -40229,6 +41976,7 @@ Deprecated: replaced by /workspaces/pending, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40249,6 +41997,7 @@ Deprecated: replaced by /workspaces/pending, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40271,6 +42020,7 @@ Deprecated: replaced by /workspaces/pending, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40310,6 +42060,7 @@ Deprecated: replaced by /workspaces/pending, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40324,6 +42075,7 @@ Deprecated: replaced by /workspaces/pending, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -40373,6 +42125,7 @@ Deprecated: replaced by /workspaces/pending/{id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40393,6 +42146,7 @@ Deprecated: replaced by /workspaces/pending/{id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40415,6 +42169,7 @@ Deprecated: replaced by /workspaces/pending/{id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40435,6 +42190,7 @@ Deprecated: replaced by /workspaces/pending/{id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -40476,6 +42232,7 @@ Deprecated: replaced by /workspaces/pending/{id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40490,6 +42247,7 @@ Deprecated: replaced by /workspaces/pending/{id}, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -40539,6 +42297,7 @@ Deprecated: replaced by /orgs/pending/{organization_id}/claim, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40559,6 +42318,7 @@ Deprecated: replaced by /orgs/pending/{organization_id}/claim, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40581,6 +42341,7 @@ Deprecated: replaced by /orgs/pending/{organization_id}/claim, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40601,6 +42362,7 @@ Deprecated: replaced by /orgs/pending/{organization_id}/claim, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -40669,6 +42431,7 @@ Deprecated: replaced by /workspaces/current/stats, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40689,6 +42452,7 @@ Deprecated: replaced by /workspaces/current/stats, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, dataset_count, @@ -40717,6 +42481,7 @@ Deprecated: replaced by /workspaces/current/stats, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, dataset_count, @@ -40789,6 +42554,7 @@ Deprecated: replaced by /workspaces/current/stats, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40809,6 +42575,7 @@ Deprecated: replaced by /workspaces/current/stats, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, dataset_count, @@ -40837,6 +42604,7 @@ Deprecated: replaced by /workspaces/current/stats, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, dataset_count, @@ -40909,6 +42677,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40929,6 +42698,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, members, @@ -40955,6 +42725,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, members, @@ -40998,6 +42769,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41012,6 +42784,7 @@ Deprecated: replaced by /workspaces/current/members, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41029,6 +42802,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41043,6 +42817,7 @@ Deprecated: replaced by /workspaces/current/members, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -41061,6 +42836,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41076,6 +42852,7 @@ Deprecated: replaced by /workspaces/current/members, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41093,6 +42870,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41108,6 +42886,7 @@ Deprecated: replaced by /workspaces/current/members, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41125,6 +42904,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41140,6 +42920,7 @@ Deprecated: replaced by /workspaces/current/members, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41157,6 +42938,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41172,6 +42954,7 @@ Deprecated: replaced by /workspaces/current/members, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41189,6 +42972,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41204,6 +42988,7 @@ Deprecated: replaced by /workspaces/current/members, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41250,6 +43035,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ email, read_only, @@ -41278,6 +43064,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ email, read_only, @@ -41315,6 +43102,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ email, read_only, @@ -41343,6 +43131,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ email, read_only, @@ -41378,6 +43167,7 @@ Deprecated: replaced by /workspaces/current/members, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -41446,6 +43236,7 @@ Deprecated: replaced by /orgs/current/roles, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41466,6 +43257,7 @@ Deprecated: replaced by /orgs/current/roles, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41488,6 +43280,7 @@ Deprecated: replaced by /orgs/current/roles, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41527,6 +43320,7 @@ Deprecated: replaced by /orgs/current/roles, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41541,6 +43335,7 @@ Deprecated: replaced by /orgs/current/roles, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41562,6 +43357,7 @@ Deprecated: replaced by /orgs/current/roles, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41576,6 +43372,7 @@ Deprecated: replaced by /orgs/current/roles, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -41625,6 +43422,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41645,6 +43443,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ entities ], @@ -41669,6 +43468,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ entities ], @@ -41691,6 +43491,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -41732,6 +43533,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41746,6 +43548,7 @@ Deprecated: replaced by /workspaces/current/shared, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41792,6 +43595,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ share_tokens ], @@ -41814,6 +43618,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41836,6 +43641,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ share_tokens ], @@ -41858,6 +43664,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41878,6 +43685,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -41919,6 +43727,7 @@ Deprecated: replaced by /workspaces/current/shared, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41933,6 +43742,7 @@ Deprecated: replaced by /workspaces/current/shared, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -41982,6 +43792,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42002,6 +43813,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42024,6 +43836,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42044,6 +43857,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -42085,6 +43899,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42099,6 +43914,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -42119,6 +43935,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42134,6 +43951,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42151,6 +43969,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42165,6 +43984,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42211,6 +44031,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ read_only, role_id @@ -42234,6 +44055,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42256,6 +44078,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ read_only, role_id @@ -42279,6 +44102,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42299,6 +44123,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -42340,6 +44165,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42354,6 +44180,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -42403,6 +44230,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}/pending, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42423,6 +44251,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}/pending, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42445,6 +44274,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}/pending, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42465,6 +44295,7 @@ Deprecated: replaced by /workspaces/current/members/{identity_id}/pending, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -42533,6 +44364,7 @@ Deprecated: replaced by /workspaces/current/usage_limits, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42553,6 +44385,7 @@ Deprecated: replaced by /workspaces/current/usage_limits, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ in_reject_set, usage_limit_type, @@ -42579,6 +44412,7 @@ Deprecated: replaced by /workspaces/current/usage_limits, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ in_reject_set, usage_limit_type, @@ -42649,6 +44483,7 @@ Deprecated: replaced by /workspaces/current/secrets, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42669,6 +44504,7 @@ Deprecated: replaced by /workspaces/current/secrets, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42691,6 +44527,7 @@ Deprecated: replaced by /workspaces/current/secrets, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42758,6 +44595,7 @@ Deprecated: replaced by /workspaces/current/secrets, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42778,6 +44616,7 @@ Deprecated: replaced by /workspaces/current/secrets, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42800,6 +44639,7 @@ Deprecated: replaced by /workspaces/current/secrets, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42820,6 +44660,7 @@ Deprecated: replaced by /workspaces/current/secrets, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42840,6 +44681,7 @@ Deprecated: replaced by /workspaces/current/secrets, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -42908,6 +44750,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42928,6 +44771,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ version, license_expiration_time, @@ -42955,6 +44799,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ version, license_expiration_time, @@ -42999,6 +44844,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43014,6 +44860,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -43060,6 +44907,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43080,6 +44928,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43102,6 +44951,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43122,6 +44972,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -43163,6 +45014,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43177,6 +45029,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43194,6 +45047,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, min, @@ -43213,6 +45067,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43230,6 +45085,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43245,6 +45101,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -43290,6 +45147,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_key, feedback_config, @@ -43314,6 +45172,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_key, feedback_config, @@ -43342,6 +45201,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_key, feedback_config, @@ -43366,6 +45226,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_key, feedback_config, @@ -43392,6 +45253,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -43433,6 +45295,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43447,6 +45310,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43464,6 +45328,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43479,6 +45344,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43496,6 +45362,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43511,6 +45378,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43555,6 +45423,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_key, feedback_config, @@ -43579,6 +45448,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_key, feedback_config, @@ -43607,6 +45477,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_key, feedback_config, @@ -43631,6 +45502,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ feedback_key, feedback_config, @@ -43657,6 +45529,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -43723,6 +45596,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43743,6 +45617,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43765,6 +45640,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43804,6 +45680,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43818,6 +45695,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43835,6 +45713,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43850,6 +45729,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43867,6 +45747,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43881,6 +45762,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Default Value: [model, model_name, model_id, model_path, endpoint_name], @@ -43899,6 +45781,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43913,6 +45796,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43930,6 +45814,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43945,6 +45830,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43962,6 +45848,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43977,6 +45864,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43994,6 +45882,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -44009,6 +45898,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -44053,6 +45943,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, start_time, @@ -44081,6 +45972,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44103,6 +45995,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, start_time, @@ -44131,6 +46024,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44151,6 +46045,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -44192,6 +46087,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44206,6 +46102,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -44226,6 +46123,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44240,6 +46138,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44257,6 +46156,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -44272,6 +46172,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -44289,6 +46190,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44303,6 +46205,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Default Value: [model, model_name, model_id, model_path, endpoint_name], @@ -44321,6 +46224,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44335,6 +46239,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44352,6 +46257,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -44367,6 +46273,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -44384,6 +46291,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -44399,6 +46307,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -44416,6 +46325,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -44431,6 +46341,7 @@ Get information about the current deployment of LangSmith., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -44475,6 +46386,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, start_time, @@ -44503,6 +46415,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44525,6 +46438,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, start_time, @@ -44553,6 +46467,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44573,6 +46488,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -44614,6 +46530,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44628,6 +46545,7 @@ Get information about the current deployment of LangSmith., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -44675,6 +46593,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44695,6 +46614,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44717,6 +46637,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44737,6 +46658,7 @@ Get information about the current deployment of LangSmith., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -44805,6 +46727,7 @@ List out the configured usage limits for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44825,6 +46748,7 @@ List out the configured usage limits for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44847,6 +46771,7 @@ List out the configured usage limits for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44886,6 +46811,7 @@ List out the configured usage limits for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ MonthlyTraces, MonthlyLonglivedTraces @@ -44906,6 +46832,7 @@ List out the configured usage limits for a given tenant., ConverterType: global::OpenApiGenerator.JsonConverters.UsageLimitTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Type of usage limit., ConverterType: global::OpenApiGenerator.JsonConverters.UsageLimitTypeJsonConverter, @@ -44923,6 +46850,7 @@ List out the configured usage limits for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44937,6 +46865,7 @@ List out the configured usage limits for a given tenant., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44954,6 +46883,7 @@ List out the configured usage limits for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44968,6 +46898,7 @@ List out the configured usage limits for a given tenant., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45014,6 +46945,7 @@ Create a new usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ limit_type, limit_value, @@ -45038,6 +46970,7 @@ Create a new usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ limit_type, limit_value, @@ -45067,6 +47000,7 @@ Create a new usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ limit_type, limit_value, @@ -45091,6 +47025,7 @@ Create a new usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ limit_type, limit_value, @@ -45118,6 +47053,7 @@ Create a new usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -45186,6 +47122,7 @@ List out the configured usage limits for a given organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45206,6 +47143,7 @@ List out the configured usage limits for a given organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45228,6 +47166,7 @@ List out the configured usage limits for a given organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45267,6 +47206,7 @@ List out the configured usage limits for a given organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45281,6 +47221,7 @@ List out the configured usage limits for a given organization., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -45330,6 +47271,7 @@ Delete a specific usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45350,6 +47292,7 @@ Delete a specific usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45372,6 +47315,7 @@ Delete a specific usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45392,6 +47336,7 @@ Delete a specific usage limit., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -45460,6 +47405,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45480,6 +47426,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45502,6 +47449,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45541,6 +47489,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45556,6 +47505,7 @@ List out the configured TTL settings for a given tenant., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45573,6 +47523,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Longlived, Shortlived @@ -45593,6 +47544,7 @@ List out the configured TTL settings for a given tenant., ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter, @@ -45637,6 +47589,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, default_trace_tier @@ -45660,6 +47613,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, default_trace_tier, @@ -45690,6 +47644,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, default_trace_tier @@ -45713,6 +47668,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, default_trace_tier, @@ -45741,6 +47697,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -45782,6 +47739,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45796,6 +47754,7 @@ List out the configured TTL settings for a given tenant., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45813,6 +47772,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45827,6 +47787,7 @@ List out the configured TTL settings for a given tenant., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45844,6 +47805,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45858,6 +47820,7 @@ List out the configured TTL settings for a given tenant., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45902,6 +47865,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ messages, template_format, @@ -45926,6 +47890,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45948,6 +47913,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ messages, template_format, @@ -45972,6 +47938,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45992,6 +47959,7 @@ List out the configured TTL settings for a given tenant., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -46060,6 +48028,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46080,6 +48049,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46102,6 +48072,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46141,6 +48112,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46155,6 +48127,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46172,6 +48145,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46186,6 +48160,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46203,6 +48178,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -46218,6 +48194,7 @@ Get all workspaces visible to this auth in the current org. Does not create a ne ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -46264,6 +48241,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -46288,6 +48266,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -46317,6 +48296,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -46341,6 +48321,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -46368,6 +48349,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -46409,6 +48391,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46423,6 +48406,7 @@ Create a new workspace., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -46443,6 +48427,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46457,6 +48442,7 @@ Create a new workspace., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46501,6 +48487,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name ], @@ -46523,6 +48510,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -46552,6 +48540,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ display_name ], @@ -46574,6 +48563,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -46601,6 +48591,7 @@ Create a new workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -46669,6 +48660,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46689,6 +48681,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46711,6 +48704,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46750,6 +48744,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46764,6 +48759,7 @@ Get all workspaces visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -46811,6 +48807,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46831,6 +48828,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46853,6 +48851,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46873,6 +48872,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -46914,6 +48914,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46928,6 +48929,7 @@ Get all workspaces visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -46975,6 +48977,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46995,6 +48998,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47017,6 +49021,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47037,6 +49042,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -47103,6 +49109,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47123,6 +49130,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, dataset_count, @@ -47151,6 +49159,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, dataset_count, @@ -47221,6 +49230,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47241,6 +49251,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, members, @@ -47267,6 +49278,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_id, members, @@ -47310,6 +49322,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47324,6 +49337,7 @@ Get all workspaces visible to this auth, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47341,6 +49355,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -47356,6 +49371,7 @@ Get all workspaces visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -47373,6 +49389,7 @@ Get all workspaces visible to this auth, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -47388,6 +49405,7 @@ Get all workspaces visible to this auth, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -47434,6 +49452,7 @@ Add an existing organization member to the current workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ user_id, read_only, @@ -47458,6 +49477,7 @@ Add an existing organization member to the current workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -47490,6 +49510,7 @@ Add an existing organization member to the current workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ user_id, read_only, @@ -47514,6 +49535,7 @@ Add an existing organization member to the current workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, organization_id, @@ -47544,6 +49566,7 @@ Add an existing organization member to the current workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -47613,6 +49636,7 @@ Batch invite up to 500 users to the current workspace and organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47633,6 +49657,7 @@ Batch invite up to 500 users to the current workspace and organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47655,6 +49680,7 @@ Batch invite up to 500 users to the current workspace and organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47675,6 +49701,7 @@ Batch invite up to 500 users to the current workspace and organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47695,6 +49722,7 @@ Batch invite up to 500 users to the current workspace and organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -47736,6 +49764,7 @@ Batch invite up to 500 users to the current workspace and organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47750,6 +49779,7 @@ Batch invite up to 500 users to the current workspace and organization., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47771,6 +49801,7 @@ Batch invite up to 500 users to the current workspace and organization., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47785,6 +49816,7 @@ Batch invite up to 500 users to the current workspace and organization., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -47834,6 +49866,7 @@ List all shared entities and their tokens by the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47854,6 +49887,7 @@ List all shared entities and their tokens by the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ entities ], @@ -47878,6 +49912,7 @@ List all shared entities and their tokens by the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ entities ], @@ -47900,6 +49935,7 @@ List all shared entities and their tokens by the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -47941,6 +49977,7 @@ List all shared entities and their tokens by the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47955,6 +49992,7 @@ List all shared entities and their tokens by the workspace., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48001,6 +50039,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ share_tokens ], @@ -48023,6 +50062,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48045,6 +50085,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ share_tokens ], @@ -48067,6 +50108,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48087,6 +50129,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -48128,6 +50171,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48142,6 +50186,7 @@ Bulk unshare entities by share tokens for the workspace., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -48189,6 +50234,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48209,6 +50255,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48231,6 +50278,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48251,6 +50299,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -48292,6 +50341,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48306,6 +50356,7 @@ Bulk unshare entities by share tokens for the workspace., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -48326,6 +50377,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -48341,6 +50393,7 @@ Bulk unshare entities by share tokens for the workspace., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -48358,6 +50411,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48372,6 +50426,7 @@ Bulk unshare entities by share tokens for the workspace., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48416,6 +50471,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ read_only, role_id @@ -48439,6 +50495,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48461,6 +50518,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ read_only, role_id @@ -48484,6 +50542,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48504,6 +50563,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -48545,6 +50605,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48559,6 +50620,7 @@ Bulk unshare entities by share tokens for the workspace., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -48606,6 +50668,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48626,6 +50689,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48648,6 +50712,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48668,6 +50733,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -48734,6 +50800,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48754,6 +50821,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ in_reject_set, usage_limit_type, @@ -48780,6 +50848,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ in_reject_set, usage_limit_type, @@ -48848,6 +50917,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48868,6 +50938,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48890,6 +50961,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48955,6 +51027,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48975,6 +51048,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48997,6 +51071,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49017,6 +51092,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49037,6 +51113,7 @@ Bulk unshare entities by share tokens for the workspace., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -49105,6 +51182,7 @@ Get all playground settings for this tenant id., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49125,6 +51203,7 @@ Get all playground settings for this tenant id., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49147,6 +51226,7 @@ Get all playground settings for this tenant id., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49186,6 +51266,7 @@ Get all playground settings for this tenant id., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49200,6 +51281,7 @@ Get all playground settings for this tenant id., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49217,6 +51299,7 @@ Get all playground settings for this tenant id., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49232,6 +51315,7 @@ Get all playground settings for this tenant id., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49278,6 +51362,7 @@ Create playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ settings, name @@ -49301,6 +51386,7 @@ Create playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, settings, @@ -49329,6 +51415,7 @@ Create playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ settings, name @@ -49352,6 +51439,7 @@ Create playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, settings, @@ -49378,6 +51466,7 @@ Create playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -49419,6 +51508,7 @@ Create playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49433,6 +51523,7 @@ Create playground settings., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -49453,6 +51544,7 @@ Create playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49468,6 +51560,7 @@ Create playground settings., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49514,6 +51607,7 @@ Update playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name ], @@ -49536,6 +51630,7 @@ Update playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, settings, @@ -49564,6 +51659,7 @@ Update playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name ], @@ -49586,6 +51682,7 @@ Update playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, settings, @@ -49612,6 +51709,7 @@ Update playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -49653,6 +51751,7 @@ Update playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49667,6 +51766,7 @@ Update playground settings., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -49716,6 +51816,7 @@ Delete playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49736,6 +51837,7 @@ Delete playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49758,6 +51860,7 @@ Delete playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49778,6 +51881,7 @@ Delete playground settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -49846,6 +51950,7 @@ Get the current organization's service accounts., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49866,6 +51971,7 @@ Get the current organization's service accounts., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49888,6 +51994,7 @@ Get the current organization's service accounts., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49927,6 +52034,7 @@ Get the current organization's service accounts., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49941,6 +52049,7 @@ Get the current organization's service accounts., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49987,6 +52096,7 @@ Create a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name ], @@ -50009,6 +52119,7 @@ Create a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -50039,6 +52150,7 @@ Create a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name ], @@ -50061,6 +52173,7 @@ Create a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -50089,6 +52202,7 @@ Create a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -50130,6 +52244,7 @@ Create a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50144,6 +52259,7 @@ Create a service account, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -50193,6 +52309,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50213,6 +52330,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -50242,6 +52360,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -50269,6 +52388,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -50310,6 +52430,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50324,6 +52445,7 @@ Delete a service account, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50345,6 +52467,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50359,6 +52482,7 @@ Delete a service account, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50380,6 +52504,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50395,6 +52520,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50415,6 +52541,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50430,6 +52557,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50450,6 +52578,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50465,6 +52594,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50485,6 +52615,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50500,6 +52631,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50520,6 +52652,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50535,6 +52668,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50555,6 +52689,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50570,6 +52705,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50590,6 +52726,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50605,6 +52742,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50625,6 +52763,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50640,6 +52779,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50660,6 +52800,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50675,6 +52816,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50695,6 +52837,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50710,6 +52853,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50731,6 +52875,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50746,6 +52891,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50766,6 +52912,7 @@ Delete a service account, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -50781,6 +52928,7 @@ Delete a service account, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -50829,6 +52977,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50849,6 +52998,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repos, total @@ -50874,6 +53024,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repos, total @@ -50897,6 +53048,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -50938,6 +53090,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50952,6 +53105,7 @@ Get all repos., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50969,6 +53123,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50984,6 +53139,7 @@ Get all repos., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51001,6 +53157,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51016,6 +53173,7 @@ Get all repos., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51033,6 +53191,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51047,6 +53206,7 @@ Get all repos., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51064,6 +53224,7 @@ Get all repos., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51079,6 +53240,7 @@ Get all repos., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51125,6 +53287,7 @@ Create a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo_handle, description, @@ -51151,6 +53314,7 @@ Create a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo ], @@ -51175,6 +53339,7 @@ Create a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo_handle, description, @@ -51201,6 +53366,7 @@ Create a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo ], @@ -51223,6 +53389,7 @@ Create a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -51264,6 +53431,7 @@ Create a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51278,6 +53446,7 @@ Create a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -51298,6 +53467,7 @@ Create a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51312,6 +53482,7 @@ Create a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -51360,6 +53531,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51380,6 +53552,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo ], @@ -51404,6 +53577,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo ], @@ -51426,6 +53600,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -51467,6 +53642,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51481,6 +53657,7 @@ Get a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -51501,6 +53678,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51515,6 +53693,7 @@ Get a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -51535,6 +53714,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51550,6 +53730,7 @@ Get a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51567,6 +53748,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51582,6 +53764,7 @@ Get a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51599,6 +53782,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51614,6 +53798,7 @@ Get a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51631,6 +53816,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51646,6 +53832,7 @@ Get a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51663,6 +53850,7 @@ Get a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51678,6 +53866,7 @@ Get a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51724,6 +53913,7 @@ Update a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ description, readme, @@ -51750,6 +53940,7 @@ Update a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo ], @@ -51774,6 +53965,7 @@ Update a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ description, readme, @@ -51800,6 +53992,7 @@ Update a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo ], @@ -51822,6 +54015,7 @@ Update a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -51863,6 +54057,7 @@ Update a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51877,6 +54072,7 @@ Update a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -51897,6 +54093,7 @@ Update a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51911,6 +54108,7 @@ Update a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -51960,6 +54158,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51980,6 +54179,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52002,6 +54202,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52022,6 +54223,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -52063,6 +54265,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52077,6 +54280,7 @@ Delete a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -52097,6 +54301,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52111,6 +54316,7 @@ Delete a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -52131,6 +54337,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52145,6 +54352,7 @@ Delete a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52162,6 +54370,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52177,6 +54386,7 @@ Delete a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -52194,6 +54404,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52209,6 +54420,7 @@ Delete a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -52226,6 +54438,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52241,6 +54454,7 @@ Delete a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -52258,6 +54472,7 @@ Delete a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52273,6 +54488,7 @@ Delete a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -52319,6 +54535,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo_handle, readme, @@ -52345,6 +54562,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo ], @@ -52369,6 +54587,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo_handle, readme, @@ -52395,6 +54614,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo ], @@ -52417,6 +54637,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -52458,6 +54679,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52472,6 +54694,7 @@ Fork a repo., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52493,6 +54716,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52507,6 +54731,7 @@ Fork a repo., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52528,6 +54753,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52543,6 +54769,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52563,6 +54790,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52578,6 +54806,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52598,6 +54827,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52613,6 +54843,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52633,6 +54864,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52648,6 +54880,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52668,6 +54901,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52683,6 +54917,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52703,6 +54938,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52718,6 +54954,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52738,6 +54975,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52753,6 +54991,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52773,6 +55012,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52788,6 +55028,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52808,6 +55049,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52823,6 +55065,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52843,6 +55086,7 @@ Fork a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52858,6 +55102,7 @@ Fork a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -52907,6 +55152,7 @@ Get all repo tags., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52927,6 +55173,7 @@ Get all repo tags., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tags ], @@ -52951,6 +55198,7 @@ Get all repo tags., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tags ], @@ -52973,6 +55221,7 @@ Get all repo tags., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -53014,6 +55263,7 @@ Get all repo tags., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53028,6 +55278,7 @@ Get all repo tags., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53048,6 +55299,7 @@ Get all repo tags., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53062,6 +55314,7 @@ Get all repo tags., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53082,6 +55335,7 @@ Get all repo tags., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53096,6 +55350,7 @@ Get all repo tags., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53142,6 +55397,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ like ], @@ -53164,6 +55420,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ likes ], @@ -53188,6 +55445,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ like ], @@ -53210,6 +55468,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ likes ], @@ -53232,6 +55491,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -53273,6 +55533,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53287,6 +55548,7 @@ Like a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53307,6 +55569,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53321,6 +55584,7 @@ Like a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53341,6 +55605,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53355,6 +55620,7 @@ Like a repo., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53376,6 +55642,7 @@ Like a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53390,6 +55657,7 @@ Like a repo., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -53439,6 +55707,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -53459,6 +55728,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ commits, total @@ -53484,6 +55754,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ commits, total @@ -53507,6 +55778,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -53548,6 +55820,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53562,6 +55835,7 @@ Get all commits., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53582,6 +55856,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53596,6 +55871,7 @@ Get all commits., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53616,6 +55892,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53630,6 +55907,7 @@ Get all commits., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53647,6 +55925,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53662,6 +55941,7 @@ Get all commits., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53679,6 +55959,7 @@ Get all commits., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53694,6 +55975,7 @@ Get all commits., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53740,6 +56022,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ manifest, parent_commit, @@ -53764,6 +56047,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ commit ], @@ -53788,6 +56072,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ manifest, parent_commit, @@ -53812,6 +56097,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ commit ], @@ -53834,6 +56120,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -53875,6 +56162,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53889,6 +56177,7 @@ Upload a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53909,6 +56198,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53923,6 +56213,7 @@ Upload a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53943,6 +56234,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53957,6 +56249,7 @@ Upload a repo., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -53977,6 +56270,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53991,6 +56285,7 @@ Upload a repo., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -54012,6 +56307,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54026,6 +56322,7 @@ Upload a repo., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -54047,6 +56344,7 @@ Upload a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54062,6 +56360,7 @@ Upload a repo., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -54111,6 +56410,7 @@ Download a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54131,6 +56431,7 @@ Download a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ commit_hash, manifest, @@ -54157,6 +56458,7 @@ Download a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ commit_hash, manifest, @@ -54181,6 +56483,7 @@ Download a repo., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -54249,6 +56552,7 @@ Get settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54269,6 +56573,7 @@ Get settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -54296,6 +56601,7 @@ Get settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -54340,6 +56646,7 @@ Get settings., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54354,6 +56661,7 @@ Get settings., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54400,6 +56708,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_handle ], @@ -54422,6 +56731,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -54449,6 +56759,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tenant_handle ], @@ -54471,6 +56782,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, display_name, @@ -54496,6 +56808,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -54537,6 +56850,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ PlaygroundView, PlaygroundRun @@ -54557,6 +56871,7 @@ Set tenant handle., ConverterType: global::OpenApiGenerator.JsonConverters.CreateEventRequestEventTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.CreateEventRequestEventTypeJsonConverter, @@ -54574,6 +56889,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54588,6 +56904,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54605,6 +56922,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54619,6 +56937,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54636,6 +56955,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54651,6 +56971,7 @@ Set tenant handle., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54695,6 +57016,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ event_type, owner, @@ -54720,6 +57042,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54742,6 +57065,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ event_type, owner, @@ -54767,6 +57091,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54787,6 +57112,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -54828,6 +57154,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54842,6 +57169,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -54862,6 +57190,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54876,6 +57205,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -54896,6 +57226,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54910,6 +57241,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54954,6 +57286,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content ], @@ -54976,6 +57309,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54998,6 +57332,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content ], @@ -55020,6 +57355,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55040,6 +57376,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -55081,6 +57418,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55095,6 +57433,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -55115,6 +57454,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55129,6 +57469,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -55149,6 +57490,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55163,6 +57505,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55184,6 +57527,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55198,6 +57542,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55245,6 +57590,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55265,6 +57611,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ comments, total @@ -55290,6 +57637,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ comments, total @@ -55313,6 +57661,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -55354,6 +57703,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55368,6 +57718,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -55388,6 +57739,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55402,6 +57754,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -55422,6 +57775,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55436,6 +57790,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -55456,6 +57811,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55470,6 +57826,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55491,6 +57848,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55505,6 +57863,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -55552,6 +57911,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55572,6 +57932,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ comments, total @@ -55597,6 +57958,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ comments, total @@ -55620,6 +57982,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -55661,6 +58024,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55675,6 +58039,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -55695,6 +58060,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55709,6 +58075,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -55729,6 +58096,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55743,6 +58111,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -55763,6 +58132,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55777,6 +58147,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55821,6 +58192,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content ], @@ -55843,6 +58215,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, comment_by, @@ -55877,6 +58250,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content ], @@ -55899,6 +58273,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, comment_by, @@ -55931,6 +58306,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -55972,6 +58348,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55986,6 +58363,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -56006,6 +58384,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56020,6 +58399,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -56040,6 +58420,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56054,6 +58435,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -56101,6 +58483,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56121,6 +58504,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56143,6 +58527,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56163,6 +58548,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -56204,6 +58590,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56218,6 +58605,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -56238,6 +58626,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56252,6 +58641,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -56272,6 +58662,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56286,6 +58677,7 @@ Set tenant handle., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -56333,6 +58725,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56353,6 +58746,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56375,6 +58769,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56395,6 +58790,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ detail ], @@ -56461,6 +58857,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56481,6 +58878,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56503,6 +58901,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56542,6 +58941,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56556,6 +58956,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56573,6 +58974,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56587,6 +58989,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56604,6 +59007,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56618,6 +59022,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56635,6 +59040,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56649,6 +59055,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56666,6 +59073,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56680,6 +59088,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56697,6 +59106,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56711,6 +59121,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56728,6 +59139,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56742,6 +59154,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56759,6 +59172,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56773,6 +59187,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56790,6 +59205,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56804,6 +59220,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56821,6 +59238,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56835,6 +59253,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56852,6 +59271,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56866,6 +59286,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56883,6 +59304,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56897,6 +59319,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56914,6 +59337,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56928,6 +59352,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56945,6 +59370,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56959,6 +59385,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56976,6 +59403,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56990,6 +59418,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57007,6 +59436,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57021,6 +59451,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57038,6 +59469,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57052,6 +59484,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57069,6 +59502,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57083,6 +59517,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57100,6 +59535,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57114,6 +59550,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57131,6 +59568,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57145,6 +59583,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57162,6 +59601,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57176,6 +59616,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57193,6 +59634,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57207,6 +59649,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57224,6 +59667,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57238,6 +59682,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57255,6 +59700,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57269,6 +59715,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57286,6 +59733,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57300,6 +59748,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57317,6 +59766,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57331,6 +59781,7 @@ Set tenant handle., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57374,6 +59825,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57394,6 +59846,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57600,6 +60053,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57620,6 +60074,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57685,6 +60140,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57705,6 +60161,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57770,6 +60227,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57790,6 +60248,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57855,6 +60314,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57875,6 +60335,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57940,6 +60401,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57960,6 +60422,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58025,6 +60488,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58045,6 +60509,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58110,6 +60575,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58130,6 +60596,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58195,6 +60662,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58215,6 +60683,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58280,6 +60749,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58300,6 +60770,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58365,6 +60836,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58385,6 +60857,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58450,6 +60923,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58470,6 +60944,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58535,6 +61010,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58555,6 +61031,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58620,6 +61097,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58640,6 +61118,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58705,6 +61184,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58725,6 +61205,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58790,6 +61271,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58810,6 +61292,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58875,6 +61358,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58895,6 +61379,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58960,6 +61445,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58980,6 +61466,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59045,6 +61532,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59065,6 +61553,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59130,6 +61619,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59150,6 +61640,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59215,6 +61706,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59235,6 +61727,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59300,6 +61793,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59320,6 +61814,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59385,6 +61880,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59405,6 +61901,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59470,6 +61967,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59490,6 +61988,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59555,6 +62054,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59575,6 +62075,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59640,6 +62141,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59660,6 +62162,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59725,6 +62228,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59745,6 +62249,7 @@ Set tenant handle., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/LangSmith/Models/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/LangSmith/Models/_.verified.txt index f85904f475..4d0eb93d70 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/LangSmith/Models/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/LangSmith/Models/_.verified.txt @@ -40,6 +40,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54,6 +55,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "api", IsDeprecated: false, Summary: Default Value: api, @@ -72,6 +74,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -87,6 +90,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -146,6 +150,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -160,6 +165,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "Default API key", IsDeprecated: false, Summary: Default Value: Default API key, @@ -178,6 +184,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -192,6 +199,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -252,6 +260,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -267,6 +276,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -284,6 +294,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -298,6 +309,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -315,6 +327,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -329,6 +342,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -346,6 +360,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -360,6 +375,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -377,6 +393,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -391,6 +408,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -409,6 +427,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -423,6 +442,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -482,6 +502,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -497,6 +518,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -514,6 +536,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -528,6 +551,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -545,6 +569,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -559,6 +584,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -576,6 +602,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -590,6 +617,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -607,6 +635,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -621,6 +650,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -682,6 +712,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -696,6 +727,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -713,6 +745,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -727,6 +760,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -786,6 +820,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -800,6 +835,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -817,6 +853,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -832,6 +869,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -849,6 +887,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -863,6 +902,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -880,6 +920,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -894,6 +935,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -911,6 +953,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -926,6 +969,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -943,6 +987,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -957,6 +1002,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1016,6 +1062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1030,6 +1077,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1047,6 +1095,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1061,6 +1110,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1078,6 +1128,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1093,6 +1144,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1110,6 +1162,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1124,6 +1177,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1141,6 +1195,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1155,6 +1210,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1214,6 +1270,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1229,6 +1286,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1246,6 +1304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1261,6 +1320,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1320,6 +1380,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1334,6 +1395,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1351,6 +1413,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1366,6 +1429,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1383,6 +1447,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1397,6 +1462,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1414,6 +1480,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1428,6 +1495,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1445,6 +1513,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1460,6 +1529,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1477,6 +1547,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1491,6 +1562,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1508,6 +1580,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1522,6 +1595,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1581,6 +1655,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1595,6 +1670,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1654,6 +1730,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1669,6 +1746,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1686,6 +1764,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1701,6 +1780,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1718,6 +1798,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1733,6 +1814,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1792,6 +1874,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1806,6 +1889,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "app", IsDeprecated: false, Summary: Default Value: app, @@ -1824,6 +1908,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1839,6 +1924,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -1898,6 +1984,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1912,6 +1999,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "auto_eval", IsDeprecated: false, Summary: Default Value: auto_eval, @@ -1930,6 +2018,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1945,6 +2034,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2004,6 +2094,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2018,6 +2109,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2077,6 +2169,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2091,6 +2184,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1000, IsDeprecated: false, Summary: Default Value: 1000, @@ -2109,6 +2203,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2123,6 +2218,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 16, IsDeprecated: false, Summary: Default Value: 16, @@ -2141,6 +2237,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2155,6 +2252,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 4, IsDeprecated: false, Summary: Default Value: 4, @@ -2173,6 +2271,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2187,6 +2286,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 100, IsDeprecated: false, Summary: Default Value: 100, @@ -2205,6 +2305,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2219,6 +2320,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 20971520, IsDeprecated: false, Summary: Default Value: 20971520, @@ -2279,6 +2381,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2294,6 +2397,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2311,6 +2415,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2326,6 +2431,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2343,6 +2449,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2358,6 +2465,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2375,6 +2483,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2390,6 +2499,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2407,6 +2517,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2422,6 +2533,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2439,6 +2551,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2454,6 +2567,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2471,6 +2585,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2486,6 +2601,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2503,6 +2619,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2518,6 +2635,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2535,6 +2653,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2550,6 +2669,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2567,6 +2687,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2582,6 +2703,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2599,6 +2721,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2614,6 +2737,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2631,6 +2755,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2646,6 +2771,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2663,6 +2789,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2678,6 +2805,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2695,6 +2823,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2710,6 +2839,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2727,6 +2857,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2742,6 +2873,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2759,6 +2891,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2774,6 +2907,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2791,6 +2925,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2806,6 +2941,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2823,6 +2959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2837,6 +2974,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 100, IsDeprecated: false, Summary: Default Value: 100, @@ -2855,6 +2993,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2869,6 +3008,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Default Value: [id, name, run_type, start_time, end_time, status, error, extra, events, inputs, outputs, parent_run_id, manifest_id, manifest_s3_id, session_id, serialized, reference_example_id, total_tokens, prompt_tokens, completion_tokens, total_cost, prompt_cost, completion_cost, price_model_id, first_token_time, trace_id, dotted_order, last_queued_at, feedback_stats, child_run_ids, parent_run_ids, tags, in_dataset, app_path, share_token, trace_tier, trace_first_received_at, ttl_seconds, trace_upgrade], @@ -2887,6 +3027,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -2902,6 +3043,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "desc", IsDeprecated: false, Summary: Default Value: desc, @@ -2963,6 +3105,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2977,6 +3120,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2994,6 +3138,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3008,6 +3153,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3025,6 +3171,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3039,6 +3186,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3056,6 +3204,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3070,6 +3219,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3087,6 +3237,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3101,6 +3252,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3118,6 +3270,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3132,6 +3285,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3149,6 +3303,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3163,6 +3318,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3180,6 +3336,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3194,6 +3351,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3211,6 +3369,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3225,6 +3384,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3242,6 +3402,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3256,6 +3417,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3273,6 +3435,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3287,6 +3450,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3304,6 +3468,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3318,6 +3483,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3335,6 +3501,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3349,6 +3516,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3366,6 +3534,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3380,6 +3549,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3397,6 +3567,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3411,6 +3582,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3428,6 +3600,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3442,6 +3615,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3459,6 +3633,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3473,6 +3648,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3490,6 +3666,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3504,6 +3681,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3521,6 +3699,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3535,6 +3714,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3552,6 +3732,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3566,6 +3747,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3583,6 +3765,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3597,6 +3780,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3614,6 +3798,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3628,6 +3813,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3645,6 +3831,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3659,6 +3846,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3676,6 +3864,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3690,6 +3879,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3707,6 +3897,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3721,6 +3912,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3738,6 +3930,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3752,6 +3945,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3769,6 +3963,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3783,6 +3978,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3800,6 +3996,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3814,6 +4011,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3831,6 +4029,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3845,6 +4044,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3862,6 +4062,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3876,6 +4077,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3893,6 +4095,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3907,6 +4110,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3924,6 +4128,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3938,6 +4143,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3955,6 +4161,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3969,6 +4176,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3986,6 +4194,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4000,6 +4209,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4017,6 +4227,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4031,6 +4242,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4048,6 +4260,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4062,6 +4275,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4079,6 +4293,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4093,6 +4308,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4110,6 +4326,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4124,6 +4341,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4141,6 +4359,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4155,6 +4374,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4172,6 +4392,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4186,6 +4407,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4203,6 +4425,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4217,6 +4440,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4234,6 +4458,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4248,6 +4473,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4265,6 +4491,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4279,6 +4506,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4296,6 +4524,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4310,6 +4539,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4327,6 +4557,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4341,6 +4572,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4401,6 +4633,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4415,6 +4648,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4432,6 +4666,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4446,6 +4681,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4463,6 +4699,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4477,6 +4714,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4494,6 +4732,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4508,6 +4747,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4525,6 +4765,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4539,6 +4780,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4556,6 +4798,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4570,6 +4813,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4587,6 +4831,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4601,6 +4846,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4661,6 +4907,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4675,6 +4922,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4692,6 +4940,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4706,6 +4955,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4766,6 +5016,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4780,6 +5031,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4797,6 +5049,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4811,6 +5064,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4870,6 +5124,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4884,6 +5139,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4901,6 +5157,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4915,6 +5172,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4932,6 +5190,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -4947,6 +5206,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -4964,6 +5224,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4978,6 +5239,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5037,6 +5299,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5051,6 +5314,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5068,6 +5332,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5082,6 +5347,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5099,6 +5365,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5113,6 +5380,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -5173,6 +5441,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -5187,6 +5456,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5204,6 +5474,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5218,6 +5489,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: , ConverterType: , @@ -5235,6 +5507,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5249,6 +5522,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5266,6 +5540,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -5281,6 +5556,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -5298,6 +5574,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -5313,6 +5590,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "kv", IsDeprecated: false, Summary: Default Value: kv, @@ -5331,6 +5609,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5345,6 +5624,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5362,6 +5642,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -5377,6 +5658,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -5437,6 +5719,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5451,6 +5734,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5468,6 +5752,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5482,6 +5767,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5499,6 +5785,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5513,6 +5800,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5572,6 +5860,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -5586,6 +5875,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5603,6 +5893,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5617,6 +5908,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: , ConverterType: , @@ -5634,6 +5926,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5648,6 +5941,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5665,6 +5959,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5679,6 +5974,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5739,6 +6035,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5753,6 +6050,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5770,6 +6068,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5784,6 +6083,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5801,6 +6101,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5815,6 +6116,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5832,6 +6134,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5846,6 +6149,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5863,6 +6167,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5877,6 +6182,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5894,6 +6200,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5908,6 +6215,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5967,6 +6275,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Disabled, Developer, @@ -5995,6 +6304,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.ChangePaymentPlanReqJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enum for payment plans that the user can change to. Developer plans are permanent and enterprise plans will be changed manually., ConverterType: global::OpenApiGenerator.JsonConverters.ChangePaymentPlanReqJsonConverter, @@ -6054,6 +6364,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6068,6 +6379,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6085,6 +6397,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6100,6 +6413,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6117,6 +6431,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6131,6 +6446,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6148,6 +6464,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6163,6 +6480,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6180,6 +6498,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6194,6 +6513,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6211,6 +6531,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6225,6 +6546,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6242,6 +6564,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6256,6 +6579,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6273,6 +6597,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6288,6 +6613,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6305,6 +6631,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6319,6 +6646,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6336,6 +6664,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6350,6 +6679,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6367,6 +6697,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6382,6 +6713,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6441,6 +6773,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6455,6 +6788,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6472,6 +6806,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6486,6 +6821,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6503,6 +6839,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6518,6 +6855,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6577,6 +6915,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6591,6 +6930,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6608,6 +6948,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6622,6 +6963,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6639,6 +6981,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6653,6 +6996,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6670,6 +7014,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6685,6 +7030,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6702,6 +7048,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6716,6 +7063,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6733,6 +7081,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6747,6 +7096,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6764,6 +7114,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6778,6 +7129,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6795,6 +7147,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6809,6 +7162,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6826,6 +7180,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6840,6 +7195,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6857,6 +7213,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6871,6 +7228,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6888,6 +7246,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6903,6 +7262,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6962,6 +7322,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6976,6 +7337,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6993,6 +7355,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7008,6 +7371,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7025,6 +7389,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7040,6 +7405,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7057,6 +7423,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7071,6 +7438,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7088,6 +7456,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7102,6 +7471,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7119,6 +7489,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7133,6 +7504,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7150,6 +7522,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7164,6 +7537,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7181,6 +7555,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7196,6 +7571,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7213,6 +7589,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7227,6 +7604,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7244,6 +7622,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7259,6 +7638,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7318,6 +7698,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7332,6 +7713,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7349,6 +7731,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7364,6 +7747,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7381,6 +7765,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7396,6 +7781,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7413,6 +7799,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7427,6 +7814,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7444,6 +7832,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7458,6 +7847,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7475,6 +7865,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7489,6 +7880,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7506,6 +7898,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7520,6 +7913,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7537,6 +7931,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7552,6 +7947,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7611,6 +8007,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7625,6 +8022,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7642,6 +8040,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7656,6 +8055,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7673,6 +8073,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7688,6 +8089,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7705,6 +8107,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7720,6 +8123,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7737,6 +8141,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7751,6 +8156,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7768,6 +8174,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7782,6 +8189,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7799,6 +8207,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7813,6 +8222,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7830,6 +8240,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7845,6 +8256,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -7905,6 +8317,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7919,6 +8332,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7936,6 +8350,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7950,6 +8365,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8009,6 +8425,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8023,6 +8440,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8082,6 +8500,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ PlaygroundView, PlaygroundRun @@ -8102,6 +8521,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.CreateEventRequestEventTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.CreateEventRequestEventTypeJsonConverter, @@ -8119,6 +8539,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8133,6 +8554,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8150,6 +8572,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8164,6 +8587,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8181,6 +8605,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -8196,6 +8621,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -8256,6 +8682,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8270,6 +8697,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8287,6 +8715,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8301,6 +8730,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8360,6 +8790,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8374,6 +8805,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8391,6 +8823,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, min, @@ -8410,6 +8843,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8427,6 +8861,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -8442,6 +8877,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -8502,6 +8938,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8516,6 +8953,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8533,6 +8971,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -8548,6 +8987,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -8565,6 +9005,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -8580,6 +9021,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -8639,6 +9081,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, manifest_id, @@ -8665,6 +9108,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: All database fields for commits, plus helpful computed fields., ConverterType: , @@ -8724,6 +9168,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8738,6 +9183,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8755,6 +9201,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -8770,6 +9217,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -8787,6 +9235,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -8802,6 +9251,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -8819,6 +9269,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8833,6 +9284,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8850,6 +9302,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -8865,6 +9318,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -8924,6 +9378,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo_handle, description, @@ -8961,6 +9416,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: All database fields for repos, plus helpful computed fields., ConverterType: , @@ -9020,6 +9476,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9034,6 +9491,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9051,6 +9509,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9065,6 +9524,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9082,6 +9542,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9096,6 +9557,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9155,6 +9617,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ NoPlan, Developer, @@ -9193,6 +9656,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.PaymentPlanTierJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.PaymentPlanTierJsonConverter, @@ -9210,6 +9674,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9224,6 +9689,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9241,6 +9707,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9256,6 +9723,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9316,6 +9784,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9330,6 +9799,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9347,6 +9817,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9361,6 +9832,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9378,6 +9850,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9392,6 +9865,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9451,6 +9925,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9465,6 +9940,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9482,6 +9958,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9497,6 +9974,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9514,6 +9992,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9528,6 +10007,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9545,6 +10025,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9560,6 +10041,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.DataType.Kv, IsDeprecated: false, Summary: Default Value: kv, @@ -9578,6 +10060,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9593,6 +10076,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9610,6 +10094,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9625,6 +10110,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9642,6 +10128,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9656,6 +10143,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9673,6 +10161,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9687,6 +10176,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9704,6 +10194,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9718,6 +10209,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9735,6 +10227,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9749,6 +10242,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9766,6 +10260,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9780,6 +10275,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9797,6 +10293,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -9812,6 +10309,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -9872,6 +10370,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9886,6 +10385,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9903,6 +10403,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9917,6 +10418,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9934,6 +10436,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9948,6 +10451,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10007,6 +10511,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10021,6 +10526,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10038,6 +10544,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10053,6 +10560,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10070,6 +10578,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10084,6 +10593,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10101,6 +10611,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10116,6 +10627,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.DataType.Kv, IsDeprecated: false, Summary: Default Value: kv, @@ -10134,6 +10646,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10149,6 +10662,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10166,6 +10680,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10181,6 +10696,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10198,6 +10714,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10213,6 +10730,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10230,6 +10748,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10245,6 +10764,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10305,6 +10825,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10319,6 +10840,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10336,6 +10858,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10350,6 +10873,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10367,6 +10891,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10381,6 +10906,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10440,6 +10966,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10454,6 +10981,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10471,6 +10999,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10485,6 +11014,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10502,6 +11032,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10516,6 +11047,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10575,6 +11107,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10589,6 +11122,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10606,6 +11140,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10621,6 +11156,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10638,6 +11174,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10652,6 +11189,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10669,6 +11207,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10684,6 +11223,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.DataType.Kv, IsDeprecated: false, Summary: Default Value: kv, @@ -10702,6 +11242,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10717,6 +11258,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10734,6 +11276,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -10749,6 +11292,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -10766,6 +11310,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10780,6 +11325,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10797,6 +11343,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10811,6 +11358,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10875,6 +11423,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10889,6 +11438,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10906,6 +11456,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10920,6 +11471,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10937,6 +11489,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10951,6 +11504,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11010,6 +11564,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11024,6 +11579,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11041,6 +11597,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11056,6 +11613,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -11073,6 +11631,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11087,6 +11646,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11104,6 +11664,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11119,6 +11680,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.DataType.Kv, IsDeprecated: false, Summary: Default Value: kv, @@ -11137,6 +11699,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11152,6 +11715,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -11169,6 +11733,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11184,6 +11749,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -11201,6 +11767,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11215,6 +11782,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11232,6 +11800,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11246,6 +11815,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11306,6 +11876,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11320,6 +11891,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11337,6 +11909,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11351,6 +11924,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11368,6 +11942,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11382,6 +11957,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11441,6 +12017,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11456,6 +12033,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "latest", IsDeprecated: false, Summary: Default Value: latest, @@ -11516,6 +12094,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11530,6 +12109,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11547,6 +12127,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11561,6 +12142,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11620,6 +12202,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -11635,6 +12218,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -11652,6 +12236,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -11667,6 +12252,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -11684,6 +12270,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -11699,6 +12286,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -11716,6 +12304,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -11731,6 +12320,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -11748,6 +12338,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11763,6 +12354,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -11822,6 +12414,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11837,6 +12430,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -11854,6 +12448,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11868,6 +12463,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11927,6 +12523,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11942,6 +12539,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -11959,6 +12557,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11974,6 +12573,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -11991,6 +12591,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12006,6 +12607,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12023,6 +12625,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12038,6 +12641,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12055,6 +12659,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12070,6 +12675,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12087,6 +12693,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12101,6 +12708,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12160,6 +12768,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ hub_ref, prompt, @@ -12181,6 +12790,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Evaluator structured output schema., ConverterType: , @@ -12240,6 +12850,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12254,6 +12865,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12271,6 +12883,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12286,6 +12899,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12303,6 +12917,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12317,6 +12932,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12334,6 +12950,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12349,6 +12966,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12366,6 +12984,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12381,6 +13000,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12398,6 +13018,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12412,6 +13033,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12429,6 +13051,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12443,6 +13066,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12460,6 +13084,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12474,6 +13099,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12491,6 +13117,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12506,6 +13133,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12565,6 +13193,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12579,6 +13208,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12596,6 +13226,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12611,6 +13242,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12628,6 +13260,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12642,6 +13275,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12659,6 +13293,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12674,6 +13309,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12691,6 +13327,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12706,6 +13343,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12723,6 +13361,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12738,6 +13377,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12755,6 +13395,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -12770,6 +13411,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "base", IsDeprecated: false, Summary: Default Value: base, @@ -12788,6 +13430,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12803,6 +13446,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12862,6 +13506,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12876,6 +13521,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12893,6 +13539,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12908,6 +13555,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12925,6 +13573,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12939,6 +13588,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12956,6 +13606,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12971,6 +13622,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -12988,6 +13640,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13003,6 +13656,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13020,6 +13674,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13034,6 +13689,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13051,6 +13707,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13066,6 +13723,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13083,6 +13741,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -13098,6 +13757,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "base", IsDeprecated: false, Summary: Default Value: base, @@ -13159,6 +13819,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13173,6 +13834,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13190,6 +13852,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13204,6 +13867,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13221,6 +13885,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13235,6 +13900,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13295,6 +13961,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13309,6 +13976,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13326,6 +13994,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13340,6 +14009,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13357,6 +14027,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13371,6 +14042,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13388,6 +14060,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13402,6 +14075,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13419,6 +14093,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13433,6 +14108,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13450,6 +14126,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13464,6 +14141,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13481,6 +14159,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13495,6 +14174,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13512,6 +14192,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13526,6 +14207,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13543,6 +14225,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13557,6 +14240,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13616,6 +14300,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13631,6 +14316,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13648,6 +14334,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13663,6 +14350,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13680,6 +14368,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13695,6 +14384,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13712,6 +14402,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13727,6 +14418,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13744,6 +14436,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -13759,6 +14452,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -13818,6 +14512,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13833,6 +14528,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13850,6 +14546,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13865,6 +14562,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13882,6 +14580,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13897,6 +14596,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13914,6 +14614,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13929,6 +14630,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -13946,6 +14648,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -13961,6 +14664,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -13978,6 +14682,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13992,6 +14697,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14051,6 +14757,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14065,6 +14772,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14082,6 +14790,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14097,6 +14806,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14114,6 +14824,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14128,6 +14839,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14145,6 +14857,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14160,6 +14873,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14177,6 +14891,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14192,6 +14907,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14209,6 +14925,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14223,6 +14940,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14240,6 +14958,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14254,6 +14973,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14271,6 +14991,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14285,6 +15006,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14302,6 +15024,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14317,6 +15040,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14334,6 +15058,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14348,6 +15073,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14407,6 +15133,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14421,6 +15148,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14438,6 +15166,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14453,6 +15182,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14470,6 +15200,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14484,6 +15215,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14501,6 +15233,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14516,6 +15249,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14533,6 +15267,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14548,6 +15283,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14565,6 +15301,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14579,6 +15316,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14596,6 +15334,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14610,6 +15349,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14627,6 +15367,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14641,6 +15382,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14658,6 +15400,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14673,6 +15416,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14690,6 +15434,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14704,6 +15449,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14763,6 +15509,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14777,6 +15524,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14794,6 +15542,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14809,6 +15558,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14868,6 +15618,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Continuous, Categorical, @@ -14890,6 +15641,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.FeedbackTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enum for feedback types., ConverterType: global::OpenApiGenerator.JsonConverters.FeedbackTypeJsonConverter, @@ -14907,6 +15659,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14922,6 +15675,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14939,6 +15693,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14954,6 +15709,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -14971,6 +15727,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14986,6 +15743,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15045,6 +15803,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15059,6 +15818,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15076,6 +15836,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, min, @@ -15095,6 +15856,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15112,6 +15874,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15126,6 +15889,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15143,6 +15907,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15157,6 +15922,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15174,6 +15940,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15189,6 +15956,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15248,6 +16016,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15262,6 +16031,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15279,6 +16049,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15293,6 +16064,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15310,6 +16082,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15325,6 +16098,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15342,6 +16116,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15357,6 +16132,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15374,6 +16150,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15388,6 +16165,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15405,6 +16183,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -15420,6 +16199,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4, @@ -15437,6 +16217,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 6, Properties: null, EnumValues: null, @@ -15452,6 +16233,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6, @@ -15469,6 +16251,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15484,6 +16267,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15501,6 +16285,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -15516,6 +16301,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -15533,6 +16319,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15548,6 +16335,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15565,6 +16353,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15580,6 +16369,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15597,6 +16387,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15611,6 +16402,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15628,6 +16420,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 5, Properties: null, EnumValues: null, @@ -15643,6 +16436,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5, @@ -15660,6 +16454,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15675,6 +16470,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15734,6 +16530,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -15749,6 +16546,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4, @@ -15766,6 +16564,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 5, Properties: null, EnumValues: null, @@ -15781,6 +16580,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory5, @@ -15798,6 +16598,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15813,6 +16614,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15830,6 +16632,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -15845,6 +16648,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -15862,6 +16666,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -15877,6 +16682,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -15936,6 +16742,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15950,6 +16757,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15967,6 +16775,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15981,6 +16790,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16040,6 +16850,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16055,6 +16866,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16072,6 +16884,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16087,6 +16900,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16104,6 +16918,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16118,6 +16933,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16135,6 +16951,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16149,6 +16966,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16166,6 +16984,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16181,6 +17000,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16240,6 +17060,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16254,6 +17075,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16271,6 +17093,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16285,6 +17108,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16302,6 +17126,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16316,6 +17141,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16333,6 +17159,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16347,6 +17174,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16407,6 +17235,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16421,6 +17250,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16438,6 +17268,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16452,6 +17283,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16511,6 +17343,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16525,6 +17358,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16542,6 +17376,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16556,6 +17391,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16573,6 +17409,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16588,6 +17425,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16605,6 +17443,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16620,6 +17459,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16637,6 +17477,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16651,6 +17492,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16668,6 +17510,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -16683,6 +17526,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4, @@ -16700,6 +17544,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 6, Properties: null, EnumValues: null, @@ -16715,6 +17560,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6, @@ -16732,6 +17578,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16747,6 +17594,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16764,6 +17612,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -16779,6 +17628,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -16796,6 +17646,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16811,6 +17662,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16828,6 +17680,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16843,6 +17696,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16860,6 +17714,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16874,6 +17729,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16891,6 +17747,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16906,6 +17763,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16965,6 +17823,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16980,6 +17839,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -16997,6 +17857,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17012,6 +17873,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17029,6 +17891,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17044,6 +17907,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17104,6 +17968,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17118,6 +17983,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17135,6 +18001,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17149,6 +18016,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17166,6 +18034,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17180,6 +18049,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17239,6 +18109,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 4, Properties: null, EnumValues: null, @@ -17254,6 +18125,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory4, @@ -17271,6 +18143,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 6, Properties: null, EnumValues: null, @@ -17286,6 +18159,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory6, @@ -17303,6 +18177,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17318,6 +18193,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17335,6 +18211,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 3, Properties: null, EnumValues: null, @@ -17350,6 +18227,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory3, @@ -17367,6 +18245,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17382,6 +18261,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17441,6 +18321,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17456,6 +18337,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17473,6 +18355,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17488,6 +18371,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17505,6 +18389,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17520,6 +18405,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17537,6 +18423,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17552,6 +18439,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17569,6 +18457,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17584,6 +18473,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17601,6 +18491,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17616,6 +18507,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17633,6 +18525,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17648,6 +18541,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17665,6 +18559,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17680,6 +18575,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17697,6 +18593,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17712,6 +18609,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17729,6 +18627,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17744,6 +18643,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17761,6 +18661,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17776,6 +18677,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17793,6 +18695,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17808,6 +18711,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17825,6 +18729,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17840,6 +18745,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17857,6 +18763,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17872,6 +18779,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17889,6 +18797,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17904,6 +18813,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17921,6 +18831,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -17936,6 +18847,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -17996,6 +18908,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18010,6 +18923,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18027,6 +18941,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18041,6 +18956,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18058,6 +18974,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18072,6 +18989,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18089,6 +19007,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18103,6 +19022,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18120,6 +19040,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18134,6 +19055,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18151,6 +19073,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18165,6 +19088,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18182,6 +19106,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18196,6 +19121,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18256,6 +19182,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18270,6 +19197,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18287,6 +19215,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18301,6 +19230,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18360,6 +19290,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18374,6 +19305,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18391,6 +19323,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18405,6 +19338,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18422,6 +19356,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18437,6 +19372,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18454,6 +19390,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18468,6 +19405,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18485,6 +19423,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18500,6 +19439,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18517,6 +19457,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18531,6 +19472,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18548,6 +19490,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18562,6 +19505,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18621,6 +19565,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18635,6 +19580,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18652,6 +19598,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18666,6 +19613,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18683,6 +19631,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18698,6 +19647,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18757,6 +19707,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18772,6 +19723,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18789,6 +19741,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18804,6 +19757,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18821,6 +19775,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18836,6 +19791,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18895,6 +19851,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18909,6 +19866,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18926,6 +19884,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18941,6 +19900,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18958,6 +19918,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18973,6 +19934,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -18990,6 +19952,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19005,6 +19968,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19022,6 +19986,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19037,6 +20002,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19096,6 +20062,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ repo_handle, description, @@ -19133,6 +20100,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: All database fields for repos, plus helpful computed fields., ConverterType: , @@ -19192,6 +20160,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19206,6 +20175,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19265,6 +20235,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19279,6 +20250,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19296,6 +20268,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19310,6 +20283,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19327,6 +20301,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19342,6 +20317,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19359,6 +20335,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19373,6 +20350,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19390,6 +20368,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19404,6 +20383,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19421,6 +20401,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19435,6 +20416,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19452,6 +20434,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19467,6 +20450,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19484,6 +20468,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19499,6 +20484,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19516,6 +20502,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -19531,6 +20518,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "workspace", IsDeprecated: false, Summary: Default Value: workspace, @@ -19592,6 +20580,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19606,6 +20595,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19623,6 +20613,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19637,6 +20628,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19696,6 +20688,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19710,6 +20703,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19727,6 +20721,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19742,6 +20737,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19759,6 +20755,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19774,6 +20771,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19833,6 +20831,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19848,6 +20847,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -19865,6 +20865,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19879,6 +20880,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19938,6 +20940,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19952,6 +20955,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19969,6 +20973,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19984,6 +20989,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20001,6 +21007,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ scale_up_qsize_trigger, scale_up_nthreads_limit, @@ -20021,6 +21028,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Batch ingest config., ConverterType: , @@ -20038,6 +21046,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20052,6 +21061,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: , @@ -20112,6 +21122,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20126,6 +21137,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20143,6 +21155,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20157,6 +21170,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20174,6 +21188,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20188,6 +21203,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20247,6 +21263,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20261,6 +21278,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20320,6 +21338,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20334,6 +21353,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20393,6 +21413,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20407,6 +21428,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20424,6 +21446,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20438,6 +21461,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20497,6 +21521,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20511,6 +21536,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20528,6 +21554,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20542,6 +21569,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20601,6 +21629,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20615,6 +21644,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20632,6 +21662,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20646,6 +21677,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20663,6 +21695,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20678,6 +21711,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20737,6 +21771,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20751,6 +21786,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20768,6 +21804,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20782,6 +21819,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20799,6 +21837,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20814,6 +21853,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -20873,6 +21913,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20887,6 +21928,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20904,6 +21946,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20918,6 +21961,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -20977,6 +22021,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20991,6 +22036,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21008,6 +22054,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21022,6 +22069,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21039,6 +22087,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21054,6 +22103,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21113,6 +22163,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21127,6 +22178,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21186,6 +22238,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21200,6 +22253,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21217,6 +22271,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21231,6 +22286,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21248,6 +22304,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21263,6 +22320,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21280,6 +22338,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21294,6 +22353,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21311,6 +22371,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21325,6 +22386,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21342,6 +22404,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21356,6 +22419,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21373,6 +22437,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21388,6 +22453,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21405,6 +22471,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21420,6 +22487,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21437,6 +22505,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -21452,6 +22521,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "workspace", IsDeprecated: false, Summary: Default Value: workspace, @@ -21470,6 +22540,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21485,6 +22556,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21502,6 +22574,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21517,6 +22590,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21534,6 +22608,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21549,6 +22624,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21609,6 +22685,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21623,6 +22700,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21640,6 +22718,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21654,6 +22733,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21713,6 +22793,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21727,6 +22808,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21744,6 +22826,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21758,6 +22841,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21858,6 +22942,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21872,6 +22957,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "model", IsDeprecated: false, Summary: Default Value: model, @@ -21890,6 +22976,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21905,6 +22992,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -21964,6 +23052,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21978,6 +23067,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21995,6 +23085,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22010,6 +23101,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22027,6 +23119,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22041,6 +23134,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Default Value: [model, model_name, model_id, model_path, endpoint_name], @@ -22059,6 +23153,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22073,6 +23168,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22090,6 +23186,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22105,6 +23202,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22122,6 +23220,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22137,6 +23236,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22154,6 +23254,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22169,6 +23270,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22228,6 +23330,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22242,6 +23345,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22259,6 +23363,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22274,6 +23379,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22291,6 +23397,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22305,6 +23412,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Default Value: [model, model_name, model_id, model_path, endpoint_name], @@ -22323,6 +23431,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22337,6 +23446,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22354,6 +23464,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22369,6 +23480,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22386,6 +23498,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22401,6 +23514,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22418,6 +23532,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22433,6 +23548,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22492,6 +23608,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22506,6 +23623,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22523,6 +23641,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22537,6 +23656,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22554,6 +23674,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22568,6 +23689,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22585,6 +23707,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22600,6 +23723,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22617,6 +23741,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22631,6 +23756,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22648,6 +23774,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22662,6 +23789,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22679,6 +23807,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22694,6 +23823,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22711,6 +23841,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22726,6 +23857,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22785,6 +23917,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22799,6 +23932,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22816,6 +23950,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22831,6 +23966,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22848,6 +23984,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -22863,6 +24000,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -22922,6 +24060,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22936,6 +24075,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "UTC", IsDeprecated: false, Summary: Default Value: UTC, @@ -22954,6 +24094,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22968,6 +24109,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22985,6 +24127,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -23000,6 +24143,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1, @@ -23017,6 +24161,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -23032,6 +24177,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1, @@ -23091,6 +24237,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23105,6 +24252,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23165,6 +24313,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23179,6 +24328,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23196,6 +24346,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23210,6 +24361,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23227,6 +24379,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23241,6 +24394,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23258,6 +24412,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23272,6 +24427,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23289,6 +24445,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23303,6 +24460,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23320,6 +24478,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23334,6 +24493,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23351,6 +24511,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23365,6 +24526,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23382,6 +24544,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23396,6 +24559,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23413,6 +24577,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23427,6 +24592,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23444,6 +24610,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23458,6 +24625,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23475,6 +24643,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23489,6 +24658,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23506,6 +24676,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23520,6 +24691,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23537,6 +24709,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23551,6 +24724,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23610,6 +24784,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23624,6 +24799,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23641,6 +24817,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23656,6 +24833,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23673,6 +24851,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23688,6 +24867,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23747,6 +24927,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23761,6 +24942,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23778,6 +24960,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23792,6 +24975,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23809,6 +24993,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23824,6 +25009,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23841,6 +25027,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23855,6 +25042,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23872,6 +25060,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23886,6 +25075,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23903,6 +25093,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23917,6 +25108,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23934,6 +25126,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23949,6 +25142,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23966,6 +25160,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -23981,6 +25176,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -23998,6 +25194,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -24013,6 +25210,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "workspace", IsDeprecated: false, Summary: Default Value: workspace, @@ -24031,6 +25229,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24046,6 +25245,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24063,6 +25263,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24078,6 +25279,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24095,6 +25297,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24110,6 +25313,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24127,6 +25331,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24141,6 +25346,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24201,6 +25407,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24215,6 +25422,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24232,6 +25440,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24246,6 +25455,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24305,6 +25515,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24319,6 +25530,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24336,6 +25548,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24350,6 +25563,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -24368,6 +25582,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24383,6 +25598,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24400,6 +25616,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24415,6 +25632,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24432,6 +25650,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24447,6 +25666,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24464,6 +25684,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24479,6 +25700,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24496,6 +25718,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24511,6 +25734,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24528,6 +25752,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -24543,6 +25768,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "workspace", IsDeprecated: false, Summary: Default Value: workspace, @@ -24561,6 +25787,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24575,6 +25802,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24592,6 +25820,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24607,6 +25836,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24624,6 +25854,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24639,6 +25870,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24656,6 +25888,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24671,6 +25904,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24688,6 +25922,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24702,6 +25937,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24719,6 +25955,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24734,6 +25971,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24751,6 +25989,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24765,6 +26004,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24825,6 +26065,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24839,6 +26080,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24856,6 +26098,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24870,6 +26113,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24929,6 +26173,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24944,6 +26189,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24961,6 +26207,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -24976,6 +26223,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -24993,6 +26241,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ max_identities, max_workspaces, @@ -25017,6 +26266,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Organization level configuration. May include any field that exists in tenant config and additional fields., ConverterType: , @@ -25034,6 +26284,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25048,6 +26299,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25065,6 +26317,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25079,6 +26332,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25096,6 +26350,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25110,6 +26365,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25127,6 +26383,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -25142,6 +26399,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -25159,6 +26417,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -25174,6 +26433,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -25191,6 +26451,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25205,6 +26466,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25222,6 +26484,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -25237,6 +26500,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -25254,6 +26518,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -25269,6 +26534,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -25286,6 +26552,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -25301,6 +26568,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -25318,6 +26586,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25332,6 +26601,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -25350,6 +26620,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25364,6 +26635,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25424,6 +26696,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25438,6 +26711,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25455,6 +26729,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25469,6 +26744,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25486,6 +26762,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25500,6 +26777,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25517,6 +26795,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25531,6 +26810,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25548,6 +26828,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25562,6 +26843,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25579,6 +26861,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25593,6 +26876,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25610,6 +26894,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25624,6 +26909,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25641,6 +26927,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25655,6 +26942,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25672,6 +26960,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25686,6 +26975,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25703,6 +26993,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25717,6 +27008,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25734,6 +27026,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25748,6 +27041,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25807,6 +27101,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -25822,6 +27117,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -25839,6 +27135,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25853,6 +27150,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25870,6 +27168,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ max_identities, max_workspaces, @@ -25894,6 +27193,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Organization level configuration. May include any field that exists in tenant config and additional fields., ConverterType: , @@ -25911,6 +27211,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25925,6 +27226,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25942,6 +27244,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25956,6 +27259,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25973,6 +27277,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25987,6 +27292,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26004,6 +27310,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26019,6 +27326,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26036,6 +27344,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26051,6 +27360,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26068,6 +27378,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26083,6 +27394,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26100,6 +27412,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26115,6 +27428,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26132,6 +27446,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26147,6 +27462,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26164,6 +27480,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26178,6 +27495,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -26196,6 +27514,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26210,6 +27529,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -26271,6 +27591,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26285,6 +27606,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26302,6 +27624,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26316,6 +27639,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26333,6 +27657,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26347,6 +27672,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26364,6 +27690,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26378,6 +27705,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26395,6 +27723,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26409,6 +27738,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26426,6 +27756,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26440,6 +27771,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26457,6 +27789,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26471,6 +27804,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26488,6 +27822,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26502,6 +27837,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26519,6 +27855,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26533,6 +27870,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26550,6 +27888,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26564,6 +27903,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26581,6 +27921,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26595,6 +27936,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26654,6 +27996,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26668,6 +28011,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 5, IsDeprecated: false, Summary: Default Value: 5, @@ -26686,6 +28030,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26700,6 +28045,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: Default Value: 1, @@ -26718,6 +28064,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26732,6 +28079,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -26750,6 +28098,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26764,6 +28113,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: Default Value: true, @@ -26782,6 +28132,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26797,6 +28148,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26814,6 +28166,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26829,6 +28182,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26846,6 +28200,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -26861,6 +28216,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -26878,6 +28234,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26892,6 +28249,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -26910,6 +28268,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26924,6 +28283,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: , @@ -26985,6 +28345,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26999,6 +28360,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27016,6 +28378,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27030,6 +28393,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27089,6 +28453,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27103,6 +28468,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27163,6 +28529,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27177,6 +28544,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27194,6 +28562,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27208,6 +28577,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27225,6 +28595,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27239,6 +28610,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27298,6 +28670,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -27313,6 +28686,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -27330,6 +28704,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -27345,6 +28720,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -27362,6 +28738,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ max_identities, max_workspaces, @@ -27386,6 +28763,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Organization level configuration. May include any field that exists in tenant config and additional fields., ConverterType: , @@ -27403,6 +28781,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27417,6 +28796,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27434,6 +28814,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -27449,6 +28830,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -27466,6 +28848,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27480,6 +28863,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -27498,6 +28882,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27512,6 +28897,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27529,6 +28915,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27543,6 +28930,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -27604,6 +28992,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27618,6 +29007,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27635,6 +29025,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27649,6 +29040,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27666,6 +29058,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27680,6 +29073,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27697,6 +29091,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27711,6 +29106,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27728,6 +29124,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27742,6 +29139,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27759,6 +29157,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27773,6 +29172,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27790,6 +29190,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27804,6 +29205,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27821,6 +29223,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27835,6 +29238,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27852,6 +29256,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27866,6 +29271,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27883,6 +29289,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27897,6 +29304,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27914,6 +29322,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27928,6 +29337,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27987,6 +29397,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28001,6 +29412,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28018,6 +29430,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28032,6 +29445,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28049,6 +29463,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28063,6 +29478,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28122,6 +29538,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28136,6 +29553,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28153,6 +29571,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28167,6 +29586,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28184,6 +29604,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28199,6 +29620,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -28216,6 +29638,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28231,6 +29654,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -28248,6 +29672,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -28263,6 +29688,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -28280,6 +29706,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28294,6 +29721,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28311,6 +29739,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28325,6 +29754,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28385,6 +29815,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28399,6 +29830,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28416,6 +29848,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28430,6 +29863,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28447,6 +29881,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28461,6 +29896,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28478,6 +29914,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28492,6 +29929,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28552,6 +29990,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28566,6 +30005,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28583,6 +30023,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28597,6 +30038,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28614,6 +30056,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28628,6 +30071,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28645,6 +30089,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28659,6 +30104,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28676,6 +30122,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28690,6 +30137,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28707,6 +30155,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28721,6 +30170,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28738,6 +30188,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28752,6 +30203,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28769,6 +30221,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28783,6 +30236,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28800,6 +30254,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28814,6 +30269,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28831,6 +30287,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28845,6 +30302,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28862,6 +30320,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28876,6 +30335,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28935,6 +30395,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28949,6 +30410,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28966,6 +30428,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28980,6 +30443,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -28998,6 +30462,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29013,6 +30478,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29030,6 +30496,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29045,6 +30512,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29062,6 +30530,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29077,6 +30546,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29094,6 +30564,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29109,6 +30580,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29126,6 +30598,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29141,6 +30614,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29158,6 +30632,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AllOfCount: 1, Properties: null, EnumValues: null, @@ -29173,6 +30648,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AllOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "workspace", IsDeprecated: false, Summary: Default Value: workspace, @@ -29191,6 +30667,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29205,6 +30682,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29222,6 +30700,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29237,6 +30716,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29254,6 +30734,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29269,6 +30750,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29286,6 +30768,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29301,6 +30784,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29318,6 +30802,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29332,6 +30817,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29349,6 +30835,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29364,6 +30851,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29424,6 +30912,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29438,6 +30927,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29455,6 +30945,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29469,6 +30960,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29528,6 +31020,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29542,6 +31035,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29559,6 +31053,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29573,6 +31068,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -29591,6 +31087,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29606,6 +31103,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29623,6 +31121,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29638,6 +31137,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29655,6 +31155,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29670,6 +31171,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29687,6 +31189,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29702,6 +31205,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29719,6 +31223,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29734,6 +31239,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -29793,6 +31299,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29807,6 +31314,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29824,6 +31332,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29838,6 +31347,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29855,6 +31365,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Organization, Workspace @@ -29875,6 +31386,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AccessScopeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AccessScopeJsonConverter, @@ -29934,6 +31446,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29948,6 +31461,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29965,6 +31479,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -29980,6 +31495,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30039,6 +31555,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30053,6 +31570,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30070,6 +31588,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30084,6 +31603,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30101,6 +31621,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30116,6 +31637,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30133,6 +31655,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30147,6 +31670,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30164,6 +31688,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30178,6 +31703,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30237,6 +31763,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30252,6 +31779,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30311,6 +31839,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30325,6 +31854,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30342,6 +31872,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30357,6 +31888,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30374,6 +31906,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30389,6 +31922,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30406,6 +31940,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30420,6 +31955,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30437,6 +31973,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30451,6 +31988,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30468,6 +32006,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30483,6 +32022,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30500,6 +32040,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30514,6 +32055,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30531,6 +32073,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30546,6 +32089,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30605,6 +32149,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30619,6 +32164,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30636,6 +32182,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30651,6 +32198,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30668,6 +32216,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30682,6 +32231,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30699,6 +32249,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30714,6 +32265,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30731,6 +32283,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30746,6 +32299,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30763,6 +32317,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30777,6 +32332,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30794,6 +32350,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30808,6 +32365,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30825,6 +32383,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30839,6 +32398,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30856,6 +32416,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -30871,6 +32432,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -30888,6 +32450,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30902,6 +32465,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30961,6 +32525,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30975,6 +32540,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30992,6 +32558,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31006,6 +32573,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31065,6 +32633,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31079,6 +32648,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31096,6 +32666,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31111,6 +32682,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31128,6 +32700,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31143,6 +32716,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31160,6 +32734,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31174,6 +32749,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -31192,6 +32768,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31206,6 +32783,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 20, IsDeprecated: false, Summary: Default Value: 20, @@ -31266,6 +32844,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31280,6 +32859,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31297,6 +32877,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31311,6 +32892,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31328,6 +32910,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31342,6 +32925,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31359,6 +32943,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31374,6 +32959,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31391,6 +32977,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31405,6 +32992,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -31423,6 +33011,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31437,6 +33026,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 100, IsDeprecated: false, Summary: Default Value: 100, @@ -31455,6 +33045,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31470,6 +33061,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31529,6 +33121,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31544,6 +33137,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31603,6 +33197,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31617,6 +33212,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31634,6 +33230,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31649,6 +33246,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31666,6 +33264,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31681,6 +33280,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31698,6 +33298,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31713,6 +33314,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31730,6 +33332,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31744,6 +33347,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31803,6 +33407,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31817,6 +33422,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31834,6 +33440,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31849,6 +33456,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31866,6 +33474,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -31881,6 +33490,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -31898,6 +33508,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31912,6 +33523,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31929,6 +33541,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31943,6 +33556,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31960,6 +33574,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31974,6 +33589,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31991,6 +33607,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32005,6 +33622,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32022,6 +33640,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32036,6 +33655,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32053,6 +33673,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32067,6 +33688,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32084,6 +33706,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32098,6 +33721,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32115,6 +33739,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32130,6 +33755,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -32147,6 +33773,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32162,6 +33789,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -32179,6 +33807,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32194,6 +33823,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -32211,6 +33841,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32225,6 +33856,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32242,6 +33874,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32256,6 +33889,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32273,6 +33907,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32287,6 +33922,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32304,6 +33940,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32318,6 +33955,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32335,6 +33973,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32350,6 +33989,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -32367,6 +34007,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32382,6 +34023,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -32399,6 +34041,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32413,6 +34056,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32430,6 +34074,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32445,6 +34090,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -32462,6 +34108,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -32477,6 +34124,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -32536,6 +34184,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32550,6 +34199,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32567,6 +34217,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32581,6 +34232,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32641,6 +34293,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32655,6 +34308,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32672,6 +34326,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32686,6 +34341,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32703,6 +34359,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32717,6 +34374,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32734,6 +34392,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32748,6 +34407,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32765,6 +34425,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32779,6 +34440,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32796,6 +34458,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32810,6 +34473,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32827,6 +34491,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32841,6 +34506,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32900,6 +34566,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32914,6 +34581,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32931,6 +34599,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32945,6 +34614,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33004,6 +34674,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33018,6 +34689,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33035,6 +34707,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33049,6 +34722,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33066,6 +34740,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33080,6 +34755,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33097,6 +34773,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33111,6 +34788,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33128,6 +34806,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33143,6 +34822,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33160,6 +34840,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33174,6 +34855,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33191,6 +34873,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33206,6 +34889,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33266,6 +34950,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33280,6 +34965,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33297,6 +34983,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33311,6 +34998,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33412,6 +35100,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33426,6 +35115,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33443,6 +35133,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33457,6 +35148,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33474,6 +35166,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33488,6 +35181,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33547,6 +35241,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Success, Skipped, @@ -33569,6 +35264,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.RuleLogActionOutcomeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RuleLogActionOutcomeJsonConverter, @@ -33586,6 +35282,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33601,6 +35298,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33660,6 +35358,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33674,6 +35373,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33691,6 +35391,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33705,6 +35406,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33722,6 +35424,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33737,6 +35440,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33754,6 +35458,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33769,6 +35474,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33786,6 +35492,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33801,6 +35508,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33818,6 +35526,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33832,6 +35541,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33849,6 +35559,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33863,6 +35574,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33880,6 +35592,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33895,6 +35608,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33912,6 +35626,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33927,6 +35642,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33944,6 +35660,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33959,6 +35676,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -33976,6 +35694,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -33991,6 +35710,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34008,6 +35728,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34023,6 +35744,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34083,6 +35805,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34097,6 +35820,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34114,6 +35838,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34128,6 +35853,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34188,6 +35914,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34202,6 +35929,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34261,6 +35989,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34275,6 +36004,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34292,6 +36022,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Conversation ], @@ -34310,6 +36041,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.RunGroupByJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunGroupByJsonConverter, @@ -34327,6 +36059,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34342,6 +36075,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34359,6 +36093,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34374,6 +36109,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34391,6 +36127,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34406,6 +36143,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34423,6 +36161,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34437,6 +36176,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -34455,6 +36195,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34469,6 +36210,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 10, IsDeprecated: false, Summary: Default Value: 10, @@ -34529,6 +36271,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34543,6 +36286,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34560,6 +36304,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34575,6 +36320,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34592,6 +36338,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34607,6 +36354,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34624,6 +36372,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34639,6 +36388,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34656,6 +36406,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34671,6 +36422,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34688,6 +36440,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34703,6 +36456,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34720,6 +36474,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34735,6 +36490,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34752,6 +36508,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34767,6 +36524,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34784,6 +36542,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34799,6 +36558,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34816,6 +36576,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34831,6 +36592,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34848,6 +36610,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34863,6 +36626,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34880,6 +36644,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34895,6 +36660,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34912,6 +36678,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34927,6 +36694,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34944,6 +36712,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34959,6 +36728,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -34976,6 +36746,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34991,6 +36762,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35008,6 +36780,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35023,6 +36796,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35040,6 +36814,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35055,6 +36830,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35072,6 +36848,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35086,6 +36863,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35145,6 +36923,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35159,6 +36938,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35176,6 +36956,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35191,6 +36972,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35208,6 +36990,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool, Chain, @@ -35238,6 +37021,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enum for run types., ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter, @@ -35255,6 +37039,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35269,6 +37054,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35286,6 +37072,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35301,6 +37088,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35318,6 +37106,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35333,6 +37122,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35350,6 +37140,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35365,6 +37156,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35382,6 +37174,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35396,6 +37189,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: Default Value: 1, @@ -35414,6 +37208,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35429,6 +37224,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35446,6 +37242,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35461,6 +37258,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35478,6 +37276,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35493,6 +37292,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35510,6 +37310,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35525,6 +37326,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35542,6 +37344,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35557,6 +37360,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35574,6 +37378,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35589,6 +37394,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35606,6 +37412,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35621,6 +37428,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35638,6 +37446,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35653,6 +37462,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35670,6 +37480,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35685,6 +37496,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35702,6 +37514,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35717,6 +37530,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35734,6 +37548,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35748,6 +37563,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35765,6 +37581,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35779,6 +37596,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35796,6 +37614,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35810,6 +37629,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35827,6 +37647,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35841,6 +37662,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35858,6 +37680,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35873,6 +37696,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35890,6 +37714,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35905,6 +37730,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35922,6 +37748,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35937,6 +37764,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35954,6 +37782,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -35969,6 +37798,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -35986,6 +37816,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36001,6 +37832,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36018,6 +37850,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36032,6 +37865,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -36050,6 +37884,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36064,6 +37899,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -36082,6 +37918,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36096,6 +37933,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -36114,6 +37952,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36129,6 +37968,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36146,6 +37986,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36161,6 +38002,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36178,6 +38020,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36193,6 +38036,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36210,6 +38054,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36225,6 +38070,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36242,6 +38088,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36257,6 +38104,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36274,6 +38122,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36288,6 +38137,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -36347,6 +38197,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36361,6 +38212,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -36378,6 +38230,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36393,6 +38246,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36410,6 +38264,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool, Chain, @@ -36440,6 +38295,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enum for run types., ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter, @@ -36457,6 +38313,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36471,6 +38328,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -36488,6 +38346,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36503,6 +38362,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36520,6 +38380,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36535,6 +38396,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36552,6 +38414,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36567,6 +38430,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36584,6 +38448,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36598,6 +38463,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: Default Value: 1, @@ -36616,6 +38482,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36631,6 +38498,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36648,6 +38516,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36663,6 +38532,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36680,6 +38550,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36695,6 +38566,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36712,6 +38584,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36727,6 +38600,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36744,6 +38618,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36759,6 +38634,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36776,6 +38652,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36791,6 +38668,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36808,6 +38686,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36823,6 +38702,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36840,6 +38720,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36855,6 +38736,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36872,6 +38754,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36887,6 +38770,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36904,6 +38788,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36919,6 +38804,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -36936,6 +38822,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36950,6 +38837,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -36967,6 +38855,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36981,6 +38870,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -36998,6 +38888,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37012,6 +38903,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37029,6 +38921,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37043,6 +38936,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37060,6 +38954,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37075,6 +38970,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37092,6 +38988,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37107,6 +39004,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37124,6 +39022,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37139,6 +39038,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37156,6 +39056,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37171,6 +39072,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37188,6 +39090,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37203,6 +39106,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37220,6 +39124,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37234,6 +39139,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -37252,6 +39158,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37266,6 +39173,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -37284,6 +39192,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37298,6 +39207,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -37316,6 +39226,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37331,6 +39242,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37348,6 +39260,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37363,6 +39276,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37380,6 +39294,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37395,6 +39310,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37412,6 +39328,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37427,6 +39344,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37444,6 +39362,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37459,6 +39378,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37519,6 +39439,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37533,6 +39454,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37592,6 +39514,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37606,6 +39529,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37623,6 +39547,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37638,6 +39563,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37655,6 +39581,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37669,6 +39596,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: Default Value: true, @@ -37687,6 +39615,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37702,6 +39631,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37719,6 +39649,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37733,6 +39664,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37750,6 +39682,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37765,6 +39698,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37782,6 +39716,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37797,6 +39732,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37814,6 +39750,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37829,6 +39766,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37846,6 +39784,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37861,6 +39800,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37878,6 +39818,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37892,6 +39833,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -37910,6 +39852,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37925,6 +39868,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -37942,6 +39886,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37956,6 +39901,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -37974,6 +39920,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -37989,6 +39936,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38006,6 +39954,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38021,6 +39970,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38038,6 +39988,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38052,6 +40003,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -38070,6 +40022,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38085,6 +40038,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38102,6 +40056,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38117,6 +40072,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38134,6 +40090,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38149,6 +40106,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38208,6 +40166,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38223,6 +40182,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.RunRulesAlertType.Pagerduty, IsDeprecated: false, Summary: Default Value: pagerduty, @@ -38241,6 +40201,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38255,6 +40216,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38272,6 +40234,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38287,6 +40250,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38304,6 +40268,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38319,6 +40284,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.PagerdutySeverity.Warning, IsDeprecated: false, Summary: Default Value: warning, @@ -38380,6 +40346,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38394,6 +40361,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38454,6 +40422,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38468,6 +40437,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38485,6 +40455,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38499,6 +40470,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38516,6 +40488,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38530,6 +40503,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38547,6 +40521,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38561,6 +40536,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38620,6 +40596,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38634,6 +40611,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38651,6 +40629,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38665,6 +40644,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38682,6 +40662,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38696,6 +40677,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: Default Value: true, @@ -38714,6 +40696,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38729,6 +40712,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38746,6 +40730,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38761,6 +40746,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38778,6 +40764,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38793,6 +40780,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38810,6 +40798,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38825,6 +40814,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38842,6 +40832,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38856,6 +40847,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38873,6 +40865,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38887,6 +40880,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38904,6 +40898,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38919,6 +40914,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38936,6 +40932,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38951,6 +40948,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -38968,6 +40966,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -38983,6 +40982,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39000,6 +41000,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39015,6 +41016,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39032,6 +41034,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39047,6 +41050,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39064,6 +41068,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39079,6 +41084,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39096,6 +41102,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39111,6 +41118,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39128,6 +41136,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39142,6 +41151,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -39160,6 +41170,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39175,6 +41186,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39192,6 +41204,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39206,6 +41219,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -39224,6 +41238,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39239,6 +41254,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39256,6 +41272,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39271,6 +41288,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39288,6 +41306,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39303,6 +41322,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39320,6 +41340,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39335,6 +41356,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39352,6 +41374,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39366,6 +41389,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -39384,6 +41408,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39398,6 +41423,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39415,6 +41441,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39429,6 +41456,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39446,6 +41474,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39461,6 +41490,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39520,6 +41550,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39534,6 +41565,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39551,6 +41583,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39566,6 +41599,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39625,6 +41659,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39639,6 +41674,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39656,6 +41692,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39671,6 +41708,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39688,6 +41726,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool, Chain, @@ -39718,6 +41757,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enum for run types., ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter, @@ -39735,6 +41775,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39749,6 +41790,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39766,6 +41808,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39781,6 +41824,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39798,6 +41842,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39813,6 +41858,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39830,6 +41876,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39845,6 +41892,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39862,6 +41910,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39876,6 +41925,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: Default Value: 1, @@ -39894,6 +41944,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39909,6 +41960,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39926,6 +41978,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39941,6 +41994,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39958,6 +42012,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -39973,6 +42028,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -39990,6 +42046,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40005,6 +42062,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40022,6 +42080,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40037,6 +42096,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40054,6 +42114,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40069,6 +42130,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40086,6 +42148,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40101,6 +42164,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40118,6 +42182,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40133,6 +42198,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40150,6 +42216,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40165,6 +42232,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40182,6 +42250,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40197,6 +42266,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40214,6 +42284,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40228,6 +42299,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40245,6 +42317,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40259,6 +42332,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40276,6 +42350,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40290,6 +42365,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40307,6 +42383,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40321,6 +42398,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40338,6 +42416,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40353,6 +42432,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40370,6 +42450,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40385,6 +42466,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40402,6 +42484,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40417,6 +42500,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40434,6 +42518,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40449,6 +42534,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40466,6 +42552,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40481,6 +42568,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40498,6 +42586,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40512,6 +42601,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -40530,6 +42620,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40544,6 +42635,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -40562,6 +42654,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40576,6 +42669,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -40594,6 +42688,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40609,6 +42704,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40626,6 +42722,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40641,6 +42738,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40658,6 +42756,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40673,6 +42772,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40690,6 +42790,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40705,6 +42806,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40722,6 +42824,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40737,6 +42840,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40754,6 +42858,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40768,6 +42873,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40785,6 +42891,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40799,6 +42906,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40816,6 +42924,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40831,6 +42940,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40848,6 +42958,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40863,6 +42974,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40880,6 +42992,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40895,6 +43008,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40912,6 +43026,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40927,6 +43042,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40944,6 +43060,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40959,6 +43076,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -40976,6 +43094,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -40991,6 +43110,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41008,6 +43128,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41022,6 +43143,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -41083,6 +43205,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41097,6 +43220,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41114,6 +43238,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41128,6 +43253,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41187,6 +43313,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41201,6 +43328,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41218,6 +43346,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41233,6 +43362,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41250,6 +43380,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool, Chain, @@ -41280,6 +43411,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enum for run types., ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter, @@ -41297,6 +43429,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41311,6 +43444,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41328,6 +43462,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41343,6 +43478,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41360,6 +43496,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41375,6 +43512,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41392,6 +43530,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41407,6 +43546,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41424,6 +43564,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41438,6 +43579,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: Default Value: 1, @@ -41456,6 +43598,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41471,6 +43614,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41488,6 +43632,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41503,6 +43648,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41520,6 +43666,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41535,6 +43682,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41552,6 +43700,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41567,6 +43716,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41584,6 +43734,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41599,6 +43750,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41616,6 +43768,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41631,6 +43784,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41648,6 +43802,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41663,6 +43818,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41680,6 +43836,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41695,6 +43852,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41712,6 +43870,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41727,6 +43886,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41744,6 +43904,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41759,6 +43920,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41776,6 +43938,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41790,6 +43953,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41807,6 +43971,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41822,6 +43987,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41839,6 +44005,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41853,6 +44020,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41870,6 +44038,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41884,6 +44053,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41901,6 +44071,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41916,6 +44087,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41933,6 +44105,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41948,6 +44121,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41965,6 +44139,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -41980,6 +44155,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -41997,6 +44173,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42012,6 +44189,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42029,6 +44207,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42044,6 +44223,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42061,6 +44241,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42076,6 +44257,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42093,6 +44275,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42108,6 +44291,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42125,6 +44309,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42139,6 +44324,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42156,6 +44342,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42171,6 +44358,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42188,6 +44376,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42203,6 +44392,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42262,6 +44452,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42276,6 +44467,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42293,6 +44485,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42308,6 +44501,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42325,6 +44519,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool, Chain, @@ -42355,6 +44550,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enum for run types., ConverterType: global::OpenApiGenerator.JsonConverters.RunTypeEnumJsonConverter, @@ -42372,6 +44568,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42386,6 +44583,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42403,6 +44601,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42418,6 +44617,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42435,6 +44635,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42450,6 +44651,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42467,6 +44669,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42482,6 +44685,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42499,6 +44703,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42513,6 +44718,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: Default Value: 1, @@ -42531,6 +44737,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42546,6 +44753,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42563,6 +44771,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42578,6 +44787,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42595,6 +44805,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42610,6 +44821,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42627,6 +44839,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42642,6 +44855,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42659,6 +44873,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42674,6 +44889,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42691,6 +44907,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42706,6 +44923,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42723,6 +44941,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42738,6 +44957,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42755,6 +44975,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42770,6 +44991,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42787,6 +45009,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42802,6 +45025,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42819,6 +45043,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42834,6 +45059,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -42851,6 +45077,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42865,6 +45092,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42882,6 +45110,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42896,6 +45125,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42913,6 +45143,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42927,6 +45158,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42944,6 +45176,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42958,6 +45191,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42975,6 +45209,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -42990,6 +45225,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43007,6 +45243,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43022,6 +45259,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43039,6 +45277,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43054,6 +45293,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43071,6 +45311,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43086,6 +45327,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43103,6 +45345,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43118,6 +45361,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43135,6 +45379,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43149,6 +45394,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -43167,6 +45413,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43181,6 +45428,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -43199,6 +45447,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43213,6 +45462,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -43231,6 +45481,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43246,6 +45497,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43263,6 +45515,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43278,6 +45531,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43295,6 +45549,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43310,6 +45565,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43327,6 +45583,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43342,6 +45599,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43359,6 +45617,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43374,6 +45633,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43391,6 +45651,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43405,6 +45666,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43422,6 +45684,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43436,6 +45699,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43453,6 +45717,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43468,6 +45733,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43485,6 +45751,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43500,6 +45767,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43517,6 +45785,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43532,6 +45801,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43549,6 +45819,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43564,6 +45835,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43581,6 +45853,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43596,6 +45869,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43613,6 +45887,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43628,6 +45903,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43645,6 +45921,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43659,6 +45936,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -43677,6 +45955,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43692,6 +45971,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43709,6 +45989,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -43724,6 +46005,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -43784,6 +46066,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43798,6 +46081,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43815,6 +46099,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43829,6 +46114,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43889,6 +46175,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43903,6 +46190,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43920,6 +46208,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43934,6 +46223,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43951,6 +46241,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43965,6 +46256,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43982,6 +46274,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43996,6 +46289,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44013,6 +46307,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44027,6 +46322,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44044,6 +46340,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44058,6 +46355,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44075,6 +46373,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44089,6 +46388,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44106,6 +46406,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44120,6 +46421,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44137,6 +46439,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44151,6 +46454,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44168,6 +46472,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44182,6 +46487,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44199,6 +46505,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44213,6 +46520,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44230,6 +46538,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44244,6 +46553,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44261,6 +46571,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44275,6 +46586,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44292,6 +46604,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44306,6 +46619,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44323,6 +46637,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44337,6 +46652,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44354,6 +46670,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44368,6 +46685,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44385,6 +46703,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44399,6 +46718,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44416,6 +46736,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44430,6 +46751,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44447,6 +46769,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44461,6 +46784,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44478,6 +46802,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44492,6 +46817,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44509,6 +46835,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44523,6 +46850,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44540,6 +46868,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44554,6 +46883,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44571,6 +46901,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44585,6 +46916,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44602,6 +46934,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44616,6 +46949,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44633,6 +46967,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44647,6 +46982,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44664,6 +47000,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44678,6 +47015,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44695,6 +47033,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44709,6 +47048,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44726,6 +47066,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44740,6 +47081,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44757,6 +47099,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44771,6 +47114,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44788,6 +47132,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44802,6 +47147,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44819,6 +47165,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44833,6 +47180,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44850,6 +47198,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44864,6 +47213,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44881,6 +47231,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44895,6 +47246,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44912,6 +47264,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44926,6 +47279,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44943,6 +47297,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44957,6 +47312,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44974,6 +47330,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44988,6 +47345,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45005,6 +47363,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45019,6 +47378,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45036,6 +47396,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45050,6 +47411,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45067,6 +47429,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45081,6 +47444,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45098,6 +47462,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45112,6 +47477,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45129,6 +47495,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45143,6 +47510,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45160,6 +47528,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45174,6 +47543,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45191,6 +47561,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45205,6 +47576,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45222,6 +47594,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45236,6 +47609,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45253,6 +47627,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45267,6 +47642,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45326,6 +47702,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45340,6 +47717,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45357,6 +47735,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45371,6 +47750,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45430,6 +47810,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45444,6 +47825,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45461,6 +47843,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45476,6 +47859,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45493,6 +47877,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45508,6 +47893,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45525,6 +47911,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45540,6 +47927,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45557,6 +47945,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45572,6 +47961,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45589,6 +47979,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45604,6 +47995,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45621,6 +48013,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45636,6 +48029,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45653,6 +48047,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45668,6 +48063,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45685,6 +48081,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45700,6 +48097,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45717,6 +48115,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45732,6 +48131,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45749,6 +48149,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45764,6 +48165,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45781,6 +48183,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45796,6 +48199,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45813,6 +48217,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45828,6 +48233,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45845,6 +48251,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45860,6 +48267,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45877,6 +48285,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45892,6 +48301,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45909,6 +48319,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45924,6 +48335,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -45941,6 +48353,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -45956,6 +48369,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -46016,6 +48430,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46030,6 +48445,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46047,6 +48463,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46061,6 +48478,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46078,6 +48496,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46092,6 +48511,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46109,6 +48529,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46123,6 +48544,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46140,6 +48562,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46154,6 +48577,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46171,6 +48595,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46185,6 +48610,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46202,6 +48628,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46216,6 +48643,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46276,6 +48704,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46290,6 +48719,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46307,6 +48737,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46321,6 +48752,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46381,6 +48813,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46395,6 +48828,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46412,6 +48846,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46426,6 +48861,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46443,6 +48879,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46457,6 +48894,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46474,6 +48912,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46488,6 +48927,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46505,6 +48945,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46519,6 +48960,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46536,6 +48978,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46550,6 +48993,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46567,6 +49011,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46581,6 +49026,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46640,6 +49086,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46654,6 +49101,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46671,6 +49119,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46685,6 +49134,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 5, IsDeprecated: false, Summary: Default Value: 5, @@ -46745,6 +49195,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46759,6 +49210,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46818,6 +49270,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46832,6 +49285,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46849,6 +49303,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46863,6 +49318,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46922,6 +49378,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46936,6 +49393,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46995,6 +49453,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47009,6 +49468,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47026,6 +49486,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -47041,6 +49502,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -47100,6 +49562,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47114,6 +49577,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47131,6 +49595,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47145,6 +49610,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47162,6 +49628,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47176,6 +49643,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47193,6 +49661,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47207,6 +49676,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47224,6 +49694,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47238,6 +49709,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47255,6 +49727,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -47270,6 +49743,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -47329,6 +49803,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47343,6 +49818,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47402,6 +49878,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47416,6 +49893,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47433,6 +49911,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47447,6 +49926,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47464,6 +49944,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47478,6 +49959,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47495,6 +49977,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47509,6 +49992,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47526,6 +50010,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47540,6 +50025,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47557,6 +50043,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -47572,6 +50059,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -47589,6 +50077,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47603,6 +50092,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47662,6 +50152,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47676,6 +50167,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47693,6 +50185,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47707,6 +50200,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47724,6 +50218,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47738,6 +50233,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47755,6 +50251,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47769,6 +50266,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47786,6 +50284,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47800,6 +50299,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47817,6 +50317,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -47832,6 +50333,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -47891,6 +50393,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47905,6 +50408,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47965,6 +50469,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47979,6 +50484,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47996,6 +50502,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48010,6 +50517,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48027,6 +50535,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48041,6 +50550,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48058,6 +50568,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48072,6 +50583,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48089,6 +50601,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48103,6 +50616,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48120,6 +50634,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48134,6 +50649,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48151,6 +50667,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48165,6 +50682,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48224,6 +50742,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48238,6 +50757,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48297,6 +50817,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48311,6 +50832,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48328,6 +50850,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48342,6 +50865,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48402,6 +50926,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48416,6 +50941,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48433,6 +50959,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48447,6 +50974,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48507,6 +51035,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48521,6 +51050,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48538,6 +51068,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48552,6 +51083,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48569,6 +51101,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48583,6 +51116,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48600,6 +51134,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48614,6 +51149,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48631,6 +51167,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48645,6 +51182,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48705,6 +51243,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48719,6 +51258,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48736,6 +51276,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48750,6 +51291,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48767,6 +51309,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48781,6 +51324,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48798,6 +51342,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48812,6 +51357,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48871,6 +51417,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48885,6 +51432,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48902,6 +51450,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -48917,6 +51466,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -48976,6 +51526,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -48991,6 +51542,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49008,6 +51560,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49023,6 +51576,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49040,6 +51594,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49055,6 +51610,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49072,6 +51628,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49086,6 +51643,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -49146,6 +51704,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49161,6 +51720,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49178,6 +51738,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49193,6 +51754,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49210,6 +51772,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49225,6 +51788,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49242,6 +51806,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49256,6 +51821,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -49316,6 +51882,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49330,6 +51897,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49347,6 +51915,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49362,6 +51931,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49379,6 +51949,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49393,6 +51964,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49410,6 +51982,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49425,6 +51998,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49442,6 +52016,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49456,6 +52031,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49473,6 +52049,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49487,6 +52064,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49546,6 +52124,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49560,6 +52139,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49577,6 +52157,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ line1, line2, @@ -49598,6 +52179,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Stripe customer address., ConverterType: , @@ -49657,6 +52239,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, address @@ -49674,6 +52257,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Stripe customer billing information., ConverterType: , @@ -49691,6 +52275,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49705,6 +52290,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49764,6 +52350,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49779,6 +52366,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49796,6 +52384,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49811,6 +52400,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49828,6 +52418,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49843,6 +52434,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49860,6 +52452,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49875,6 +52468,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49892,6 +52486,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -49907,6 +52502,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -49966,6 +52562,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49980,6 +52577,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50039,6 +52637,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50053,6 +52652,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50070,6 +52670,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50084,6 +52685,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50143,6 +52745,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50158,6 +52761,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -50175,6 +52779,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Longlived, Shortlived @@ -50195,6 +52800,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter, @@ -50212,6 +52818,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50226,6 +52833,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50243,6 +52851,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50257,6 +52866,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50274,6 +52884,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50288,6 +52899,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50305,6 +52917,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50319,6 +52932,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50336,6 +52950,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ System, User @@ -50356,6 +52971,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.ConfiguredByJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ConfiguredByJsonConverter, @@ -50415,6 +53031,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50429,6 +53046,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50446,6 +53064,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50460,6 +53079,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50519,6 +53139,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50533,6 +53154,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50592,6 +53214,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50606,6 +53229,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50623,6 +53247,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50638,6 +53263,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -50655,6 +53281,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50669,6 +53296,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50686,6 +53314,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50701,6 +53330,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -50760,6 +53390,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50774,6 +53405,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50791,6 +53423,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50806,6 +53439,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -50823,6 +53457,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50837,6 +53472,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50854,6 +53490,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50868,6 +53505,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50885,6 +53523,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50899,6 +53538,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50916,6 +53556,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50931,6 +53572,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -50948,6 +53590,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50962,6 +53605,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: Default Value: false, @@ -50980,6 +53624,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -50995,6 +53640,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51012,6 +53658,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51027,6 +53674,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51044,6 +53692,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51059,6 +53708,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51118,6 +53768,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51132,6 +53783,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51149,6 +53801,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51163,6 +53816,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51180,6 +53834,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51194,6 +53849,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51253,6 +53909,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Dataset ], @@ -51271,6 +53928,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.TenantShareDatasetTokenTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.TenantShareDatasetTokenTypeJsonConverter, @@ -51288,6 +53946,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51302,6 +53961,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51319,6 +53979,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51333,6 +53994,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51350,6 +54012,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51364,6 +54027,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51381,6 +54045,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51396,6 +54061,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51456,6 +54122,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51470,6 +54137,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51529,6 +54197,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Run ], @@ -51547,6 +54216,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.TenantShareRunTokenTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.TenantShareRunTokenTypeJsonConverter, @@ -51564,6 +54234,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51578,6 +54249,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51595,6 +54267,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51609,6 +54282,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51626,6 +54300,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51640,6 +54315,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51657,6 +54333,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51672,6 +54349,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51689,6 +54367,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51704,6 +54383,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51721,6 +54401,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51736,6 +54417,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51753,6 +54435,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -51768,6 +54451,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -51828,6 +54512,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51842,6 +54527,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51901,6 +54587,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51915,6 +54602,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51974,6 +54662,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51988,6 +54677,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52005,6 +54695,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52019,6 +54710,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52036,6 +54728,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52050,6 +54743,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52067,6 +54761,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52081,6 +54776,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52098,6 +54794,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52112,6 +54809,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52171,6 +54869,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52185,6 +54884,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52202,6 +54902,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52217,6 +54918,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -52234,6 +54936,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -52249,6 +54952,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -52309,6 +55013,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52323,6 +55028,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52340,6 +55046,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52354,6 +55061,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52371,6 +55079,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52385,6 +55094,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52402,6 +55112,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52416,6 +55127,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52433,6 +55145,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52447,6 +55160,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52464,6 +55178,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52478,6 +55193,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52495,6 +55211,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52509,6 +55226,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52569,6 +55287,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52583,6 +55302,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52600,6 +55320,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52614,6 +55335,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52631,6 +55353,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52645,6 +55368,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52662,6 +55386,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52676,6 +55401,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52693,6 +55419,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52707,6 +55434,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52724,6 +55452,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52738,6 +55467,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52755,6 +55485,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52769,6 +55500,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52828,6 +55560,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52842,6 +55575,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -52860,6 +55594,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52874,6 +55609,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -52892,6 +55628,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52906,6 +55643,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: Default Value: 0, @@ -52967,6 +55705,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52981,6 +55720,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52998,6 +55738,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -53012,6 +55753,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53071,6 +55813,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53085,6 +55828,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53102,6 +55846,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53117,6 +55862,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53134,6 +55880,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53149,6 +55896,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53166,6 +55914,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53180,6 +55929,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53197,6 +55947,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53212,6 +55963,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53229,6 +55981,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53244,6 +55997,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53261,6 +56015,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53276,6 +56031,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53293,6 +56049,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53308,6 +56065,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53325,6 +56083,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53339,6 +56098,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53356,6 +56116,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53371,6 +56132,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53388,6 +56150,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53403,6 +56166,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53420,6 +56184,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53435,6 +56200,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53452,6 +56218,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53467,6 +56234,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53484,6 +56252,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53499,6 +56268,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53516,6 +56286,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53531,6 +56302,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53548,6 +56320,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53563,6 +56336,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53580,6 +56354,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53595,6 +56370,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53612,6 +56388,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53627,6 +56404,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53644,6 +56422,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53659,6 +56438,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53676,6 +56456,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53691,6 +56472,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53708,6 +56490,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53722,6 +56505,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53739,6 +56523,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53754,6 +56539,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53771,6 +56557,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53786,6 +56573,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53803,6 +56591,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53818,6 +56607,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53835,6 +56625,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53850,6 +56641,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53867,6 +56659,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53882,6 +56675,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53899,6 +56693,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53914,6 +56709,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53931,6 +56727,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53946,6 +56743,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -53963,6 +56761,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -53978,6 +56777,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54038,6 +56838,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54052,6 +56853,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54069,6 +56871,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54083,6 +56886,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54142,6 +56946,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54156,6 +56961,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54173,6 +56979,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54188,6 +56995,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54205,6 +57013,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54220,6 +57029,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54237,6 +57047,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54251,6 +57062,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54268,6 +57080,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54283,6 +57096,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54300,6 +57114,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54315,6 +57130,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54332,6 +57148,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54347,6 +57164,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54364,6 +57182,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54379,6 +57198,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54396,6 +57216,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54411,6 +57232,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54471,6 +57293,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54485,6 +57308,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54502,6 +57326,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54516,6 +57341,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54575,6 +57401,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54590,6 +57417,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54607,6 +57435,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54622,6 +57451,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54639,6 +57469,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54654,6 +57485,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54671,6 +57503,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54686,6 +57519,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54703,6 +57537,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54718,6 +57553,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54735,6 +57571,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54750,6 +57587,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54810,6 +57648,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54824,6 +57663,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54841,6 +57681,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54855,6 +57696,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54914,6 +57756,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54928,6 +57771,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54945,6 +57789,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54960,6 +57805,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -54977,6 +57823,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -54992,6 +57839,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55009,6 +57857,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55023,6 +57872,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55040,6 +57890,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55055,6 +57906,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55072,6 +57924,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55087,6 +57940,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55104,6 +57958,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55119,6 +57974,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55136,6 +57992,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55151,6 +58008,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55168,6 +58026,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55182,6 +58041,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55199,6 +58059,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55213,6 +58074,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55230,6 +58092,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55245,6 +58108,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55305,6 +58169,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55319,6 +58184,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55336,6 +58202,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55350,6 +58217,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55409,6 +58277,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55423,6 +58292,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55440,6 +58310,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55455,6 +58326,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55472,6 +58344,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55487,6 +58360,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55546,6 +58420,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55561,6 +58436,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55578,6 +58454,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55593,6 +58470,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55610,6 +58488,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55625,6 +58504,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55642,6 +58522,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55657,6 +58538,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55674,6 +58556,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55689,6 +58572,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55748,6 +58632,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55762,6 +58647,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55779,6 +58665,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55793,6 +58680,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55810,6 +58698,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55824,6 +58713,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55883,6 +58773,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Longlived, Shortlived @@ -55903,6 +58794,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter, @@ -55962,6 +58854,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -55977,6 +58870,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -55994,6 +58888,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Longlived, Shortlived @@ -56014,6 +58909,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.TraceTierJsonConverter, @@ -56073,6 +58969,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ MonthlyTraces, MonthlyLonglivedTraces @@ -56093,6 +58990,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.UsageLimitTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Type of usage limit., ConverterType: global::OpenApiGenerator.JsonConverters.UsageLimitTypeJsonConverter, @@ -56110,6 +59008,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56124,6 +59023,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56141,6 +59041,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56155,6 +59056,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56214,6 +59116,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ MonthlyTraces, MonthlyLonglivedTraces @@ -56234,6 +59137,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.UsageLimitTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Type of usage limit., ConverterType: global::OpenApiGenerator.JsonConverters.UsageLimitTypeJsonConverter, @@ -56251,6 +59155,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56265,6 +59170,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56282,6 +59188,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56296,6 +59203,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56313,6 +59221,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56327,6 +59236,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56344,6 +59254,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56358,6 +59269,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56375,6 +59287,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56389,6 +59302,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56449,6 +59363,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56463,6 +59378,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56480,6 +59396,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56494,6 +59411,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56553,6 +59471,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56567,6 +59486,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56584,6 +59504,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56598,6 +59519,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56615,6 +59537,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56629,6 +59552,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56688,6 +59612,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56702,6 +59627,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56719,6 +59645,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56733,6 +59660,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56750,6 +59678,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -56765,6 +59694,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -56824,6 +59754,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56838,6 +59769,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56897,6 +59829,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56911,6 +59844,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56928,6 +59862,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56942,6 +59877,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56959,6 +59895,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56973,6 +59910,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56990,6 +59928,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -57005,6 +59944,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -57064,6 +60004,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57078,6 +60019,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57095,6 +60037,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -57110,6 +60053,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -57127,6 +60071,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57141,6 +60086,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57158,6 +60104,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57172,6 +60119,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57189,6 +60137,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57203,6 +60152,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57220,6 +60170,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -57235,6 +60186,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -57294,6 +60246,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57308,6 +60261,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57325,6 +60279,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57340,6 +60295,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57357,6 +60313,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool, Chain, @@ -57387,6 +60344,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.CreateRunRequestRunTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.CreateRunRequestRunTypeJsonConverter, @@ -57404,6 +60362,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 3, Properties: null, EnumValues: null, @@ -57419,6 +60378,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3, @@ -57436,6 +60396,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 3, Properties: null, EnumValues: null, @@ -57451,6 +60412,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3, @@ -57468,6 +60430,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57483,6 +60446,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57500,6 +60464,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57515,6 +60480,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57532,6 +60498,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57547,6 +60514,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57564,6 +60532,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57579,6 +60548,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57596,6 +60566,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57611,6 +60582,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57628,6 +60600,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57643,6 +60616,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57660,6 +60634,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57675,6 +60650,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57692,6 +60668,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57707,6 +60684,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57724,6 +60702,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57739,6 +60718,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57756,6 +60736,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57771,6 +60752,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57788,6 +60770,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57803,6 +60786,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57820,6 +60804,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57835,6 +60820,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57852,6 +60838,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57867,6 +60854,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57884,6 +60872,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57899,6 +60888,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57916,6 +60906,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57931,6 +60922,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57991,6 +60983,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58005,6 +60998,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58022,6 +61016,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58036,6 +61031,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58053,6 +61049,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58067,6 +61064,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58084,6 +61082,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58098,6 +61097,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58115,6 +61115,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58129,6 +61130,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58146,6 +61148,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58160,6 +61163,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58177,6 +61181,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58191,6 +61196,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58250,6 +61256,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58264,6 +61271,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58281,6 +61289,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58295,6 +61304,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58354,6 +61364,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58368,6 +61379,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58385,6 +61397,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58399,6 +61412,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: , @@ -58417,6 +61431,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool, Chain, @@ -58447,6 +61462,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.BatchIngestRunsRequestPostRunTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.BatchIngestRunsRequestPostRunTypeJsonConverter, @@ -58464,6 +61480,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58479,6 +61496,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58496,6 +61514,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 3, Properties: null, EnumValues: null, @@ -58511,6 +61530,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3, @@ -58528,6 +61548,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58543,6 +61564,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58560,6 +61582,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58575,6 +61598,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58592,6 +61616,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58607,6 +61632,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58624,6 +61650,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58639,6 +61666,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58656,6 +61684,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58671,6 +61700,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58688,6 +61718,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58703,6 +61734,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58720,6 +61752,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58735,6 +61768,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58752,6 +61786,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58766,6 +61801,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58783,6 +61819,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58797,6 +61834,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58814,6 +61852,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -58828,6 +61867,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58845,6 +61885,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58860,6 +61901,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58877,6 +61919,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58892,6 +61935,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58909,6 +61953,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58924,6 +61969,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58941,6 +61987,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58956,6 +62003,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -58973,6 +62021,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -58988,6 +62037,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59048,6 +62098,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59062,6 +62113,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59079,6 +62131,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59093,6 +62146,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59110,6 +62164,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59124,6 +62179,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59141,6 +62197,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59155,6 +62212,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59172,6 +62230,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59186,6 +62245,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59203,6 +62263,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59217,6 +62278,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59234,6 +62296,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59248,6 +62311,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59307,6 +62371,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59321,6 +62386,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59338,6 +62404,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59352,6 +62419,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59369,6 +62437,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59384,6 +62453,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59401,6 +62471,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59416,6 +62487,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59433,6 +62505,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59448,6 +62521,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59465,6 +62539,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59480,6 +62555,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59497,6 +62573,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59512,6 +62589,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59529,6 +62607,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59544,6 +62623,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59561,6 +62641,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59576,6 +62657,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59593,6 +62675,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59608,6 +62691,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59625,6 +62709,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59640,6 +62725,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59657,6 +62743,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59672,6 +62759,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59689,6 +62777,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -59703,6 +62792,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59762,6 +62852,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59777,6 +62868,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59794,6 +62886,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59809,6 +62902,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59826,6 +62920,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59841,6 +62936,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59858,6 +62954,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 3, Properties: null, EnumValues: null, @@ -59873,6 +62970,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory3, @@ -59890,6 +62988,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59905,6 +63004,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59922,6 +63022,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59937,6 +63038,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59954,6 +63056,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -59969,6 +63072,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -59986,6 +63090,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -60001,6 +63106,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -60018,6 +63124,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -60033,6 +63140,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -60050,6 +63158,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -60065,6 +63174,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -60082,6 +63192,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -60097,6 +63208,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -60114,6 +63226,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -60129,6 +63242,7 @@ since public test project sharing is not yet shipped, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -60189,6 +63303,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60203,6 +63318,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60220,6 +63336,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60234,6 +63351,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60251,6 +63369,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60265,6 +63384,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60325,6 +63445,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60339,6 +63460,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60356,6 +63478,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60370,6 +63493,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60387,6 +63511,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60401,6 +63526,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60418,6 +63544,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60432,6 +63559,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60449,6 +63577,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60463,6 +63592,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60480,6 +63610,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60494,6 +63625,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60511,6 +63643,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60525,6 +63658,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60542,6 +63676,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60556,6 +63691,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60573,6 +63709,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60587,6 +63724,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60647,6 +63785,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60661,6 +63800,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60678,6 +63818,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60692,6 +63833,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60709,6 +63851,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60723,6 +63866,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60740,6 +63884,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60754,6 +63899,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60771,6 +63917,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60785,6 +63932,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60802,6 +63950,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60816,6 +63965,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60833,6 +63983,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60847,6 +63998,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60864,6 +64016,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60878,6 +64031,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60895,6 +64049,7 @@ since public test project sharing is not yet shipped, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60909,6 +64064,7 @@ since public test project sharing is not yet shipped, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/AnyOfs/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/AnyOfs/_.verified.txt index 220af37cad..f5030c91bd 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/AnyOfs/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/AnyOfs/_.verified.txt @@ -26,6 +26,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40,6 +41,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57,6 +59,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Stop, Length, @@ -79,6 +82,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.DoneReasonVariant2JsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -106,6 +110,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -120,6 +125,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -137,6 +143,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ CreatingSystemLayer, ParsingModelfile, @@ -159,6 +166,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.CreateModelStatusVariant2JsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -188,6 +196,7 @@ Example: pulling manifest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -202,6 +211,7 @@ Example: pulling manifest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -219,6 +229,7 @@ Example: pulling manifest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ PullingManifest, DownloadingDigestname, @@ -247,6 +258,7 @@ Example: pulling manifest, ConverterType: global::OpenApiGenerator.JsonConverters.PullModelStatusVariant2JsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -274,6 +286,7 @@ Example: pulling manifest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -288,6 +301,7 @@ Example: pulling manifest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -305,6 +319,7 @@ Example: pulling manifest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ RetrievingManifest, StartingUpload, @@ -329,6 +344,7 @@ Example: pulling manifest, ConverterType: global::OpenApiGenerator.JsonConverters.PushModelStatusVariant2JsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Methods/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Methods/_.verified.txt index 3e07733a4b..54fbd01750 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Methods/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Methods/_.verified.txt @@ -45,6 +45,7 @@ This endpoint returns the version of the Ollama server., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65,6 +66,7 @@ This endpoint returns the version of the Ollama server., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ version ], @@ -89,6 +91,7 @@ This endpoint returns the version of the Ollama server., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ version ], @@ -130,6 +133,7 @@ This endpoint returns the version of the Ollama server., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -144,6 +148,7 @@ This endpoint returns the version of the Ollama server., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -166,6 +171,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -180,6 +186,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The prompt to generate a response. @@ -199,6 +206,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -213,6 +221,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: (optional) a list of Base64-encoded images to include in the message (for multimodal models such as llava), ConverterType: , @@ -230,6 +239,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -244,6 +254,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The system prompt to (overrides what is defined in the Modelfile)., ConverterType: , @@ -261,6 +272,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -275,6 +287,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The full prompt or prompt template (overrides what is defined in the Modelfile)., ConverterType: , @@ -292,6 +305,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -306,6 +320,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The context parameter returned from a previous request to [generateCompletion], this can be used to keep a short conversational memory., ConverterType: , @@ -323,6 +338,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ num_keep, seed, @@ -367,6 +383,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Additional model parameters listed in the documentation for the Modelfile such as `temperature`., ConverterType: , @@ -384,6 +401,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Json ], @@ -402,6 +420,7 @@ Example: Why is the sky blue?, ConverterType: global::OpenApiGenerator.JsonConverters.ResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The format to return a response in. Currently the only accepted value is json. @@ -425,6 +444,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -439,6 +459,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If `true` no formatting will be applied to the prompt and no context will be returned. @@ -460,6 +481,7 @@ You may choose to use the `raw` parameter if you are specifying a full templated IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -474,6 +496,7 @@ You may choose to use the `raw` parameter if you are specifying a full templated ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -495,6 +518,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -509,6 +533,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: How long (in minutes) to keep the model loaded in memory. @@ -562,6 +587,7 @@ The final response object will include statistics and additional data from the r IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, prompt, @@ -594,6 +620,7 @@ The final response object will include statistics and additional data from the r IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, created_at, @@ -628,6 +655,7 @@ The final response object will include statistics and additional data from the r IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, prompt, @@ -660,6 +688,7 @@ The final response object will include statistics and additional data from the r IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, created_at, @@ -711,6 +740,7 @@ The final response object will include statistics and additional data from the r IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -725,6 +755,7 @@ The final response object will include statistics and additional data from the r ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -747,6 +778,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -761,6 +793,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The messages of the chat, this can be used to keep a chat memory, ConverterType: , @@ -778,6 +811,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Json ], @@ -796,6 +830,7 @@ Example: llama3:8b, ConverterType: global::OpenApiGenerator.JsonConverters.ResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The format to return a response in. Currently the only accepted value is json. @@ -819,6 +854,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ num_keep, seed, @@ -863,6 +899,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Additional model parameters listed in the documentation for the Modelfile such as `temperature`., ConverterType: , @@ -880,6 +917,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -894,6 +932,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -915,6 +954,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -929,6 +969,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: How long (in minutes) to keep the model loaded in memory. @@ -982,6 +1023,7 @@ This is a streaming endpoint, so there will be a series of responses. The final IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, messages, @@ -1009,6 +1051,7 @@ This is a streaming endpoint, so there will be a series of responses. The final IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ message, model, @@ -1043,6 +1086,7 @@ This is a streaming endpoint, so there will be a series of responses. The final IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, messages, @@ -1070,6 +1114,7 @@ This is a streaming endpoint, so there will be a series of responses. The final IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ message, model, @@ -1121,6 +1166,7 @@ This is a streaming endpoint, so there will be a series of responses. The final IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1135,6 +1181,7 @@ This is a streaming endpoint, so there will be a series of responses. The final ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -1157,6 +1204,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1171,6 +1219,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Text to generate embeddings for. @@ -1190,6 +1239,7 @@ Example: Here is an article about llamas..., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ num_keep, seed, @@ -1234,6 +1284,7 @@ Example: Here is an article about llamas..., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Additional model parameters listed in the documentation for the Modelfile such as `temperature`., ConverterType: , @@ -1251,6 +1302,7 @@ Example: Here is an article about llamas..., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1265,6 +1317,7 @@ Example: Here is an article about llamas..., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: How long (in minutes) to keep the model loaded in memory. @@ -1316,6 +1369,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, prompt, @@ -1341,6 +1395,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ embedding ], @@ -1365,6 +1420,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, prompt, @@ -1390,6 +1446,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ embedding ], @@ -1431,6 +1488,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1445,6 +1503,7 @@ How long (in minutes) to keep the model loaded in memory. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -1467,6 +1526,7 @@ Example: mario, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1481,6 +1541,7 @@ Example: mario, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the Modelfile. @@ -1500,6 +1561,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1514,6 +1576,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Path to the Modelfile (optional), ConverterType: , @@ -1531,6 +1594,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1545,6 +1609,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The quantization level of the model., ConverterType: , @@ -1562,6 +1627,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1576,6 +1642,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -1626,6 +1693,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, modelfile, @@ -1652,6 +1720,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status ], @@ -1676,6 +1745,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, modelfile, @@ -1702,6 +1772,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status ], @@ -1768,6 +1839,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1788,6 +1860,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ models ], @@ -1812,6 +1885,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ models ], @@ -1878,6 +1952,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1898,6 +1973,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ models ], @@ -1922,6 +1998,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ models ], @@ -1963,6 +2040,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1977,6 +2055,7 @@ It is recommended to set `modelfile` to the content of the Modelfile rather than ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -2026,6 +2105,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model ], @@ -2048,6 +2128,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ license, modelfile, @@ -2079,6 +2160,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model ], @@ -2101,6 +2183,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ license, modelfile, @@ -2149,6 +2232,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2163,6 +2247,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Name of the model to copy. @@ -2182,6 +2267,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2196,6 +2282,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Name of the new model. @@ -2242,6 +2329,7 @@ Example: llama3-backup, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ source, destination @@ -2265,6 +2353,7 @@ Example: llama3-backup, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2287,6 +2376,7 @@ Example: llama3-backup, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ source, destination @@ -2329,6 +2419,7 @@ Example: llama3-backup, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2343,6 +2434,7 @@ Example: llama3-backup, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -2392,6 +2484,7 @@ Example: llama3:13b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model ], @@ -2414,6 +2507,7 @@ Example: llama3:13b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2436,6 +2530,7 @@ Example: llama3:13b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model ], @@ -2477,6 +2572,7 @@ Example: llama3:13b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2491,6 +2587,7 @@ Example: llama3:13b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -2513,6 +2610,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2527,6 +2625,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -2550,6 +2649,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2564,6 +2664,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Ollama username., ConverterType: , @@ -2581,6 +2682,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2595,6 +2697,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Ollama password., ConverterType: , @@ -2612,6 +2715,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2626,6 +2730,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -2676,6 +2781,7 @@ Cancelled pulls are resumed from where they left off, and multiple calls will sh IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, insecure, @@ -2702,6 +2808,7 @@ Cancelled pulls are resumed from where they left off, and multiple calls will sh IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status, digest, @@ -2729,6 +2836,7 @@ Cancelled pulls are resumed from where they left off, and multiple calls will sh IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, insecure, @@ -2755,6 +2863,7 @@ Cancelled pulls are resumed from where they left off, and multiple calls will sh IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status, digest, @@ -2799,6 +2908,7 @@ Cancelled pulls are resumed from where they left off, and multiple calls will sh IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2813,6 +2923,7 @@ Cancelled pulls are resumed from where they left off, and multiple calls will sh ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the model to push in the form of <namespace>/<model>:<tag>. @@ -2832,6 +2943,7 @@ Example: mattw/pygmalion:latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2846,6 +2958,7 @@ Example: mattw/pygmalion:latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -2869,6 +2982,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2883,6 +2997,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Ollama username., ConverterType: , @@ -2900,6 +3015,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2914,6 +3030,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Ollama password., ConverterType: , @@ -2931,6 +3048,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2945,6 +3063,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -2995,6 +3114,7 @@ Requires registering for ollama.ai and adding a public key first., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, insecure, @@ -3021,6 +3141,7 @@ Requires registering for ollama.ai and adding a public key first., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status, digest, @@ -3048,6 +3169,7 @@ Requires registering for ollama.ai and adding a public key first., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, insecure, @@ -3074,6 +3196,7 @@ Requires registering for ollama.ai and adding a public key first., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status, digest, @@ -3118,6 +3241,7 @@ Requires registering for ollama.ai and adding a public key first., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3132,6 +3256,7 @@ Requires registering for ollama.ai and adding a public key first., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3181,6 +3306,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3201,6 +3327,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3241,6 +3368,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3255,6 +3383,7 @@ This is checking your Ollama server and not Ollama.ai., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3302,6 +3431,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -3322,6 +3452,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3344,6 +3475,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -3383,6 +3515,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3397,6 +3530,7 @@ This is checking your Ollama server and not Ollama.ai., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Given a prompt, the model will generate a completion., ConverterType: , @@ -3414,6 +3548,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3428,6 +3563,7 @@ This is checking your Ollama server and not Ollama.ai., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Given a list of messages comprising a conversation, the model will return a response., ConverterType: , @@ -3445,6 +3581,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3459,6 +3596,7 @@ This is checking your Ollama server and not Ollama.ai., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Get a vector representation of a given input., ConverterType: , @@ -3476,6 +3614,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3490,6 +3629,7 @@ This is checking your Ollama server and not Ollama.ai., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: List and describe the various models available., ConverterType: , @@ -3533,6 +3673,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3553,6 +3694,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3644,6 +3786,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3664,6 +3807,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3729,6 +3873,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3749,6 +3894,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3814,6 +3960,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3834,6 +3981,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3899,6 +4047,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3919,6 +4068,7 @@ This is checking your Ollama server and not Ollama.ai., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Models/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Models/_.verified.txt index ea8566dcfe..3539400d8e 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Models/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Models/_.verified.txt @@ -40,6 +40,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54,6 +55,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -76,6 +78,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -90,6 +93,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The prompt to generate a response. @@ -109,6 +113,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -123,6 +128,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: (optional) a list of Base64-encoded images to include in the message (for multimodal models such as llava), ConverterType: , @@ -140,6 +146,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -154,6 +161,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The system prompt to (overrides what is defined in the Modelfile)., ConverterType: , @@ -171,6 +179,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -185,6 +194,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The full prompt or prompt template (overrides what is defined in the Modelfile)., ConverterType: , @@ -202,6 +212,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -216,6 +227,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The context parameter returned from a previous request to [generateCompletion], this can be used to keep a short conversational memory., ConverterType: , @@ -233,6 +245,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ num_keep, seed, @@ -277,6 +290,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Additional model parameters listed in the documentation for the Modelfile such as `temperature`., ConverterType: , @@ -294,6 +308,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Json ], @@ -312,6 +327,7 @@ Example: Why is the sky blue?, ConverterType: global::OpenApiGenerator.JsonConverters.ResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The format to return a response in. Currently the only accepted value is json. @@ -335,6 +351,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -349,6 +366,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If `true` no formatting will be applied to the prompt and no context will be returned. @@ -370,6 +388,7 @@ You may choose to use the `raw` parameter if you are specifying a full templated IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -384,6 +403,7 @@ You may choose to use the `raw` parameter if you are specifying a full templated ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -405,6 +425,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -419,6 +440,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: How long (in minutes) to keep the model loaded in memory. @@ -485,6 +507,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -499,6 +522,7 @@ How long (in minutes) to keep the model loaded in memory. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens to keep from the prompt. @@ -518,6 +542,7 @@ Number of tokens to keep from the prompt. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -532,6 +557,7 @@ Number of tokens to keep from the prompt. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: 0) @@ -551,6 +577,7 @@ Sets the random number seed to use for generation. Setting this to a specific nu IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -565,6 +592,7 @@ Sets the random number seed to use for generation. Setting this to a specific nu ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Maximum number of tokens to predict when generating text. (Default: 128, -1 = infinite generation, -2 = fill context) @@ -584,6 +612,7 @@ Maximum number of tokens to predict when generating text. (Default: 128, -1 = in IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -598,6 +627,7 @@ Maximum number of tokens to predict when generating text. (Default: 128, -1 = in ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40) @@ -617,6 +647,7 @@ Reduces the probability of generating nonsense. A higher value (e.g. 100) will g IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -631,6 +662,7 @@ Reduces the probability of generating nonsense. A higher value (e.g. 100) will g ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9) @@ -650,6 +682,7 @@ Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -664,6 +697,7 @@ Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1) @@ -683,6 +717,7 @@ Tail free sampling is used to reduce the impact of less probable tokens from the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -697,6 +732,7 @@ Tail free sampling is used to reduce the impact of less probable tokens from the ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Typical p is used to reduce the impact of less probable tokens from the output. @@ -716,6 +752,7 @@ Typical p is used to reduce the impact of less probable tokens from the output. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -730,6 +767,7 @@ Typical p is used to reduce the impact of less probable tokens from the output. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx) @@ -749,6 +787,7 @@ Sets how far back for the model to look back to prevent repetition. (Default: 64 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -763,6 +802,7 @@ Sets how far back for the model to look back to prevent repetition. (Default: 64 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8) @@ -782,6 +822,7 @@ The temperature of the model. Increasing the temperature will make the model ans IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -796,6 +837,7 @@ The temperature of the model. Increasing the temperature will make the model ans ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1) @@ -815,6 +857,7 @@ Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penal IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -829,6 +872,7 @@ Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penal ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics. @@ -848,6 +892,7 @@ Positive values penalize new tokens based on whether they appear in the text so IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -862,6 +907,7 @@ Positive values penalize new tokens based on whether they appear in the text so ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. @@ -881,6 +927,7 @@ Positive values penalize new tokens based on their existing frequency in the tex IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -895,6 +942,7 @@ Positive values penalize new tokens based on their existing frequency in the tex ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enable Mirostat sampling for controlling perplexity. (default: 0, 0 = disabled, 1 = Mirostat, 2 = Mirostat 2.0) @@ -914,6 +962,7 @@ Enable Mirostat sampling for controlling perplexity. (default: 0, 0 = disabled, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -928,6 +977,7 @@ Enable Mirostat sampling for controlling perplexity. (default: 0, 0 = disabled, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0) @@ -947,6 +997,7 @@ Controls the balance between coherence and diversity of the output. A lower valu IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -961,6 +1012,7 @@ Controls the balance between coherence and diversity of the output. A lower valu ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1) @@ -980,6 +1032,7 @@ Influences how quickly the algorithm responds to feedback from the generated tex IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -994,6 +1047,7 @@ Influences how quickly the algorithm responds to feedback from the generated tex ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Penalize newlines in the output. (Default: false) @@ -1013,6 +1067,7 @@ Penalize newlines in the output. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1027,6 +1082,7 @@ Penalize newlines in the output. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence., ConverterType: , @@ -1044,6 +1100,7 @@ Penalize newlines in the output. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1058,6 +1115,7 @@ Penalize newlines in the output. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enable NUMA support. (Default: false) @@ -1077,6 +1135,7 @@ Enable NUMA support. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1091,6 +1150,7 @@ Enable NUMA support. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Sets the size of the context window used to generate the next token. @@ -1110,6 +1170,7 @@ Sets the size of the context window used to generate the next token. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1124,6 +1185,7 @@ Sets the size of the context window used to generate the next token. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Sets the number of batches to use for generation. (Default: 1) @@ -1143,6 +1205,7 @@ Sets the number of batches to use for generation. (Default: 1) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1157,6 +1220,7 @@ Sets the number of batches to use for generation. (Default: 1) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of layers to send to the GPU(s). On macOS it defaults to 1 to enable metal support, 0 to disable. @@ -1176,6 +1240,7 @@ The number of layers to send to the GPU(s). On macOS it defaults to 1 to enable IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1190,6 +1255,7 @@ The number of layers to send to the GPU(s). On macOS it defaults to 1 to enable ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The GPU to use for the main model. Default is 0. @@ -1209,6 +1275,7 @@ The GPU to use for the main model. Default is 0. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1223,6 +1290,7 @@ The GPU to use for the main model. Default is 0. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enable low VRAM mode. (Default: false) @@ -1242,6 +1310,7 @@ Enable low VRAM mode. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1256,6 +1325,7 @@ Enable low VRAM mode. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enable f16 key/value. (Default: false) @@ -1275,6 +1345,7 @@ Enable f16 key/value. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1289,6 +1360,7 @@ Enable f16 key/value. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enable logits all. (Default: false) @@ -1308,6 +1380,7 @@ Enable logits all. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1322,6 +1395,7 @@ Enable logits all. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enable vocab only. (Default: false) @@ -1341,6 +1415,7 @@ Enable vocab only. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1355,6 +1430,7 @@ Enable vocab only. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enable mmap. (Default: false) @@ -1374,6 +1450,7 @@ Enable mmap. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1388,6 +1465,7 @@ Enable mmap. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Enable mlock. (Default: false) @@ -1407,6 +1485,7 @@ Enable mlock. (Default: false) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1421,6 +1500,7 @@ Enable mlock. (Default: false) ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Sets the number of threads to use during computation. By default, Ollama will detect this for optimal performance. It is recommended to set this value to the number of physical CPU cores your system has (as opposed to the logical number of cores). @@ -1483,6 +1563,7 @@ Sets the number of threads to use during computation. By default, Ollama will de IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1497,6 +1578,7 @@ Sets the number of threads to use during computation. By default, Ollama will de ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1562,6 +1644,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1576,6 +1659,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1635,6 +1719,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1649,6 +1734,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -1671,6 +1757,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1685,6 +1772,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Date on which a model was created., ConverterType: , @@ -1702,6 +1790,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1716,6 +1805,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The response for a given prompt with a provided model. @@ -1735,6 +1825,7 @@ Example: The sky appears blue because of a phenomenon called Rayleigh scattering IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1749,6 +1840,7 @@ Example: The sky appears blue because of a phenomenon called Rayleigh scattering ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether the response has completed. @@ -1768,6 +1860,7 @@ Example: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1782,6 +1875,7 @@ Example: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An encoding of the conversation used in this response, this can be sent in the next request to keep a conversational memory. @@ -1802,6 +1896,7 @@ Example: [1, 2, 3], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1816,6 +1911,7 @@ Example: [1, 2, 3], ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Time spent generating the response. @@ -1835,6 +1931,7 @@ Example: 5589157167, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1849,6 +1946,7 @@ Example: 5589157167, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Time spent in nanoseconds loading the model. @@ -1868,6 +1966,7 @@ Example: 3013701500, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1882,6 +1981,7 @@ Example: 3013701500, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens in the prompt. @@ -1901,6 +2001,7 @@ Example: 46, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1915,6 +2016,7 @@ Example: 46, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Time spent in nanoseconds evaluating the prompt. @@ -1934,6 +2036,7 @@ Example: 1160282000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1948,6 +2051,7 @@ Example: 1160282000, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens the response. @@ -1967,6 +2071,7 @@ Example: 113, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1981,6 +2086,7 @@ Example: 113, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Time in nanoseconds spent generating the response. @@ -2042,6 +2148,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2056,6 +2163,7 @@ Example: 1325948000, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -2078,6 +2186,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2092,6 +2201,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The messages of the chat, this can be used to keep a chat memory, ConverterType: , @@ -2109,6 +2219,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Json ], @@ -2127,6 +2238,7 @@ Example: llama3:8b, ConverterType: global::OpenApiGenerator.JsonConverters.ResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The format to return a response in. Currently the only accepted value is json. @@ -2150,6 +2262,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ num_keep, seed, @@ -2194,6 +2307,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Additional model parameters listed in the documentation for the Modelfile such as `temperature`., ConverterType: , @@ -2211,6 +2325,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2225,6 +2340,7 @@ Note: it's important to instruct the model to use JSON in the prompt. Otherwise, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -2246,6 +2362,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2260,6 +2377,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: How long (in minutes) to keep the model loaded in memory. @@ -2326,6 +2444,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ role, content, @@ -2344,6 +2463,7 @@ How long (in minutes) to keep the model loaded in memory. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A message in the chat endpoint, ConverterType: , @@ -2361,6 +2481,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2375,6 +2496,7 @@ How long (in minutes) to keep the model loaded in memory. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -2397,6 +2519,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2411,6 +2534,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Date on which a model was created., ConverterType: , @@ -2428,6 +2552,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2442,6 +2567,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether the response has completed. @@ -2461,6 +2587,7 @@ Example: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2476,6 +2603,7 @@ Example: true, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Reason why the model is done generating a response., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -2493,6 +2621,7 @@ Example: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2507,6 +2636,7 @@ Example: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Time spent generating the response. @@ -2526,6 +2656,7 @@ Example: 5589157167, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2540,6 +2671,7 @@ Example: 5589157167, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Time spent in nanoseconds loading the model. @@ -2559,6 +2691,7 @@ Example: 3013701500, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2573,6 +2706,7 @@ Example: 3013701500, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens in the prompt. @@ -2592,6 +2726,7 @@ Example: 46, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2606,6 +2741,7 @@ Example: 46, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Time spent in nanoseconds evaluating the prompt. @@ -2625,6 +2761,7 @@ Example: 1160282000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2639,6 +2776,7 @@ Example: 1160282000, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens the response. @@ -2658,6 +2796,7 @@ Example: 113, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2672,6 +2811,7 @@ Example: 113, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Time in nanoseconds spent generating the response. @@ -2734,6 +2874,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2748,6 +2889,7 @@ Example: 1325948000, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2765,6 +2907,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2779,6 +2922,7 @@ Example: 1325948000, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2796,6 +2940,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2810,6 +2955,7 @@ Example: 1325948000, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2870,6 +3016,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2884,6 +3031,7 @@ Example: 1325948000, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2901,6 +3049,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2915,6 +3064,7 @@ Example: 1325948000, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2932,6 +3082,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2946,6 +3097,7 @@ Example: 1325948000, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3005,6 +3157,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ System, User, @@ -3027,6 +3180,7 @@ Example: 1325948000, ConverterType: global::OpenApiGenerator.JsonConverters.MessageRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the message, ConverterType: global::OpenApiGenerator.JsonConverters.MessageRoleJsonConverter, @@ -3044,6 +3198,7 @@ Example: 1325948000, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3058,6 +3213,7 @@ Example: 1325948000, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The content of the message @@ -3077,6 +3233,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3091,6 +3248,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: (optional) a list of Base64-encoded images to include in the message (for multimodal models such as llava), ConverterType: , @@ -3151,6 +3309,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3165,6 +3324,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3182,6 +3342,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3196,6 +3357,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3213,6 +3375,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3227,6 +3390,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3286,6 +3450,7 @@ Example: Why is the sky blue?, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3300,6 +3465,7 @@ Example: Why is the sky blue?, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -3322,6 +3488,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3336,6 +3503,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Text to generate embeddings for. @@ -3355,6 +3523,7 @@ Example: Here is an article about llamas..., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ num_keep, seed, @@ -3399,6 +3568,7 @@ Example: Here is an article about llamas..., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Additional model parameters listed in the documentation for the Modelfile such as `temperature`., ConverterType: , @@ -3416,6 +3586,7 @@ Example: Here is an article about llamas..., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3430,6 +3601,7 @@ Example: Here is an article about llamas..., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: How long (in minutes) to keep the model loaded in memory. @@ -3496,6 +3668,7 @@ How long (in minutes) to keep the model loaded in memory. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3510,6 +3683,7 @@ How long (in minutes) to keep the model loaded in memory. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The embedding for the prompt. @@ -3571,6 +3745,7 @@ Example: [0.5670403838157654, 0.009260174818336964, ...], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3585,6 +3760,7 @@ Example: [0.5670403838157654, 0.009260174818336964, ...], ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -3607,6 +3783,7 @@ Example: mario, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3621,6 +3798,7 @@ Example: mario, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the Modelfile. @@ -3640,6 +3818,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3654,6 +3833,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Path to the Modelfile (optional), ConverterType: , @@ -3671,6 +3851,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3685,6 +3866,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The quantization level of the model., ConverterType: , @@ -3702,6 +3884,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3716,6 +3899,7 @@ Example: FROM llama3\nSYSTEM You are mario from Super Mario Bros., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -3779,6 +3963,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -3794,6 +3979,7 @@ Default Value: true, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Status creating the model, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -3854,6 +4040,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3868,6 +4055,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3885,6 +4073,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3899,6 +4088,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3916,6 +4106,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3930,6 +4121,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3990,6 +4182,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4004,6 +4197,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4021,6 +4215,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4035,6 +4230,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4052,6 +4248,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4066,6 +4263,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4125,6 +4323,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4139,6 +4338,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: List of models available locally., ConverterType: , @@ -4198,6 +4398,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4212,6 +4413,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -4234,6 +4436,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4248,6 +4451,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Model modification date., ConverterType: , @@ -4265,6 +4469,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4279,6 +4484,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Size of the model on disk. @@ -4298,6 +4504,7 @@ Example: 7323310500, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4312,6 +4519,7 @@ Example: 7323310500, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's digest. @@ -4331,6 +4539,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ parent_model, format, @@ -4352,6 +4561,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Details about a model., ConverterType: , @@ -4411,6 +4621,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4425,6 +4636,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The parent model of the model., ConverterType: , @@ -4442,6 +4654,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4456,6 +4669,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The format of the model., ConverterType: , @@ -4473,6 +4687,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4487,6 +4702,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The family of the model., ConverterType: , @@ -4504,6 +4720,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4518,6 +4735,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The families of the model., ConverterType: , @@ -4535,6 +4753,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4549,6 +4768,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The size of the model's parameters., ConverterType: , @@ -4566,6 +4786,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4580,6 +4801,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The quantization level of the model., ConverterType: , @@ -4639,6 +4861,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4653,6 +4876,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The architecture of the model., ConverterType: , @@ -4670,6 +4894,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4684,6 +4909,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The file type of the model., ConverterType: , @@ -4701,6 +4927,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4715,6 +4942,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of parameters in the model., ConverterType: , @@ -4732,6 +4960,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4746,6 +4975,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of parameters in the model., ConverterType: , @@ -4805,6 +5035,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4819,6 +5050,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: List of running models., ConverterType: , @@ -4878,6 +5110,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4892,6 +5125,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -4914,6 +5148,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4928,6 +5163,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Size of the model on disk. @@ -4947,6 +5183,7 @@ Example: 7323310500, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4961,6 +5198,7 @@ Example: 7323310500, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's digest. @@ -4980,6 +5218,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ parent_model, format, @@ -5001,6 +5240,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Details about a model., ConverterType: , @@ -5018,6 +5258,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5032,6 +5273,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5049,6 +5291,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5063,6 +5306,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Size of the model on disk. @@ -5124,6 +5368,7 @@ Example: 7323310500, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5138,6 +5383,7 @@ Example: 7323310500, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -5202,6 +5448,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5216,6 +5463,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's license. @@ -5235,6 +5483,7 @@ Example: <contents of license block>, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5249,6 +5498,7 @@ Example: <contents of license block>, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The modelfile associated with the model. @@ -5268,6 +5518,7 @@ Example: Modelfile generated by \"ollama show\"\n# To build a new Modelfile base IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5282,6 +5533,7 @@ Example: Modelfile generated by \"ollama show\"\n# To build a new Modelfile base ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model parameters. @@ -5301,6 +5553,7 @@ Example: stop [INST]\nstop [/INST]\nstop <<SYS>>\nstop <</SYS& IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5315,6 +5568,7 @@ Example: stop [INST]\nstop [/INST]\nstop <<SYS>>\nstop <</SYS& ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The prompt template for the model. @@ -5334,6 +5588,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5348,6 +5603,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The system prompt for the model., ConverterType: , @@ -5365,6 +5621,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ parent_model, format, @@ -5386,6 +5643,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Details about a model., ConverterType: , @@ -5403,6 +5661,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ general.architecture, general.file_type, @@ -5422,6 +5681,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Details about a model., ConverterType: , @@ -5439,6 +5699,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5453,6 +5714,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The default messages for the model., ConverterType: , @@ -5512,6 +5774,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5526,6 +5789,7 @@ Example: [INST] {{ if and .First .System }}<<SYS>>{{ .System }}<& ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Name of the model to copy. @@ -5545,6 +5809,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5559,6 +5824,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Name of the new model. @@ -5620,6 +5886,7 @@ Example: llama3-backup, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5634,6 +5901,7 @@ Example: llama3-backup, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -5698,6 +5966,7 @@ Example: llama3:13b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5712,6 +5981,7 @@ Example: llama3:13b, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model name. @@ -5734,6 +6004,7 @@ Example: llama3:8b, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5748,6 +6019,7 @@ Example: llama3:8b, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -5771,6 +6043,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5785,6 +6058,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Ollama username., ConverterType: , @@ -5802,6 +6076,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5816,6 +6091,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Ollama password., ConverterType: , @@ -5833,6 +6109,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5847,6 +6124,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -5910,6 +6188,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -5925,6 +6204,7 @@ Default Value: true, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Status pulling the model. @@ -5944,6 +6224,7 @@ Example: pulling manifest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5958,6 +6239,7 @@ Example: pulling manifest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's digest. @@ -5977,6 +6259,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5991,6 +6274,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Total size of the model. @@ -6010,6 +6294,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6024,6 +6309,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Total bytes transferred. @@ -6092,6 +6378,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6106,6 +6393,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6123,6 +6411,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6137,6 +6426,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6154,6 +6444,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6168,6 +6459,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6185,6 +6477,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6199,6 +6492,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6216,6 +6510,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6230,6 +6525,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6247,6 +6543,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6261,6 +6558,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6321,6 +6619,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6335,6 +6634,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6352,6 +6652,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6366,6 +6667,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6383,6 +6685,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6397,6 +6700,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6414,6 +6718,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6428,6 +6733,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6445,6 +6751,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6459,6 +6766,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6476,6 +6784,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6490,6 +6799,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6549,6 +6859,7 @@ The number of files to be downloaded depends on the number of layers specified i IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6563,6 +6874,7 @@ The number of files to be downloaded depends on the number of layers specified i ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the model to push in the form of <namespace>/<model>:<tag>. @@ -6582,6 +6894,7 @@ Example: mattw/pygmalion:latest, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6596,6 +6909,7 @@ Example: mattw/pygmalion:latest, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -6619,6 +6933,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6633,6 +6948,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Ollama username., ConverterType: , @@ -6650,6 +6966,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6664,6 +6981,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Ollama password., ConverterType: , @@ -6681,6 +6999,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6695,6 +7014,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: true, IsDeprecated: false, Summary: @@ -6758,6 +7078,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6773,6 +7094,7 @@ Default Value: true, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Status pushing the model., ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2, @@ -6790,6 +7112,7 @@ Default Value: true, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6804,6 +7127,7 @@ Default Value: true, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: the model's digest @@ -6823,6 +7147,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6837,6 +7162,7 @@ Example: sha256:bc07c81de745696fdf5afca05e065818a8149fb0c77266fb584d9b2cba3711a, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: total size of the model @@ -6856,6 +7182,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6870,6 +7197,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Total bytes transferred. @@ -6932,6 +7260,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6946,6 +7275,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6963,6 +7293,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6977,6 +7308,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6994,6 +7326,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7008,6 +7341,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7025,6 +7359,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7039,6 +7374,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7099,6 +7435,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7113,6 +7450,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7130,6 +7468,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7144,6 +7483,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7161,6 +7501,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7175,6 +7516,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7192,6 +7534,7 @@ Example: 2142590208, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7206,6 +7549,7 @@ Example: 2142590208, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Types/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Types/_.verified.txt index dfb9909de9..5ad0163574 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Types/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Ollama/Types/_.verified.txt @@ -6,6 +6,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26,6 +27,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46,6 +48,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -66,6 +69,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ num_keep, seed, @@ -116,6 +120,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Json ], @@ -140,6 +145,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -160,6 +166,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -180,6 +187,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -200,6 +208,7 @@ IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -220,6 +229,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -240,6 +250,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -260,6 +271,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ role, content, @@ -284,6 +296,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -305,6 +318,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ System, User, @@ -333,6 +347,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -353,6 +368,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -374,6 +390,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -394,6 +411,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ parent_model, format, @@ -421,6 +439,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -441,6 +460,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ general.architecture, general.file_type, @@ -466,6 +486,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -487,6 +508,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -508,6 +530,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ version ], @@ -530,6 +553,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, prompt, @@ -562,6 +586,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, created_at, @@ -594,6 +619,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, messages, @@ -621,6 +647,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ message, model, @@ -653,6 +680,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, prompt, @@ -678,6 +706,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ embedding ], @@ -700,6 +729,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, modelfile, @@ -726,6 +756,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status ], @@ -748,6 +779,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ models ], @@ -770,6 +802,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ models ], @@ -792,6 +825,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model ], @@ -814,6 +848,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ license, modelfile, @@ -843,6 +878,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ source, destination @@ -866,6 +902,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model ], @@ -888,6 +925,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, insecure, @@ -914,6 +952,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status, digest, @@ -939,6 +978,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, insecure, @@ -965,6 +1005,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ status, digest, @@ -990,6 +1031,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/AnyOfs/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/AnyOfs/_.verified.txt index 50343f2a30..9d424f2ddc 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/AnyOfs/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/AnyOfs/_.verified.txt @@ -80,6 +80,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, text @@ -97,6 +98,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -114,6 +116,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, image_url @@ -131,6 +134,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -158,6 +162,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content, role, @@ -176,6 +181,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -193,6 +199,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content, role, @@ -211,6 +218,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -228,6 +236,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content, role, @@ -248,6 +257,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -265,6 +275,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ role, content, @@ -283,6 +294,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -300,6 +312,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ role, content, @@ -318,6 +331,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -353,6 +367,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ None, Auto, @@ -375,6 +390,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionToolChoiceOptionVariant1JsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -392,6 +408,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, function @@ -409,6 +426,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -442,6 +460,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ None, Auto @@ -462,6 +481,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.AssistantsApiResponseFormatOptionVariant1JsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -479,6 +499,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type ], @@ -495,6 +516,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -528,6 +550,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ None, Auto, @@ -550,6 +573,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: global::OpenApiGenerator.JsonConverters.AssistantsApiToolChoiceOptionVariant1JsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -567,6 +591,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, function @@ -584,6 +609,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -611,6 +637,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type ], @@ -627,6 +654,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -644,6 +672,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, static @@ -661,6 +690,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -708,6 +738,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 1, Properties: null, EnumValues: null, @@ -723,6 +754,7 @@ integrate the Assistants API with streaming. ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -740,6 +772,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 10, Properties: null, EnumValues: null, @@ -755,6 +788,7 @@ integrate the Assistants API with streaming. ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory10 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -772,6 +806,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 7, Properties: null, EnumValues: null, @@ -787,6 +822,7 @@ integrate the Assistants API with streaming. ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory7 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -804,6 +840,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 5, Properties: null, EnumValues: null, @@ -819,6 +856,7 @@ integrate the Assistants API with streaming. ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory5 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -836,6 +874,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ event, data @@ -853,6 +892,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -870,6 +910,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ event, data @@ -887,6 +928,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -914,6 +956,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -928,6 +971,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -955,6 +999,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -969,6 +1014,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -986,6 +1032,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1000,6 +1047,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1017,6 +1065,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1031,6 +1080,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1048,6 +1098,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1062,6 +1113,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1079,6 +1131,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1093,6 +1146,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1110,6 +1164,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1124,6 +1179,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1141,6 +1197,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1155,6 +1212,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1172,6 +1230,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1186,6 +1245,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1203,6 +1263,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1217,6 +1278,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1234,6 +1296,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1248,6 +1311,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1275,6 +1339,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1289,6 +1354,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1306,6 +1372,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1320,6 +1387,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1337,6 +1405,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1351,6 +1420,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1368,6 +1438,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1382,6 +1453,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1399,6 +1471,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1413,6 +1486,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1430,6 +1504,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1444,6 +1519,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1461,6 +1537,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1475,6 +1552,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1502,6 +1580,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1516,6 +1595,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1533,6 +1613,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1547,6 +1628,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1564,6 +1646,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1578,6 +1661,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1595,6 +1679,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1609,6 +1694,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1626,6 +1712,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1640,6 +1727,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1667,6 +1755,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1681,6 +1770,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1698,6 +1788,7 @@ integrate the Assistants API with streaming. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content, role, @@ -1718,6 +1809,7 @@ integrate the Assistants API with streaming. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/Methods/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/Methods/_.verified.txt index 7a98f5c3cc..01d4a01dd3 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/Methods/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/Methods/_.verified.txt @@ -18,6 +18,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32,6 +33,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of messages comprising the conversation so far. [Example Python code](https://cookbook.openai.com/examples/how_to_format_inputs_to_chatgpt_models)., ConverterType: , @@ -49,6 +51,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -64,6 +67,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. See the [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table for details on which models work with the Chat API. @@ -83,6 +87,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -97,6 +102,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -120,6 +126,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -134,6 +141,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -156,6 +164,7 @@ Accepts a JSON object that maps tokens (specified by their token ID in the token IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -170,6 +179,7 @@ Accepts a JSON object that maps tokens (specified by their token ID in the token ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -190,6 +200,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -204,6 +215,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability. `logprobs` must be set to `true` if this parameter is used., ConverterType: , @@ -221,6 +233,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -235,6 +248,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of [tokens](/tokenizer) that can be generated in the chat completion. @@ -256,6 +270,7 @@ The total length of input tokens and generated tokens is limited by the model's IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -270,6 +285,7 @@ The total length of input tokens and generated tokens is limited by the model's ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -291,6 +307,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -305,6 +322,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -328,6 +346,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -342,6 +361,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An object specifying the format that the model must output. Compatible with [GPT-4 Turbo](/docs/models/gpt-4-and-gpt-4-turbo) and all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. @@ -365,6 +385,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -379,6 +400,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: This feature is in Beta. @@ -400,6 +422,7 @@ Determinism is not guaranteed, and you should refer to the `system_fingerprint` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto, Default @@ -420,6 +443,7 @@ Determinism is not guaranteed, and you should refer to the `system_fingerprint` ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionRequestServiceTierJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the latency tier to use for processing the request. This parameter is relevant for customers subscribed to the scale tier service: @@ -443,6 +467,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -458,6 +483,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Up to 4 sequences where the API will stop generating further tokens. @@ -477,6 +503,7 @@ Up to 4 sequences where the API will stop generating further tokens. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -491,6 +518,7 @@ Up to 4 sequences where the API will stop generating further tokens. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -512,6 +540,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ include_usage ], @@ -528,6 +557,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Options for streaming response. Only set this when you set `stream: true`. @@ -547,6 +577,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -561,6 +592,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -585,6 +617,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -599,6 +632,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -623,6 +657,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -637,6 +672,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tools the model may call. Currently, only functions are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported. @@ -656,6 +692,7 @@ A list of tools the model may call. Currently, only functions are supported as a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -671,6 +708,7 @@ A list of tools the model may call. Currently, only functions are supported as a ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls which (if any) tool is called by the model. @@ -696,6 +734,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -710,6 +749,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use., ConverterType: , @@ -727,6 +767,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -741,6 +782,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -761,6 +803,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -776,6 +819,7 @@ Example: user-1234, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated in favor of `tool_choice`. @@ -802,6 +846,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -816,6 +861,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated in favor of `tools`. @@ -864,6 +910,7 @@ A list of functions the model may generate JSON inputs for. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ messages, model, @@ -908,6 +955,7 @@ A list of functions the model may generate JSON inputs for. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, choices, @@ -939,6 +987,7 @@ A list of functions the model may generate JSON inputs for. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ messages, model, @@ -983,6 +1032,7 @@ A list of functions the model may generate JSON inputs for. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, choices, @@ -1031,6 +1081,7 @@ A list of functions the model may generate JSON inputs for. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1046,6 +1097,7 @@ A list of functions the model may generate JSON inputs for. ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -1065,6 +1117,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 4, Properties: null, EnumValues: null, @@ -1080,6 +1133,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory4 }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: "<|endoftext|>", IsDeprecated: false, Summary: @@ -1103,6 +1157,7 @@ Default Value: <|endoftext|>, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1117,6 +1172,7 @@ Default Value: <|endoftext|>, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -1142,6 +1198,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1156,6 +1213,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -1177,6 +1235,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1191,6 +1250,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -1214,6 +1274,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1228,6 +1289,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -1252,6 +1314,7 @@ As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1266,6 +1329,7 @@ As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Include the log probabilities on the `logprobs` most likely output tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. @@ -1287,6 +1351,7 @@ The maximum value for `logprobs` is 5. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1301,6 +1366,7 @@ The maximum value for `logprobs` is 5. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 16, IsDeprecated: false, Summary: @@ -1325,6 +1391,7 @@ Example: 16, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1339,6 +1406,7 @@ Example: 16, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -1363,6 +1431,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1377,6 +1446,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -1400,6 +1470,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1414,6 +1485,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same `seed` and parameters should return the same result. @@ -1435,6 +1507,7 @@ Determinism is not guaranteed, and you should refer to the `system_fingerprint` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -1450,6 +1523,7 @@ Determinism is not guaranteed, and you should refer to the `system_fingerprint` ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. @@ -1469,6 +1543,7 @@ Up to 4 sequences where the API will stop generating further tokens. The returne IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1483,6 +1558,7 @@ Up to 4 sequences where the API will stop generating further tokens. The returne ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -1504,6 +1580,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ include_usage ], @@ -1520,6 +1597,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Options for streaming response. Only set this when you set `stream: true`. @@ -1539,6 +1617,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1553,6 +1632,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The suffix that comes after a completion of inserted text. @@ -1575,6 +1655,7 @@ Example: test., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1589,6 +1670,7 @@ Example: test., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -1613,6 +1695,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1627,6 +1710,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -1651,6 +1735,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1665,6 +1750,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -1712,6 +1798,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, prompt, @@ -1751,6 +1838,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, choices, @@ -1781,6 +1869,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, prompt, @@ -1820,6 +1909,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, choices, @@ -1867,6 +1957,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1881,6 +1972,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A text description of the desired image(s). The maximum length is 1000 characters for `dall-e-2` and 4000 characters for `dall-e-3`. @@ -1900,6 +1992,7 @@ Example: A cute baby sea otter, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -1915,6 +2008,7 @@ Example: A cute baby sea otter, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestModel.DallE2, IsDeprecated: false, Summary: @@ -1936,6 +2030,7 @@ Example: dall-e-3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1950,6 +2045,7 @@ Example: dall-e-3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -1971,6 +2067,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Standard, Hd @@ -1991,6 +2088,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageRequestQualityJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestQuality.Standard, IsDeprecated: false, Summary: @@ -2012,6 +2110,7 @@ Example: standard, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Url, B64Json @@ -2032,6 +2131,7 @@ Example: standard, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestResponseFormat.Url, IsDeprecated: false, Summary: @@ -2053,6 +2153,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ x256x256, x512x512, @@ -2079,6 +2180,7 @@ Example: url, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageRequestSizeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestSize.x1024x1024, IsDeprecated: false, Summary: @@ -2100,6 +2202,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Vivid, Natural @@ -2120,6 +2223,7 @@ Example: 1024x1024, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageRequestStyleJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestStyle.Vivid, IsDeprecated: false, Summary: @@ -2141,6 +2245,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2155,6 +2260,7 @@ Example: vivid, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -2202,6 +2308,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ prompt, model, @@ -2231,6 +2338,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created, data @@ -2256,6 +2364,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ prompt, model, @@ -2285,6 +2394,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created, data @@ -2327,6 +2437,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -2341,6 +2452,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask., ConverterType: , @@ -2358,6 +2470,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2372,6 +2485,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask., ConverterType: , @@ -2389,6 +2503,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2403,6 +2518,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A text description of the desired image(s). The maximum length is 1000 characters. @@ -2422,6 +2538,7 @@ Example: A cute baby sea otter wearing a beret, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -2436,6 +2553,7 @@ Example: A cute baby sea otter wearing a beret, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`., ConverterType: , @@ -2453,6 +2571,7 @@ Example: A cute baby sea otter wearing a beret, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2467,6 +2586,7 @@ Example: A cute baby sea otter wearing a beret, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`., ConverterType: , @@ -2484,6 +2604,7 @@ Example: A cute baby sea otter wearing a beret, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2499,6 +2620,7 @@ Example: A cute baby sea otter wearing a beret, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageEditRequestModel.DallE2, IsDeprecated: false, Summary: @@ -2520,6 +2642,7 @@ Example: dall-e-2, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2534,6 +2657,7 @@ Example: dall-e-2, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -2555,6 +2679,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ x256x256, x512x512, @@ -2577,6 +2702,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageEditRequestSizeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageEditRequestSize.x1024x1024, IsDeprecated: false, Summary: @@ -2598,6 +2724,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Url, B64Json @@ -2618,6 +2745,7 @@ Example: 1024x1024, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageEditRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageEditRequestResponseFormat.Url, IsDeprecated: false, Summary: @@ -2639,6 +2767,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2653,6 +2782,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -2700,6 +2830,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ image, prompt, @@ -2729,6 +2860,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created, data @@ -2754,6 +2886,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ image, prompt, @@ -2783,6 +2916,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created, data @@ -2825,6 +2959,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -2839,6 +2974,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square., ConverterType: , @@ -2856,6 +2992,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2870,6 +3007,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square., ConverterType: , @@ -2887,6 +3025,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -2902,6 +3041,7 @@ Example: user-1234, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageVariationRequestModel.DallE2, IsDeprecated: false, Summary: @@ -2923,6 +3063,7 @@ Example: dall-e-2, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2937,6 +3078,7 @@ Example: dall-e-2, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -2958,6 +3100,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Url, B64Json @@ -2978,6 +3121,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageVariationRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageVariationRequestResponseFormat.Url, IsDeprecated: false, Summary: @@ -2999,6 +3143,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ x256x256, x512x512, @@ -3021,6 +3166,7 @@ Example: url, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageVariationRequestSizeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageVariationRequestSize.x1024x1024, IsDeprecated: false, Summary: @@ -3042,6 +3188,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3056,6 +3203,7 @@ Example: 1024x1024, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -3103,6 +3251,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ image, model, @@ -3130,6 +3279,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created, data @@ -3155,6 +3305,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ image, model, @@ -3182,6 +3333,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ created, data @@ -3224,6 +3376,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 4, Properties: null, EnumValues: null, @@ -3239,6 +3392,7 @@ Example: user-1234, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory4 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. The input must not exceed the max input tokens for the model (8192 tokens for `text-embedding-ada-002`), cannot be an empty string, and any array must be 2048 dimensions or less. [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) for counting tokens. @@ -3259,6 +3413,7 @@ Example: The quick brown fox jumped over the lazy dog, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -3274,6 +3429,7 @@ Example: The quick brown fox jumped over the lazy dog, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -3294,6 +3450,7 @@ Example: text-embedding-3-small, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Float, Base64 @@ -3314,6 +3471,7 @@ Example: text-embedding-3-small, ConverterType: global::OpenApiGenerator.JsonConverters.CreateEmbeddingRequestEncodingFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateEmbeddingRequestEncodingFormat.Float, IsDeprecated: false, Summary: @@ -3335,6 +3493,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3349,6 +3508,7 @@ Example: float, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of dimensions the resulting output embeddings should have. Only supported in `text-embedding-3` and later models. @@ -3368,6 +3528,7 @@ The number of dimensions the resulting output embeddings should have. Only suppo IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3382,6 +3543,7 @@ The number of dimensions the resulting output embeddings should have. Only suppo ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -3429,6 +3591,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, model, @@ -3455,6 +3618,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, model, @@ -3482,6 +3646,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, model, @@ -3508,6 +3673,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, model, @@ -3552,6 +3718,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -3567,6 +3734,7 @@ Example: user-1234, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` @@ -3586,6 +3754,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3600,6 +3769,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text to generate audio for. The maximum length is 4096 characters., ConverterType: , @@ -3617,6 +3787,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Alloy, Echo, @@ -3645,6 +3816,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` ConverterType: global::OpenApiGenerator.JsonConverters.CreateSpeechRequestVoiceJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The voice to use when generating the audio. Supported voices are `alloy`, `echo`, `fable`, `onyx`, `nova`, and `shimmer`. Previews of the voices are available in the [Text to speech guide](/docs/guides/text-to-speech/voice-options)., ConverterType: global::OpenApiGenerator.JsonConverters.CreateSpeechRequestVoiceJsonConverter, @@ -3662,6 +3834,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Mp3, Opus, @@ -3690,6 +3863,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` ConverterType: global::OpenApiGenerator.JsonConverters.CreateSpeechRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateSpeechRequestResponseFormat.Mp3, IsDeprecated: false, Summary: @@ -3710,6 +3884,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3724,6 +3899,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -3772,6 +3948,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, input, @@ -3798,6 +3975,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -3820,6 +3998,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, input, @@ -3846,6 +4025,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -3885,6 +4065,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -3899,6 +4080,7 @@ Default Value: 1, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -3918,6 +4100,7 @@ The audio file object (not file name) to transcribe, in one of these formats: fl IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3932,6 +4115,7 @@ The audio file object (not file name) to transcribe, in one of these formats: fl ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -3951,6 +4135,7 @@ The audio file object (not file name) to transcribe, in one of these formats: fl IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -3966,6 +4151,7 @@ The audio file object (not file name) to transcribe, in one of these formats: fl ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. Only `whisper-1` (which is powered by our open source Whisper V2 model) is currently available. @@ -3986,6 +4172,7 @@ Example: whisper-1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4000,6 +4187,7 @@ Example: whisper-1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. @@ -4019,6 +4207,7 @@ The language of the input audio. Supplying the input language in [ISO-639-1](htt IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4033,6 +4222,7 @@ The language of the input audio. Supplying the input language in [ISO-639-1](htt ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. @@ -4052,6 +4242,7 @@ An optional text to guide the model's style or continue a previous audio segment IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Json, Text, @@ -4078,6 +4269,7 @@ An optional text to guide the model's style or continue a previous audio segment ConverterType: global::OpenApiGenerator.JsonConverters.CreateTranscriptionRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateTranscriptionRequestResponseFormat.Json, IsDeprecated: false, Summary: @@ -4099,6 +4291,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4113,6 +4306,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -4134,6 +4328,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4148,6 +4343,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -4196,6 +4392,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, model, @@ -4224,6 +4421,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -4247,6 +4445,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, model, @@ -4275,6 +4474,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -4315,6 +4515,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -4329,6 +4530,7 @@ Default Value: [segment], ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The audio file object (not file name) translate, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -4348,6 +4550,7 @@ The audio file object (not file name) translate, in one of these formats: flac, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4362,6 +4565,7 @@ The audio file object (not file name) translate, in one of these formats: flac, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The audio file object (not file name) translate, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -4381,6 +4585,7 @@ The audio file object (not file name) translate, in one of these formats: flac, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -4396,6 +4601,7 @@ The audio file object (not file name) translate, in one of these formats: flac, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. Only `whisper-1` (which is powered by our open source Whisper V2 model) is currently available. @@ -4416,6 +4622,7 @@ Example: whisper-1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4430,6 +4637,7 @@ Example: whisper-1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. @@ -4449,6 +4657,7 @@ An optional text to guide the model's style or continue a previous audio segment IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4463,6 +4672,7 @@ An optional text to guide the model's style or continue a previous audio segment ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "json", IsDeprecated: false, Summary: @@ -4484,6 +4694,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4498,6 +4709,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -4546,6 +4758,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, model, @@ -4572,6 +4785,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -4595,6 +4809,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, model, @@ -4621,6 +4836,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -4661,6 +4877,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4675,6 +4892,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -4721,6 +4939,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4741,6 +4960,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, object @@ -4766,6 +4986,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, object @@ -4808,6 +5029,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -4822,6 +5044,7 @@ Default Value: 0, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The File object (not file name) to be uploaded. @@ -4841,6 +5064,7 @@ The File object (not file name) to be uploaded. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4855,6 +5079,7 @@ The File object (not file name) to be uploaded. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The File object (not file name) to be uploaded. @@ -4874,6 +5099,7 @@ The File object (not file name) to be uploaded. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Assistants, Batch, @@ -4898,6 +5124,7 @@ The File object (not file name) to be uploaded. ConverterType: global::OpenApiGenerator.JsonConverters.CreateFileRequestPurposeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The intended purpose of the uploaded file. @@ -4956,6 +5183,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, purpose @@ -4979,6 +5207,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, bytes, @@ -5010,6 +5239,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file, purpose @@ -5033,6 +5263,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, bytes, @@ -5081,6 +5312,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5095,6 +5327,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5142,6 +5375,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5162,6 +5396,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -5188,6 +5423,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -5231,6 +5467,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5245,6 +5482,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5291,6 +5529,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5311,6 +5550,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, bytes, @@ -5342,6 +5582,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, bytes, @@ -5390,6 +5631,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5404,6 +5646,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5450,6 +5693,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5470,6 +5714,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5492,6 +5737,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5531,6 +5777,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -5546,6 +5793,7 @@ Please [contact us](https://help.openai.com/) if you need to increase these stor ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the model to fine-tune. You can select one of the @@ -5567,6 +5815,7 @@ Example: gpt-3.5-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5581,6 +5830,7 @@ Example: gpt-3.5-turbo, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of an uploaded file that contains training data. @@ -5609,6 +5859,7 @@ Example: file-abc123, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5623,6 +5874,7 @@ Example: file-abc123, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The hyperparameters used for the fine-tuning job., ConverterType: , @@ -5640,6 +5892,7 @@ Example: file-abc123, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5654,6 +5907,7 @@ Example: file-abc123, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A string of up to 18 characters that will be added to your fine-tuned model name. @@ -5675,6 +5929,7 @@ For example, a `suffix` of "custom-model-name" would produce a model name like ` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5689,6 +5944,7 @@ For example, a `suffix` of "custom-model-name" would produce a model name like ` ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of an uploaded file that contains validation data. @@ -5718,6 +5974,7 @@ Example: file-abc123, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5732,6 +5989,7 @@ Example: file-abc123, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of integrations to enable for your fine-tuning job., ConverterType: , @@ -5749,6 +6007,7 @@ Example: file-abc123, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5763,6 +6022,7 @@ Example: file-abc123, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The seed controls the reproducibility of the job. Passing in the same seed and job parameters should produce the same results, but may differ in rare cases. @@ -5817,6 +6077,7 @@ Response includes details of the enqueued job including job status and the name IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, training_file, @@ -5845,6 +6106,7 @@ Response includes details of the enqueued job including job status and the name IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -5885,6 +6147,7 @@ Response includes details of the enqueued job including job status and the name IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, training_file, @@ -5913,6 +6176,7 @@ Response includes details of the enqueued job including job status and the name IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -5970,6 +6234,7 @@ Response includes details of the enqueued job including job status and the name IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5984,6 +6249,7 @@ Response includes details of the enqueued job including job status and the name ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6004,6 +6270,7 @@ Response includes details of the enqueued job including job status and the name IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6018,6 +6285,7 @@ Response includes details of the enqueued job including job status and the name ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6067,6 +6335,7 @@ List your organization's fine-tuning jobs IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6087,6 +6356,7 @@ List your organization's fine-tuning jobs IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, has_more, @@ -6113,6 +6383,7 @@ List your organization's fine-tuning jobs IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, has_more, @@ -6156,6 +6427,7 @@ List your organization's fine-tuning jobs IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6170,6 +6442,7 @@ List your organization's fine-tuning jobs ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -6220,6 +6493,7 @@ Get info about a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6240,6 +6514,7 @@ Get info about a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -6280,6 +6555,7 @@ Get info about a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -6337,6 +6613,7 @@ Get info about a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6351,6 +6628,7 @@ Get info about a fine-tuning job. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -6371,6 +6649,7 @@ Get info about a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6385,6 +6664,7 @@ Get info about a fine-tuning job. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6405,6 +6685,7 @@ Get info about a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6419,6 +6700,7 @@ Get info about a fine-tuning job. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6468,6 +6750,7 @@ Get status updates for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6488,6 +6771,7 @@ Get status updates for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, object @@ -6513,6 +6797,7 @@ Get status updates for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, object @@ -6555,6 +6840,7 @@ Get status updates for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6569,6 +6855,7 @@ Get status updates for a fine-tuning job. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -6618,6 +6905,7 @@ Immediately cancel a fine-tune job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6638,6 +6926,7 @@ Immediately cancel a fine-tune job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -6678,6 +6967,7 @@ Immediately cancel a fine-tune job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created_at, @@ -6735,6 +7025,7 @@ Immediately cancel a fine-tune job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6749,6 +7040,7 @@ Immediately cancel a fine-tune job. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -6769,6 +7061,7 @@ Immediately cancel a fine-tune job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6783,6 +7076,7 @@ Immediately cancel a fine-tune job. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6803,6 +7097,7 @@ Immediately cancel a fine-tune job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6817,6 +7112,7 @@ Immediately cancel a fine-tune job. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -6866,6 +7162,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6886,6 +7183,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, object, @@ -6914,6 +7212,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, object, @@ -6984,6 +7283,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7004,6 +7304,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data @@ -7029,6 +7330,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data @@ -7071,6 +7373,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7085,6 +7388,7 @@ List checkpoints for a fine-tuning job. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -7131,6 +7435,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7151,6 +7456,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created, @@ -7178,6 +7484,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, created, @@ -7222,6 +7529,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7236,6 +7544,7 @@ List checkpoints for a fine-tuning job. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -7283,6 +7592,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7303,6 +7613,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -7329,6 +7640,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -7372,6 +7684,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -7387,6 +7700,7 @@ List checkpoints for a fine-tuning job. ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The input text to classify, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -7404,6 +7718,7 @@ List checkpoints for a fine-tuning job. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7419,6 +7734,7 @@ List checkpoints for a fine-tuning job. ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateModerationRequestModel.TextModerationLatest, IsDeprecated: false, Summary: @@ -7470,6 +7786,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, model @@ -7493,6 +7810,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, model, @@ -7519,6 +7837,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, model @@ -7542,6 +7861,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, model, @@ -7585,6 +7905,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7599,6 +7920,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7620,6 +7942,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Asc, Desc @@ -7640,6 +7963,7 @@ Example: text-moderation-stable, ConverterType: global::OpenApiGenerator.JsonConverters.ListAssistantsOrderJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7661,6 +7985,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7675,6 +8000,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7695,6 +8021,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7709,6 +8036,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -7755,6 +8083,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7775,6 +8104,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -7803,6 +8133,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -7848,6 +8179,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -7863,6 +8195,7 @@ Example: text-moderation-stable, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -7883,6 +8216,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7897,6 +8231,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the assistant. The maximum length is 256 characters. @@ -7916,6 +8251,7 @@ The name of the assistant. The maximum length is 256 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7930,6 +8266,7 @@ The name of the assistant. The maximum length is 256 characters. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The description of the assistant. The maximum length is 512 characters. @@ -7949,6 +8286,7 @@ The description of the assistant. The maximum length is 512 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7963,6 +8301,7 @@ The description of the assistant. The maximum length is 512 characters. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The system instructions that the assistant uses. The maximum length is 256,000 characters. @@ -7982,6 +8321,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7996,6 +8336,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. @@ -8015,6 +8356,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8029,6 +8371,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -8048,6 +8391,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8062,6 +8406,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -8082,6 +8427,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8096,6 +8442,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -8118,6 +8465,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8132,6 +8480,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -8156,6 +8505,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -8171,6 +8521,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -8221,6 +8572,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, name, @@ -8252,6 +8604,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -8288,6 +8641,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, name, @@ -8319,6 +8673,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -8372,6 +8727,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8386,6 +8742,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -8432,6 +8789,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8452,6 +8810,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -8488,6 +8847,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -8541,6 +8901,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8555,6 +8916,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -8575,6 +8937,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 1, Properties: null, EnumValues: null, @@ -8590,6 +8953,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -8609,6 +8973,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8623,6 +8988,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the assistant. The maximum length is 256 characters. @@ -8642,6 +9008,7 @@ The name of the assistant. The maximum length is 256 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8656,6 +9023,7 @@ The name of the assistant. The maximum length is 256 characters. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The description of the assistant. The maximum length is 512 characters. @@ -8675,6 +9043,7 @@ The description of the assistant. The maximum length is 512 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8689,6 +9058,7 @@ The description of the assistant. The maximum length is 512 characters. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The system instructions that the assistant uses. The maximum length is 256,000 characters. @@ -8708,6 +9078,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8722,6 +9093,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. @@ -8741,6 +9113,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8755,6 +9128,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -8774,6 +9148,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8788,6 +9163,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -8808,6 +9184,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8822,6 +9199,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -8843,6 +9221,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -8857,6 +9236,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -8881,6 +9261,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -8896,6 +9277,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -8946,6 +9328,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, name, @@ -8977,6 +9360,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -9013,6 +9397,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ model, name, @@ -9044,6 +9429,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -9097,6 +9483,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9111,6 +9498,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -9158,6 +9546,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9178,6 +9567,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -9204,6 +9594,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -9247,6 +9638,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9261,6 +9653,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [messages](/docs/api-reference/messages) to start the thread with., ConverterType: , @@ -9278,6 +9671,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9292,6 +9686,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -9311,6 +9706,7 @@ A set of resources that are made available to the assistant's tools in this thre IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9325,6 +9721,7 @@ A set of resources that are made available to the assistant's tools in this thre ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -9372,6 +9769,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ messages, tool_resources, @@ -9396,6 +9794,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -9424,6 +9823,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ messages, tool_resources, @@ -9448,6 +9848,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -9493,6 +9894,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9507,6 +9909,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -9553,6 +9956,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9573,6 +9977,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -9601,6 +10006,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -9646,6 +10052,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9660,6 +10067,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -9680,6 +10088,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9694,6 +10103,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -9713,6 +10123,7 @@ A set of resources that are made available to the assistant's tools in this thre IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9727,6 +10138,7 @@ A set of resources that are made available to the assistant's tools in this thre ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -9774,6 +10186,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tool_resources, metadata @@ -9797,6 +10210,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -9825,6 +10239,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tool_resources, metadata @@ -9848,6 +10263,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -9893,6 +10309,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9907,6 +10324,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -9954,6 +10372,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9974,6 +10393,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -10000,6 +10420,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -10043,6 +10464,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10057,6 +10479,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -10077,6 +10500,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10091,6 +10515,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10112,6 +10537,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Asc, Desc @@ -10132,6 +10558,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.ListMessagesOrderJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10153,6 +10580,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10167,6 +10595,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10187,6 +10616,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10201,6 +10631,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10221,6 +10652,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10235,6 +10667,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -10281,6 +10714,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10301,6 +10735,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -10329,6 +10764,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -10374,6 +10810,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10388,6 +10825,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -10408,6 +10846,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ User, Assistant @@ -10428,6 +10867,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.CreateMessageRequestRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the entity that is creating the message. Allowed values include: @@ -10449,6 +10889,7 @@ The role of the entity that is creating the message. Allowed values include: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -10464,6 +10905,7 @@ The role of the entity that is creating the message. Allowed values include: ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -10481,6 +10923,7 @@ The role of the entity that is creating the message. Allowed values include: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10495,6 +10938,7 @@ The role of the entity that is creating the message. Allowed values include: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of files attached to the message, and the tools they should be added to., ConverterType: , @@ -10512,6 +10956,7 @@ The role of the entity that is creating the message. Allowed values include: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10526,6 +10971,7 @@ The role of the entity that is creating the message. Allowed values include: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -10573,6 +11019,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ role, content, @@ -10598,6 +11045,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -10635,6 +11083,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ role, content, @@ -10660,6 +11109,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -10714,6 +11164,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10728,6 +11179,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -10748,6 +11200,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10762,6 +11215,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -10808,6 +11262,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10828,6 +11283,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -10865,6 +11321,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -10919,6 +11376,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10933,6 +11391,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -10953,6 +11412,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10967,6 +11427,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -10987,6 +11448,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11001,6 +11463,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -11048,6 +11511,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ metadata ], @@ -11070,6 +11534,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -11107,6 +11572,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ metadata ], @@ -11129,6 +11595,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -11183,6 +11650,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11197,6 +11665,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -11217,6 +11686,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11231,6 +11701,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -11278,6 +11749,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11298,6 +11770,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -11324,6 +11797,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -11367,6 +11841,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11381,6 +11856,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [assistant](/docs/api-reference/assistants) to use to execute this run., ConverterType: , @@ -11398,6 +11874,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ messages, tool_resources, @@ -11416,6 +11893,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11433,6 +11911,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -11448,6 +11927,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [Model](/docs/api-reference/models) to be used to execute this run. If a value is provided here, it will override the model associated with the assistant. If not, the model associated with the assistant will be used. @@ -11467,6 +11947,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11481,6 +11962,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Override the default system message of the assistant. This is useful for modifying the behavior on a per-run basis., ConverterType: , @@ -11498,6 +11980,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11512,6 +11995,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis., ConverterType: , @@ -11529,6 +12013,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11543,6 +12028,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -11562,6 +12048,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11576,6 +12063,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -11596,6 +12084,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11610,6 +12099,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -11631,6 +12121,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11645,6 +12136,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -11666,6 +12158,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11680,6 +12173,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message. @@ -11699,6 +12193,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11713,6 +12208,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of prompt tokens that may be used over the course of the run. The run will make a best effort to use only the number of prompt tokens specified, across multiple turns of the run. If the run exceeds the number of prompt tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info. @@ -11732,6 +12228,7 @@ The maximum number of prompt tokens that may be used over the course of the run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11746,6 +12243,7 @@ The maximum number of prompt tokens that may be used over the course of the run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of completion tokens that may be used over the course of the run. The run will make a best effort to use only the number of completion tokens specified, across multiple turns of the run. If the run exceeds the number of completion tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info. @@ -11765,6 +12263,7 @@ The maximum number of completion tokens that may be used over the course of the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, last_messages @@ -11782,6 +12281,7 @@ The maximum number of completion tokens that may be used over the course of the ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls for how a thread will be truncated prior to the run. Use this to control the intial context window of the run., ConverterType: , @@ -11799,6 +12299,7 @@ The maximum number of completion tokens that may be used over the course of the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -11814,6 +12315,7 @@ The maximum number of completion tokens that may be used over the course of the ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls which (if any) tool is called by the model. @@ -11837,6 +12339,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11851,6 +12354,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use., ConverterType: , @@ -11868,6 +12372,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -11883,6 +12388,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -11933,6 +12439,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ assistant_id, thread, @@ -11970,6 +12477,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -12020,6 +12528,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ assistant_id, thread, @@ -12057,6 +12566,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -12124,6 +12634,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12138,6 +12649,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -12158,6 +12670,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12172,6 +12685,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12193,6 +12707,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Asc, Desc @@ -12213,6 +12728,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.ListRunsOrderJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12234,6 +12750,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12248,6 +12765,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12268,6 +12786,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12282,6 +12801,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -12328,6 +12848,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12348,6 +12869,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -12376,6 +12898,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -12421,6 +12944,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12435,6 +12959,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -12455,6 +12980,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12469,6 +12995,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [assistant](/docs/api-reference/assistants) to use to execute this run., ConverterType: , @@ -12486,6 +13013,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12501,6 +13029,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [Model](/docs/api-reference/models) to be used to execute this run. If a value is provided here, it will override the model associated with the assistant. If not, the model associated with the assistant will be used. @@ -12520,6 +13049,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12534,6 +13064,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Overrides the [instructions](/docs/api-reference/assistants/createAssistant) of the assistant. This is useful for modifying the behavior on a per-run basis., ConverterType: , @@ -12551,6 +13082,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12565,6 +13097,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Appends additional instructions at the end of the instructions for the run. This is useful for modifying the behavior on a per-run basis without overriding other instructions., ConverterType: , @@ -12582,6 +13115,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12596,6 +13130,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Adds additional messages to the thread before creating the run., ConverterType: , @@ -12613,6 +13148,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12627,6 +13163,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis., ConverterType: , @@ -12644,6 +13181,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12658,6 +13196,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -12678,6 +13217,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12692,6 +13232,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -12713,6 +13254,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12727,6 +13269,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -12751,6 +13294,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12765,6 +13309,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message. @@ -12784,6 +13329,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12798,6 +13344,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of prompt tokens that may be used over the course of the run. The run will make a best effort to use only the number of prompt tokens specified, across multiple turns of the run. If the run exceeds the number of prompt tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info. @@ -12817,6 +13364,7 @@ The maximum number of prompt tokens that may be used over the course of the run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12831,6 +13379,7 @@ The maximum number of prompt tokens that may be used over the course of the run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of completion tokens that may be used over the course of the run. The run will make a best effort to use only the number of completion tokens specified, across multiple turns of the run. If the run exceeds the number of completion tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info. @@ -12850,6 +13399,7 @@ The maximum number of completion tokens that may be used over the course of the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, last_messages @@ -12867,6 +13417,7 @@ The maximum number of completion tokens that may be used over the course of the ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls for how a thread will be truncated prior to the run. Use this to control the intial context window of the run., ConverterType: , @@ -12884,6 +13435,7 @@ The maximum number of completion tokens that may be used over the course of the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -12899,6 +13451,7 @@ The maximum number of completion tokens that may be used over the course of the ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls which (if any) tool is called by the model. @@ -12922,6 +13475,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12936,6 +13490,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use., ConverterType: , @@ -12953,6 +13508,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -12968,6 +13524,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -13018,6 +13575,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ assistant_id, model, @@ -13055,6 +13613,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -13105,6 +13664,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ assistant_id, model, @@ -13142,6 +13702,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -13209,6 +13770,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13223,6 +13785,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -13243,6 +13806,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13257,6 +13821,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -13303,6 +13868,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13323,6 +13889,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -13373,6 +13940,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -13440,6 +14008,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13454,6 +14023,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -13474,6 +14044,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13488,6 +14059,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -13508,6 +14080,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13522,6 +14095,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -13569,6 +14143,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ metadata ], @@ -13591,6 +14166,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -13641,6 +14217,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ metadata ], @@ -13663,6 +14240,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -13730,6 +14308,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13744,6 +14323,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -13764,6 +14344,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13778,6 +14359,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -13798,6 +14380,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13812,6 +14395,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tools for which the outputs are being submitted., ConverterType: , @@ -13829,6 +14413,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13843,6 +14428,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message. @@ -13891,6 +14477,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tool_outputs, stream @@ -13914,6 +14501,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -13964,6 +14552,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ tool_outputs, stream @@ -13987,6 +14576,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -14054,6 +14644,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14068,6 +14659,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14088,6 +14680,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14102,6 +14695,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14149,6 +14743,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14169,6 +14764,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -14219,6 +14815,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -14286,6 +14883,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14300,6 +14898,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14320,6 +14919,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14334,6 +14934,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14354,6 +14955,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14368,6 +14970,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14389,6 +14992,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Asc, Desc @@ -14409,6 +15013,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: global::OpenApiGenerator.JsonConverters.ListRunStepsOrderJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14430,6 +15035,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14444,6 +15050,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14464,6 +15071,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14478,6 +15086,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14524,6 +15133,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14544,6 +15154,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -14572,6 +15183,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -14617,6 +15229,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14631,6 +15244,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14651,6 +15265,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14665,6 +15280,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14685,6 +15301,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14699,6 +15316,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -14745,6 +15363,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14765,6 +15384,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -14804,6 +15424,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -14860,6 +15481,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14874,6 +15496,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14895,6 +15518,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Asc, Desc @@ -14915,6 +15539,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: global::OpenApiGenerator.JsonConverters.ListVectorStoresOrderJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14936,6 +15561,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14950,6 +15576,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -14970,6 +15597,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14984,6 +15612,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -15030,6 +15659,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -15050,6 +15680,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -15078,6 +15709,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -15123,6 +15755,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15137,6 +15770,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [File](/docs/api-reference/files) IDs that the vector store should use. Useful for tools like `file_search` that can access files., ConverterType: , @@ -15154,6 +15788,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15168,6 +15803,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the vector store., ConverterType: , @@ -15185,6 +15821,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ anchor, days @@ -15202,6 +15839,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The expiration policy for a vector store., ConverterType: , @@ -15219,6 +15857,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -15234,6 +15873,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy. Only applicable if `file_ids` is non-empty., @@ -15252,6 +15892,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15266,6 +15907,7 @@ When a run has the `status: "requires_action"` and `required_action.type` is `su ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -15313,6 +15955,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file_ids, name, @@ -15339,6 +15982,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -15373,6 +16017,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file_ids, name, @@ -15399,6 +16044,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -15450,6 +16096,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15464,6 +16111,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -15510,6 +16158,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -15530,6 +16179,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -15564,6 +16214,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -15615,6 +16266,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15629,6 +16281,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -15649,6 +16302,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15663,6 +16317,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the vector store., ConverterType: , @@ -15680,6 +16335,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ anchor, days @@ -15697,6 +16353,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The expiration policy for a vector store., ConverterType: , @@ -15714,6 +16371,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15728,6 +16386,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -15775,6 +16434,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, expires_after, @@ -15799,6 +16459,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -15833,6 +16494,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ name, expires_after, @@ -15857,6 +16519,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -15908,6 +16571,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15922,6 +16586,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -15969,6 +16634,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -15989,6 +16655,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -16015,6 +16682,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -16058,6 +16726,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16072,6 +16741,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16092,6 +16762,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16106,6 +16777,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16127,6 +16799,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Asc, Desc @@ -16147,6 +16820,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.ListVectorStoreFilesOrderJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16168,6 +16842,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16182,6 +16857,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16202,6 +16878,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16216,6 +16893,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16236,6 +16914,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ InProgress, Completed, @@ -16260,6 +16939,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.ListVectorStoreFilesFilterJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -16306,6 +16986,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16326,6 +17007,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -16354,6 +17036,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -16399,6 +17082,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16413,6 +17097,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16433,6 +17118,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16447,6 +17133,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A [File](/docs/api-reference/files) ID that the vector store should use. Useful for tools like `file_search` that can access files., ConverterType: , @@ -16464,6 +17151,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -16479,6 +17167,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -16523,6 +17212,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file_id, chunking_strategy @@ -16546,6 +17236,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -16577,6 +17268,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file_id, chunking_strategy @@ -16600,6 +17292,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -16648,6 +17341,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16662,6 +17356,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16682,6 +17377,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16696,6 +17392,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16742,6 +17439,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16762,6 +17460,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -16793,6 +17492,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -16841,6 +17541,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16855,6 +17556,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16875,6 +17577,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16889,6 +17592,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -16936,6 +17640,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16956,6 +17661,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -16982,6 +17688,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, deleted, @@ -17025,6 +17732,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17039,6 +17747,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -17059,6 +17768,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17073,6 +17783,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [File](/docs/api-reference/files) IDs that the vector store should use. Useful for tools like `file_search` that can access files., ConverterType: , @@ -17090,6 +17801,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -17105,6 +17817,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -17149,6 +17862,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file_ids, chunking_strategy @@ -17172,6 +17886,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -17201,6 +17916,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ file_ids, chunking_strategy @@ -17224,6 +17940,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -17270,6 +17987,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17284,6 +18002,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -17304,6 +18023,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17318,6 +18038,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -17364,6 +18085,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17384,6 +18106,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -17413,6 +18136,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -17459,6 +18183,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17473,6 +18198,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -17493,6 +18219,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17507,6 +18234,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -17554,6 +18282,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17574,6 +18303,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -17603,6 +18333,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -17649,6 +18380,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17663,6 +18395,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -17683,6 +18416,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17697,6 +18431,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -17717,6 +18452,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17731,6 +18467,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17752,6 +18489,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Asc, Desc @@ -17772,6 +18510,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.ListFilesInVectorStoreBatchOrderJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17793,6 +18532,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17807,6 +18547,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17827,6 +18568,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17841,6 +18583,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17861,6 +18604,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ InProgress, Completed, @@ -17885,6 +18629,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.ListFilesInVectorStoreBatchFilterJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -17931,6 +18676,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17951,6 +18697,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -17979,6 +18726,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ object, data, @@ -18024,6 +18772,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18038,6 +18787,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of an uploaded file that contains requests for the new batch. @@ -18061,6 +18811,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ V1ChatCompletions, V1Embeddings, @@ -18083,6 +18834,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: global::OpenApiGenerator.JsonConverters.CreateBatchRequestEndpointJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The endpoint to be used for all requests in the batch. Currently `/v1/chat/completions`, `/v1/embeddings`, and `/v1/completions` are supported. Note that `/v1/embeddings` batches are also restricted to a maximum of 50,000 embedding inputs across all requests in the batch., ConverterType: global::OpenApiGenerator.JsonConverters.CreateBatchRequestEndpointJsonConverter, @@ -18100,6 +18852,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ x24h ], @@ -18118,6 +18871,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: global::OpenApiGenerator.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The time frame within which the batch should be processed. Currently only `24h` is supported., ConverterType: global::OpenApiGenerator.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter, @@ -18135,6 +18889,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18149,6 +18904,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Optional custom metadata for the batch., @@ -18194,6 +18950,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18214,6 +18971,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -18257,6 +19015,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18277,6 +19036,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -18337,6 +19097,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18351,6 +19112,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18371,6 +19133,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18385,6 +19148,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -18432,6 +19196,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18452,6 +19217,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, first_id, @@ -18480,6 +19246,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ data, first_id, @@ -18525,6 +19292,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18539,6 +19307,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -18585,6 +19354,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18605,6 +19375,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -18648,6 +19419,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -18708,6 +19480,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18722,6 +19495,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -18769,6 +19543,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18789,6 +19564,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -18832,6 +19608,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -18892,6 +19669,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18906,6 +19684,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Build Assistants that can call models and use tools., ConverterType: , @@ -18923,6 +19702,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18937,6 +19717,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Turn audio into text or text into audio., ConverterType: , @@ -18954,6 +19735,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18968,6 +19750,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Given a list of messages comprising a conversation, the model will return a response., ConverterType: , @@ -18985,6 +19768,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18999,6 +19783,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Given a prompt, the model will return one or more predicted completions, and can also return the probabilities of alternative tokens at each position., ConverterType: , @@ -19016,6 +19801,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19030,6 +19816,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Get a vector representation of a given input that can be easily consumed by machine learning models and algorithms., ConverterType: , @@ -19047,6 +19834,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19061,6 +19849,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Manage fine-tuning jobs to tailor a model to your specific training data., ConverterType: , @@ -19078,6 +19867,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19092,6 +19882,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Create large batches of API requests to run asynchronously., ConverterType: , @@ -19109,6 +19900,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19123,6 +19915,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Files are used to upload documents that can be used with features like Assistants and Fine-tuning., ConverterType: , @@ -19140,6 +19933,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19154,6 +19948,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Given a prompt and/or an input image, the model will generate a new image., ConverterType: , @@ -19171,6 +19966,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19185,6 +19981,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: List and describe the various models available in the API., ConverterType: , @@ -19202,6 +19999,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19216,6 +20014,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Given a input text, outputs if the model classifies it as potentially harmful., ConverterType: , @@ -19233,6 +20032,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19247,6 +20047,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19290,6 +20091,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19310,6 +20112,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19811,6 +20614,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19831,6 +20635,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19896,6 +20701,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19916,6 +20722,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19981,6 +20788,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20001,6 +20809,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20066,6 +20875,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20086,6 +20896,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20151,6 +20962,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20171,6 +20983,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20236,6 +21049,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20256,6 +21070,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20321,6 +21136,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20341,6 +21157,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20406,6 +21223,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20426,6 +21244,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20491,6 +21310,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20511,6 +21331,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20576,6 +21397,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20596,6 +21418,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20661,6 +21484,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20681,6 +21505,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20746,6 +21571,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20766,6 +21592,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/Models/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/Models/_.verified.txt index 1fec95b1a9..ae2243b1c3 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/Models/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/OpenAi/Models/_.verified.txt @@ -40,6 +40,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54,6 +55,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -71,6 +73,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85,6 +88,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -102,6 +106,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -116,6 +121,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -133,6 +139,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -147,6 +154,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -206,6 +214,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ code, message, @@ -225,6 +234,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -284,6 +294,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ List ], @@ -302,6 +313,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.ListModelsResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ListModelsResponseObjectJsonConverter, @@ -319,6 +331,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -333,6 +346,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -393,6 +407,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -407,6 +422,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -466,6 +482,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -480,6 +497,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -497,6 +515,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -511,6 +530,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -528,6 +548,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -542,6 +563,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -601,6 +623,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -616,6 +639,7 @@ ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -635,6 +659,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 4, Properties: null, EnumValues: null, @@ -650,6 +675,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory4 }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: "<|endoftext|>", IsDeprecated: false, Summary: @@ -673,6 +699,7 @@ Default Value: <|endoftext|>, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -687,6 +714,7 @@ Default Value: <|endoftext|>, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -712,6 +740,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -726,6 +755,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -747,6 +777,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -761,6 +792,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -784,6 +816,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -798,6 +831,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -822,6 +856,7 @@ As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -836,6 +871,7 @@ As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Include the log probabilities on the `logprobs` most likely output tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. @@ -857,6 +893,7 @@ The maximum value for `logprobs` is 5. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -871,6 +908,7 @@ The maximum value for `logprobs` is 5. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 16, IsDeprecated: false, Summary: @@ -895,6 +933,7 @@ Example: 16, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -909,6 +948,7 @@ Example: 16, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -933,6 +973,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -947,6 +988,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -970,6 +1012,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -984,6 +1027,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same `seed` and parameters should return the same result. @@ -1005,6 +1049,7 @@ Determinism is not guaranteed, and you should refer to the `system_fingerprint` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -1020,6 +1065,7 @@ Determinism is not guaranteed, and you should refer to the `system_fingerprint` ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. @@ -1039,6 +1085,7 @@ Up to 4 sequences where the API will stop generating further tokens. The returne IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1053,6 +1100,7 @@ Up to 4 sequences where the API will stop generating further tokens. The returne ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -1074,6 +1122,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ include_usage ], @@ -1090,6 +1139,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Options for streaming response. Only set this when you set `stream: true`. @@ -1109,6 +1159,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1123,6 +1174,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The suffix that comes after a completion of inserted text. @@ -1145,6 +1197,7 @@ Example: test., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1159,6 +1212,7 @@ Example: test., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -1183,6 +1237,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1197,6 +1252,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -1221,6 +1277,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1235,6 +1292,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -1298,6 +1356,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1312,6 +1371,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1329,6 +1389,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1343,6 +1404,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1360,6 +1422,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1374,6 +1437,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1433,6 +1497,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1447,6 +1512,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier for the completion., ConverterType: , @@ -1464,6 +1530,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1478,6 +1545,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The list of completion choices the model generated for the input prompt., ConverterType: , @@ -1495,6 +1563,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1509,6 +1578,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) of when the completion was created., ConverterType: , @@ -1526,6 +1596,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1540,6 +1611,7 @@ Example: user-1234, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model used for completion., ConverterType: , @@ -1557,6 +1629,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1571,6 +1644,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: This fingerprint represents the backend configuration that the model runs with. @@ -1592,6 +1666,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ TextCompletion ], @@ -1610,6 +1685,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: global::OpenApiGenerator.JsonConverters.CreateCompletionResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always "text_completion", ConverterType: global::OpenApiGenerator.JsonConverters.CreateCompletionResponseObjectJsonConverter, @@ -1627,6 +1703,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ completion_tokens, prompt_tokens, @@ -1645,6 +1722,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Usage statistics for the completion request., ConverterType: , @@ -1706,6 +1784,7 @@ Represents a completion response from the API. Note: both the streamed and non-s IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Stop, Length, @@ -1728,6 +1807,7 @@ Represents a completion response from the API. Note: both the streamed and non-s ConverterType: global::OpenApiGenerator.JsonConverters.CreateCompletionResponseChoicesFinishReasonJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence, @@ -1749,6 +1829,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1763,6 +1844,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1780,6 +1862,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1794,6 +1877,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1811,6 +1895,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1825,6 +1910,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1884,6 +1970,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1898,6 +1985,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1915,6 +2003,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1929,6 +2018,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1946,6 +2036,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1960,6 +2051,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1977,6 +2069,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1991,6 +2084,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2051,6 +2145,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2065,6 +2160,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2082,6 +2178,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2096,6 +2193,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2113,6 +2211,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2127,6 +2226,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2191,6 +2291,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2205,6 +2306,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2264,6 +2366,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ImageUrl ], @@ -2282,6 +2385,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestMessageContentPartImageTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the content part., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestMessageContentPartImageTypeJsonConverter, @@ -2299,6 +2403,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2313,6 +2418,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2372,6 +2478,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2386,6 +2493,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Either a URL of the image or the base64 encoded image data., ConverterType: , @@ -2403,6 +2511,7 @@ or `content_filter` if content was omitted due to a flag from our content filter IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto, Low, @@ -2425,6 +2534,7 @@ or `content_filter` if content was omitted due to a flag from our content filter ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestMessageContentPartImageImageUrlDetailJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.ChatCompletionRequestMessageContentPartImageImageUrlDetail.Auto, IsDeprecated: false, Summary: @@ -2488,6 +2598,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2502,6 +2613,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2519,6 +2631,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2533,6 +2646,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2550,6 +2664,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2564,6 +2679,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2626,6 +2742,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2640,6 +2757,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2699,6 +2817,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Text ], @@ -2717,6 +2836,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestMessageContentPartTextTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the content part., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestMessageContentPartTextTypeJsonConverter, @@ -2734,6 +2854,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2748,6 +2869,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text content., ConverterType: , @@ -2808,6 +2930,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2822,6 +2945,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2881,6 +3005,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2895,6 +3020,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the system message., ConverterType: , @@ -2912,6 +3038,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ System ], @@ -2930,6 +3057,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestSystemMessageRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the messages author, in this case `system`., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestSystemMessageRoleJsonConverter, @@ -2947,6 +3075,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2961,6 +3090,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An optional name for the participant. Provides the model information to differentiate between participants of the same role., ConverterType: , @@ -3021,6 +3151,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3035,6 +3166,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3094,6 +3226,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -3109,6 +3242,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the user message. @@ -3128,6 +3262,7 @@ The contents of the user message. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ User ], @@ -3146,6 +3281,7 @@ The contents of the user message. ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestUserMessageRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the messages author, in this case `user`., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestUserMessageRoleJsonConverter, @@ -3163,6 +3299,7 @@ The contents of the user message. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3177,6 +3314,7 @@ The contents of the user message. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An optional name for the participant. Provides the model information to differentiate between participants of the same role., ConverterType: , @@ -3237,6 +3375,7 @@ The contents of the user message. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3251,6 +3390,7 @@ The contents of the user message. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3310,6 +3450,7 @@ The contents of the user message. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3324,6 +3465,7 @@ The contents of the user message. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified. @@ -3343,6 +3485,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Assistant ], @@ -3361,6 +3504,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestAssistantMessageRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the messages author, in this case `assistant`., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestAssistantMessageRoleJsonConverter, @@ -3378,6 +3522,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3392,6 +3537,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An optional name for the participant. Provides the model information to differentiate between participants of the same role., ConverterType: , @@ -3409,6 +3555,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3423,6 +3570,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The tool calls generated by the model, such as function calls., ConverterType: , @@ -3440,6 +3588,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3454,6 +3603,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model., ConverterType: , @@ -3513,6 +3663,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3527,6 +3678,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function., ConverterType: , @@ -3544,6 +3696,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3558,6 +3711,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -3618,6 +3772,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3632,6 +3787,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3691,6 +3847,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3705,6 +3862,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls whether the assistant message is trained against (0 or 1), ConverterType: , @@ -3764,6 +3922,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Tool ], @@ -3782,6 +3941,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestToolMessageRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the messages author, in this case `tool`., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestToolMessageRoleJsonConverter, @@ -3799,6 +3959,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3813,6 +3974,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the tool message., ConverterType: , @@ -3830,6 +3992,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3844,6 +4007,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Tool call that this message is responding to., ConverterType: , @@ -3904,6 +4068,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3918,6 +4083,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3977,6 +4143,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -3995,6 +4162,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestFunctionMessageRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the messages author, in this case `function`., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionRequestFunctionMessageRoleJsonConverter, @@ -4012,6 +4180,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4026,6 +4195,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the function message., ConverterType: , @@ -4043,6 +4213,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4057,6 +4228,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -4117,6 +4289,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4131,6 +4304,7 @@ The contents of the assistant message. Required unless `tool_calls` or `function ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4234,6 +4408,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4248,6 +4423,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A description of what the function does, used by the model to choose when and how to call the function., ConverterType: , @@ -4265,6 +4441,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4279,6 +4456,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64., ConverterType: , @@ -4296,6 +4474,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4310,6 +4489,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. @@ -4372,6 +4552,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4386,6 +4567,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -4447,6 +4629,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -4465,6 +4648,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionToolTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the tool. Currently, only `function` is supported., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionToolTypeJsonConverter, @@ -4482,6 +4666,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ description, name, @@ -4500,6 +4685,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4560,6 +4746,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4574,6 +4761,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4633,6 +4821,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4647,6 +4836,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A description of what the function does, used by the model to choose when and how to call the function., ConverterType: , @@ -4664,6 +4854,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4678,6 +4869,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64., ConverterType: , @@ -4695,6 +4887,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4709,6 +4902,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format. @@ -4772,6 +4966,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4786,6 +4981,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4803,6 +4999,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4817,6 +5014,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4834,6 +5032,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4848,6 +5047,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4909,6 +5109,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -4927,6 +5128,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionNamedToolChoiceTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the tool. Currently, only `function` is supported., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionNamedToolChoiceTypeJsonConverter, @@ -4944,6 +5146,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4958,6 +5161,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5017,6 +5221,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5031,6 +5236,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -5091,6 +5297,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5105,6 +5312,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5164,6 +5372,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5178,6 +5387,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call., ConverterType: , @@ -5195,6 +5405,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -5213,6 +5424,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionMessageToolCallTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the tool. Currently, only `function` is supported., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionMessageToolCallTypeJsonConverter, @@ -5230,6 +5442,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5244,6 +5457,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The function that the model called., ConverterType: , @@ -5303,6 +5517,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5317,6 +5532,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -5334,6 +5550,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5348,6 +5565,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function., ConverterType: , @@ -5408,6 +5626,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5422,6 +5641,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5481,6 +5701,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5495,6 +5716,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5512,6 +5734,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5526,6 +5749,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call., ConverterType: , @@ -5543,6 +5767,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -5561,6 +5786,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionMessageToolCallChunkTypeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the tool. Currently, only `function` is supported., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionMessageToolCallChunkTypeJsonConverter, @@ -5578,6 +5804,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5592,6 +5819,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5651,6 +5879,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5665,6 +5894,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -5682,6 +5912,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5696,6 +5927,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function., ConverterType: , @@ -5756,6 +5988,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5770,6 +6003,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5830,6 +6064,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5844,6 +6079,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5861,6 +6097,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5875,6 +6112,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5892,6 +6130,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5906,6 +6145,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5923,6 +6163,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5937,6 +6178,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5954,6 +6196,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5968,6 +6211,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6027,6 +6271,7 @@ Omitting `parameters` defines a function with an empty parameter list., IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6041,6 +6286,7 @@ Omitting `parameters` defines a function with an empty parameter list., ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If set, an additional chunk will be streamed before the `data: [DONE]` message. The `usage` field on this chunk shows the token usage statistics for the entire request, and the `choices` field will always be an empty array. All other chunks will also include a `usage` field, but with a null value. @@ -6104,6 +6350,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6118,6 +6365,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the message., ConverterType: , @@ -6135,6 +6383,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6149,6 +6398,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The tool calls generated by the model, such as function calls., ConverterType: , @@ -6166,6 +6416,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Assistant ], @@ -6184,6 +6435,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionResponseMessageRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the author of this message., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionResponseMessageRoleJsonConverter, @@ -6201,6 +6453,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6215,6 +6468,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model., ConverterType: , @@ -6274,6 +6528,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6288,6 +6543,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function., ConverterType: , @@ -6305,6 +6561,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6319,6 +6576,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -6379,6 +6637,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6393,6 +6652,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6452,6 +6712,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6466,6 +6727,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The contents of the chunk message., ConverterType: , @@ -6483,6 +6745,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6497,6 +6760,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model., ConverterType: , @@ -6514,6 +6778,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6528,6 +6793,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6545,6 +6811,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ System, User, @@ -6569,6 +6836,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionStreamResponseDeltaRoleJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the author of this message., ConverterType: global::OpenApiGenerator.JsonConverters.ChatCompletionStreamResponseDeltaRoleJsonConverter, @@ -6628,6 +6896,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6642,6 +6911,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function., ConverterType: , @@ -6659,6 +6929,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6673,6 +6944,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -6733,6 +7005,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6747,6 +7020,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6764,6 +7038,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6778,6 +7053,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6795,6 +7071,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6809,6 +7086,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6826,6 +7104,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6840,6 +7119,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -6899,6 +7179,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6913,6 +7194,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of messages comprising the conversation so far. [Example Python code](https://cookbook.openai.com/examples/how_to_format_inputs_to_chatgpt_models)., ConverterType: , @@ -6930,6 +7212,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -6945,6 +7228,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. See the [model endpoint compatibility](/docs/models/model-endpoint-compatibility) table for details on which models work with the Chat API. @@ -6964,6 +7248,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -6978,6 +7263,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -7001,6 +7287,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7015,6 +7302,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -7037,6 +7325,7 @@ Accepts a JSON object that maps tokens (specified by their token ID in the token IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7051,6 +7340,7 @@ Accepts a JSON object that maps tokens (specified by their token ID in the token ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -7071,6 +7361,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7085,6 +7376,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability. `logprobs` must be set to `true` if this parameter is used., ConverterType: , @@ -7102,6 +7394,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7116,6 +7409,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of [tokens](/tokenizer) that can be generated in the chat completion. @@ -7137,6 +7431,7 @@ The total length of input tokens and generated tokens is limited by the model's IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7151,6 +7446,7 @@ The total length of input tokens and generated tokens is limited by the model's ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -7172,6 +7468,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7186,6 +7483,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -7209,6 +7507,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7223,6 +7522,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An object specifying the format that the model must output. Compatible with [GPT-4 Turbo](/docs/models/gpt-4-and-gpt-4-turbo) and all GPT-3.5 Turbo models newer than `gpt-3.5-turbo-1106`. @@ -7246,6 +7546,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7260,6 +7561,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: This feature is in Beta. @@ -7281,6 +7583,7 @@ Determinism is not guaranteed, and you should refer to the `system_fingerprint` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto, Default @@ -7301,6 +7604,7 @@ Determinism is not guaranteed, and you should refer to the `system_fingerprint` ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionRequestServiceTierJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the latency tier to use for processing the request. This parameter is relevant for customers subscribed to the scale tier service: @@ -7324,6 +7628,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -7339,6 +7644,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Up to 4 sequences where the API will stop generating further tokens. @@ -7358,6 +7664,7 @@ Up to 4 sequences where the API will stop generating further tokens. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7372,6 +7679,7 @@ Up to 4 sequences where the API will stop generating further tokens. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: false, IsDeprecated: false, Summary: @@ -7393,6 +7701,7 @@ Default Value: false, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ include_usage ], @@ -7409,6 +7718,7 @@ Default Value: false, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Options for streaming response. Only set this when you set `stream: true`. @@ -7428,6 +7738,7 @@ Options for streaming response. Only set this when you set `stream: true`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7442,6 +7753,7 @@ Options for streaming response. Only set this when you set `stream: true`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -7466,6 +7778,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7480,6 +7793,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -7504,6 +7818,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7518,6 +7833,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tools the model may call. Currently, only functions are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported. @@ -7537,6 +7853,7 @@ A list of tools the model may call. Currently, only functions are supported as a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -7552,6 +7869,7 @@ A list of tools the model may call. Currently, only functions are supported as a ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls which (if any) tool is called by the model. @@ -7577,6 +7895,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7591,6 +7910,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use., ConverterType: , @@ -7608,6 +7928,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7622,6 +7943,7 @@ Specifying a particular tool via `{"type": "function", "function": {"name": "my_ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -7642,6 +7964,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -7657,6 +7980,7 @@ Example: user-1234, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated in favor of `tool_choice`. @@ -7683,6 +8007,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -7697,6 +8022,7 @@ Specifying a particular function via `{"name": "my_function"}` forces the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated in favor of `tools`. @@ -7760,6 +8086,7 @@ A list of functions the model may generate JSON inputs for. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Text, JsonObject @@ -7780,6 +8107,7 @@ A list of functions the model may generate JSON inputs for. ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionRequestResponseFormatTypeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateChatCompletionRequestResponseFormatType.Text, IsDeprecated: false, Summary: @@ -7850,6 +8178,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7864,6 +8193,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7881,6 +8211,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7895,6 +8226,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7958,6 +8290,7 @@ Example: json_object, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -7972,6 +8305,7 @@ Example: json_object, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -7989,6 +8323,7 @@ Example: json_object, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8003,6 +8338,7 @@ Example: json_object, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8069,6 +8405,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8083,6 +8420,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8100,6 +8438,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8114,6 +8453,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8131,6 +8471,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8145,6 +8486,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8162,6 +8504,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8176,6 +8519,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8193,6 +8537,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8207,6 +8552,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8224,6 +8570,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8238,6 +8585,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8255,6 +8603,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8269,6 +8618,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8286,6 +8636,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8300,6 +8651,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8317,6 +8669,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8331,6 +8684,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8348,6 +8702,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8362,6 +8717,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8379,6 +8735,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8393,6 +8750,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8410,6 +8768,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8424,6 +8783,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8441,6 +8801,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8455,6 +8816,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8472,6 +8834,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8486,6 +8849,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8503,6 +8867,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8517,6 +8882,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8534,6 +8900,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8548,6 +8915,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8565,6 +8933,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8579,6 +8948,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8596,6 +8966,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8610,6 +8981,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8627,6 +8999,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8641,6 +9014,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8658,6 +9032,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8672,6 +9047,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8689,6 +9065,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8703,6 +9080,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8763,6 +9141,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8777,6 +9156,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8794,6 +9174,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8808,6 +9189,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8825,6 +9207,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8839,6 +9222,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8901,6 +9285,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8915,6 +9300,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -8932,6 +9318,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -8946,6 +9333,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9007,6 +9395,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9021,6 +9410,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier for the chat completion., ConverterType: , @@ -9038,6 +9428,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9052,6 +9443,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of chat completion choices. Can be more than one if `n` is greater than 1., ConverterType: , @@ -9069,6 +9461,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9083,6 +9476,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) of when the chat completion was created., ConverterType: , @@ -9100,6 +9494,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9114,6 +9509,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model used for the chat completion., ConverterType: , @@ -9131,6 +9527,7 @@ Specifies the latency tier to use for processing the request. This parameter is IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Scale, Default @@ -9151,6 +9548,7 @@ Specifies the latency tier to use for processing the request. This parameter is ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionResponseServiceTierJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The service tier used for processing the request. This field is only included if the `service_tier` parameter is specified in the request. @@ -9170,6 +9568,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9184,6 +9583,7 @@ Example: scale, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: This fingerprint represents the backend configuration that the model runs with. @@ -9205,6 +9605,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ChatCompletion ], @@ -9223,6 +9624,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `chat.completion`., ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionResponseObjectJsonConverter, @@ -9240,6 +9642,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ completion_tokens, prompt_tokens, @@ -9258,6 +9661,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Usage statistics for the completion request., ConverterType: , @@ -9317,6 +9721,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Stop, Length, @@ -9343,6 +9748,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionResponseChoicesFinishReasonJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence, @@ -9365,6 +9771,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9379,6 +9786,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the choice in the list of choices., ConverterType: , @@ -9396,6 +9804,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content, tool_calls, @@ -9415,6 +9824,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A chat completion message generated by the model., ConverterType: , @@ -9432,6 +9842,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9446,6 +9857,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Log probability information for the choice., ConverterType: , @@ -9505,6 +9917,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9519,6 +9932,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of message content tokens with log probability information., ConverterType: , @@ -9579,6 +9993,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9593,6 +10008,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9610,6 +10026,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9624,6 +10041,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9641,6 +10059,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9655,6 +10074,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9672,6 +10092,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9686,6 +10107,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9703,6 +10125,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9717,6 +10140,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9782,6 +10206,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9796,6 +10221,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9813,6 +10239,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9827,6 +10254,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9889,6 +10317,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -9903,6 +10332,7 @@ Example: scale, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -9962,6 +10392,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -9976,6 +10407,7 @@ Example: scale, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier for the chat completion., ConverterType: , @@ -9993,6 +10425,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10007,6 +10440,7 @@ Example: scale, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of chat completion choices. Can be more than one if `n` is greater than 1., ConverterType: , @@ -10024,6 +10458,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10038,6 +10473,7 @@ Example: scale, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) of when the chat completion was created., ConverterType: , @@ -10055,6 +10491,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10069,6 +10506,7 @@ Example: scale, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model used for the chat completion., ConverterType: , @@ -10086,6 +10524,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10100,6 +10539,7 @@ Example: scale, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: This fingerprint represents the backend configuration that the model runs with. @@ -10121,6 +10561,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ChatCompletion ], @@ -10139,6 +10580,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionFunctionResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `chat.completion`., ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionFunctionResponseObjectJsonConverter, @@ -10156,6 +10598,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ completion_tokens, prompt_tokens, @@ -10174,6 +10617,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Usage statistics for the completion request., ConverterType: , @@ -10233,6 +10677,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Stop, Length, @@ -10257,6 +10702,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionFunctionResponseChoicesFinishReasonJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence, `length` if the maximum number of tokens specified in the request was reached, `content_filter` if content was omitted due to a flag from our content filters, or `function_call` if the model called a function. @@ -10276,6 +10722,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10290,6 +10737,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the choice in the list of choices., ConverterType: , @@ -10307,6 +10755,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content, tool_calls, @@ -10326,6 +10775,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A chat completion message generated by the model., ConverterType: , @@ -10386,6 +10836,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10400,6 +10851,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10417,6 +10869,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10431,6 +10884,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10448,6 +10902,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10462,6 +10917,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10479,6 +10935,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10493,6 +10950,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10555,6 +11013,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -10569,6 +11028,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10628,6 +11088,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10642,6 +11103,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The token., ConverterType: , @@ -10659,6 +11121,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10673,6 +11136,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value `-9999.0` is used to signify that the token is very unlikely., ConverterType: , @@ -10690,6 +11154,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10704,6 +11169,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be `null` if there is no bytes representation for the token., ConverterType: , @@ -10721,6 +11187,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10735,6 +11202,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: List of the most likely tokens and their log probability, at this token position. In rare cases, there may be fewer than the number of requested `top_logprobs` returned., ConverterType: , @@ -10794,6 +11262,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10808,6 +11277,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The token., ConverterType: , @@ -10825,6 +11295,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10839,6 +11310,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value `-9999.0` is used to signify that the token is very unlikely., ConverterType: , @@ -10856,6 +11328,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10870,6 +11343,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be `null` if there is no bytes representation for the token., ConverterType: , @@ -10929,6 +11403,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10943,6 +11418,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10960,6 +11436,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -10974,6 +11451,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -10991,6 +11469,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ List ], @@ -11009,6 +11488,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: global::OpenApiGenerator.JsonConverters.ListPaginatedFineTuningJobsResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ListPaginatedFineTuningJobsResponseObjectJsonConverter, @@ -11069,6 +11549,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11083,6 +11564,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11142,6 +11624,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11156,6 +11639,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier for the chat completion. Each chunk has the same ID., ConverterType: , @@ -11173,6 +11657,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11187,6 +11672,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of chat completion choices. Can contain more than one elements if `n` is greater than 1. Can also be empty for the @@ -11207,6 +11693,7 @@ last chunk if you set `stream_options: {"include_usage": true}`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11221,6 +11708,7 @@ last chunk if you set `stream_options: {"include_usage": true}`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp., ConverterType: , @@ -11238,6 +11726,7 @@ last chunk if you set `stream_options: {"include_usage": true}`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11252,6 +11741,7 @@ last chunk if you set `stream_options: {"include_usage": true}`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model to generate the completion., ConverterType: , @@ -11269,6 +11759,7 @@ last chunk if you set `stream_options: {"include_usage": true}`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Scale, Default @@ -11289,6 +11780,7 @@ last chunk if you set `stream_options: {"include_usage": true}`. ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionStreamResponseServiceTierJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The service tier used for processing the request. This field is only included if the `service_tier` parameter is specified in the request. @@ -11308,6 +11800,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11322,6 +11815,7 @@ Example: scale, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: This fingerprint represents the backend configuration that the model runs with. @@ -11342,6 +11836,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ChatCompletionChunk ], @@ -11360,6 +11855,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionStreamResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `chat.completion.chunk`., ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionStreamResponseObjectJsonConverter, @@ -11377,6 +11873,7 @@ Can be used in conjunction with the `seed` request parameter to understand when IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11391,6 +11888,7 @@ Can be used in conjunction with the `seed` request parameter to understand when ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An optional field that will only be present when you set `stream_options: {"include_usage": true}` in your request. @@ -11453,6 +11951,7 @@ When present, it contains a null value except for the last chunk which contains IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11467,6 +11966,7 @@ When present, it contains a null value except for the last chunk which contains ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens in the generated completion., ConverterType: , @@ -11484,6 +11984,7 @@ When present, it contains a null value except for the last chunk which contains IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11498,6 +11999,7 @@ When present, it contains a null value except for the last chunk which contains ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens in the prompt., ConverterType: , @@ -11515,6 +12017,7 @@ When present, it contains a null value except for the last chunk which contains IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11529,6 +12032,7 @@ When present, it contains a null value except for the last chunk which contains ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Total number of tokens used in the request (prompt + completion)., ConverterType: , @@ -11591,6 +12095,7 @@ When present, it contains a null value except for the last chunk which contains IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ content, function_call, @@ -11610,6 +12115,7 @@ When present, it contains a null value except for the last chunk which contains ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A chat completion delta generated by streamed model responses., ConverterType: , @@ -11627,6 +12133,7 @@ When present, it contains a null value except for the last chunk which contains IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11641,6 +12148,7 @@ When present, it contains a null value except for the last chunk which contains ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Log probability information for the choice., ConverterType: , @@ -11658,6 +12166,7 @@ When present, it contains a null value except for the last chunk which contains IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Stop, Length, @@ -11684,6 +12193,7 @@ When present, it contains a null value except for the last chunk which contains ConverterType: global::OpenApiGenerator.JsonConverters.CreateChatCompletionStreamResponseChoicesFinishReasonJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence, @@ -11706,6 +12216,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11720,6 +12231,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the choice in the list of choices., ConverterType: , @@ -11779,6 +12291,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -11793,6 +12306,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of message content tokens with log probability information., ConverterType: , @@ -11853,6 +12367,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11867,6 +12382,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11884,6 +12400,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11898,6 +12415,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11915,6 +12433,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11929,6 +12448,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11946,6 +12466,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11960,6 +12481,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -11977,6 +12499,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -11991,6 +12514,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12056,6 +12580,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12070,6 +12595,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12087,6 +12613,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12101,6 +12628,7 @@ The reason the model stopped generating tokens. This will be `stop` if the model ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12163,6 +12691,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12177,6 +12706,7 @@ Example: scale, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12277,6 +12807,7 @@ Example: scale, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12291,6 +12822,7 @@ Example: scale, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A text description of the desired image(s). The maximum length is 1000 characters for `dall-e-2` and 4000 characters for `dall-e-3`. @@ -12310,6 +12842,7 @@ Example: A cute baby sea otter, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -12325,6 +12858,7 @@ Example: A cute baby sea otter, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestModel.DallE2, IsDeprecated: false, Summary: @@ -12346,6 +12880,7 @@ Example: dall-e-3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12360,6 +12895,7 @@ Example: dall-e-3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -12381,6 +12917,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Standard, Hd @@ -12401,6 +12938,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageRequestQualityJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestQuality.Standard, IsDeprecated: false, Summary: @@ -12422,6 +12960,7 @@ Example: standard, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Url, B64Json @@ -12442,6 +12981,7 @@ Example: standard, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestResponseFormat.Url, IsDeprecated: false, Summary: @@ -12463,6 +13003,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ x256x256, x512x512, @@ -12489,6 +13030,7 @@ Example: url, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageRequestSizeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestSize.x1024x1024, IsDeprecated: false, Summary: @@ -12510,6 +13052,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Vivid, Natural @@ -12530,6 +13073,7 @@ Example: 1024x1024, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageRequestStyleJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageRequestStyle.Vivid, IsDeprecated: false, Summary: @@ -12551,6 +13095,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -12565,6 +13110,7 @@ Example: vivid, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -12628,6 +13174,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12642,6 +13189,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12659,6 +13207,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12673,6 +13222,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12736,6 +13286,7 @@ Example: standard, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12750,6 +13301,7 @@ Example: standard, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12767,6 +13319,7 @@ Example: standard, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12781,6 +13334,7 @@ Example: standard, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12844,6 +13398,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12858,6 +13413,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12875,6 +13431,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12889,6 +13446,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12906,6 +13464,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12920,6 +13479,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12937,6 +13497,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12951,6 +13512,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -12968,6 +13530,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -12982,6 +13545,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13045,6 +13609,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13059,6 +13624,7 @@ Example: 1024x1024, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13076,6 +13642,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13090,6 +13657,7 @@ Example: 1024x1024, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13153,6 +13721,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13167,6 +13736,7 @@ Example: vivid, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13184,6 +13754,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13198,6 +13769,7 @@ Example: vivid, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13257,6 +13829,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13271,6 +13844,7 @@ Example: vivid, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13288,6 +13862,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13302,6 +13877,7 @@ Example: vivid, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13361,6 +13937,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13375,6 +13952,7 @@ Example: vivid, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The base64-encoded JSON of the generated image, if `response_format` is `b64_json`., ConverterType: , @@ -13392,6 +13970,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13406,6 +13985,7 @@ Example: vivid, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The URL of the generated image, if `response_format` is `url` (default)., ConverterType: , @@ -13423,6 +14003,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13437,6 +14018,7 @@ Example: vivid, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The prompt that was used to generate the image, if there was any revision to the prompt., ConverterType: , @@ -13496,6 +14078,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -13510,6 +14093,7 @@ Example: vivid, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask., ConverterType: , @@ -13527,6 +14111,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13541,6 +14126,7 @@ Example: vivid, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask., ConverterType: , @@ -13558,6 +14144,7 @@ Example: vivid, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13572,6 +14159,7 @@ Example: vivid, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A text description of the desired image(s). The maximum length is 1000 characters. @@ -13591,6 +14179,7 @@ Example: A cute baby sea otter wearing a beret, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -13605,6 +14194,7 @@ Example: A cute baby sea otter wearing a beret, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`., ConverterType: , @@ -13622,6 +14212,7 @@ Example: A cute baby sea otter wearing a beret, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13636,6 +14227,7 @@ Example: A cute baby sea otter wearing a beret, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`., ConverterType: , @@ -13653,6 +14245,7 @@ Example: A cute baby sea otter wearing a beret, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -13668,6 +14261,7 @@ Example: A cute baby sea otter wearing a beret, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageEditRequestModel.DallE2, IsDeprecated: false, Summary: @@ -13689,6 +14283,7 @@ Example: dall-e-2, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13703,6 +14298,7 @@ Example: dall-e-2, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -13724,6 +14320,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ x256x256, x512x512, @@ -13746,6 +14343,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageEditRequestSizeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageEditRequestSize.x1024x1024, IsDeprecated: false, Summary: @@ -13767,6 +14365,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Url, B64Json @@ -13787,6 +14386,7 @@ Example: 1024x1024, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageEditRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageEditRequestResponseFormat.Url, IsDeprecated: false, Summary: @@ -13808,6 +14408,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -13822,6 +14423,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -13885,6 +14487,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13899,6 +14502,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13916,6 +14520,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13930,6 +14535,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -13947,6 +14553,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -13961,6 +14568,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14024,6 +14632,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14038,6 +14647,7 @@ Example: 1024x1024, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14055,6 +14665,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14069,6 +14680,7 @@ Example: 1024x1024, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14132,6 +14744,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14146,6 +14759,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14205,6 +14819,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -14219,6 +14834,7 @@ Example: url, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square., ConverterType: , @@ -14236,6 +14852,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14250,6 +14867,7 @@ Example: url, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square., ConverterType: , @@ -14267,6 +14885,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14282,6 +14901,7 @@ Example: url, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageVariationRequestModel.DallE2, IsDeprecated: false, Summary: @@ -14303,6 +14923,7 @@ Example: dall-e-2, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14317,6 +14938,7 @@ Example: dall-e-2, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -14338,6 +14960,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Url, B64Json @@ -14358,6 +14981,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageVariationRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageVariationRequestResponseFormat.Url, IsDeprecated: false, Summary: @@ -14379,6 +15003,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ x256x256, x512x512, @@ -14401,6 +15026,7 @@ Example: url, ConverterType: global::OpenApiGenerator.JsonConverters.CreateImageVariationRequestSizeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateImageVariationRequestSize.x1024x1024, IsDeprecated: false, Summary: @@ -14422,6 +15048,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -14436,6 +15063,7 @@ Example: 1024x1024, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -14499,6 +15127,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14513,6 +15142,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14530,6 +15160,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14544,6 +15175,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14607,6 +15239,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14621,6 +15254,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14638,6 +15272,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14652,6 +15287,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14669,6 +15305,7 @@ Example: url, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14683,6 +15320,7 @@ Example: url, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14746,6 +15384,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14760,6 +15399,7 @@ Example: 1024x1024, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14819,6 +15459,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -14834,6 +15475,7 @@ Example: 1024x1024, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The input text to classify, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -14851,6 +15493,7 @@ Example: 1024x1024, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -14866,6 +15509,7 @@ Example: 1024x1024, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateModerationRequestModel.TextModerationLatest, IsDeprecated: false, Summary: @@ -14933,6 +15577,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14947,6 +15592,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -14964,6 +15610,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -14978,6 +15625,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -15037,6 +15685,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15051,6 +15700,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The unique identifier for the moderation request., ConverterType: , @@ -15068,6 +15718,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15082,6 +15733,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model used to generate the moderation results., ConverterType: , @@ -15099,6 +15751,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15113,6 +15766,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of moderation objects., ConverterType: , @@ -15172,6 +15826,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15186,6 +15841,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether any of the below categories are flagged., ConverterType: , @@ -15203,6 +15859,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15217,6 +15874,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of the categories, and whether they are flagged or not., ConverterType: , @@ -15234,6 +15892,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15248,6 +15907,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of the categories along with their scores as predicted by model., ConverterType: , @@ -15307,6 +15967,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15321,6 +15982,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Content that expresses, incites, or promotes hate based on race, gender, ethnicity, religion, nationality, sexual orientation, disability status, or caste. Hateful content aimed at non-protected groups (e.g., chess players) is harassment., ConverterType: , @@ -15338,6 +16000,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15352,6 +16015,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Hateful content that also includes violence or serious harm towards the targeted group based on race, gender, ethnicity, religion, nationality, sexual orientation, disability status, or caste., ConverterType: , @@ -15369,6 +16033,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15383,6 +16048,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Content that expresses, incites, or promotes harassing language towards any target., ConverterType: , @@ -15400,6 +16066,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15414,6 +16081,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Harassment content that also includes violence or serious harm towards any target., ConverterType: , @@ -15431,6 +16099,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15445,6 +16114,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Content that promotes, encourages, or depicts acts of self-harm, such as suicide, cutting, and eating disorders., ConverterType: , @@ -15462,6 +16132,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15476,6 +16147,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Content where the speaker expresses that they are engaging or intend to engage in acts of self-harm, such as suicide, cutting, and eating disorders., ConverterType: , @@ -15493,6 +16165,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15507,6 +16180,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Content that encourages performing acts of self-harm, such as suicide, cutting, and eating disorders, or that gives instructions or advice on how to commit such acts., ConverterType: , @@ -15524,6 +16198,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15538,6 +16213,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Content meant to arouse sexual excitement, such as the description of sexual activity, or that promotes sexual services (excluding sex education and wellness)., ConverterType: , @@ -15555,6 +16231,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15569,6 +16246,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Sexual content that includes an individual who is under 18 years old., ConverterType: , @@ -15586,6 +16264,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15600,6 +16279,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Content that depicts death, violence, or physical injury., ConverterType: , @@ -15617,6 +16297,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15631,6 +16312,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Content that depicts death, violence, or physical injury in graphic detail., ConverterType: , @@ -15690,6 +16372,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15704,6 +16387,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'hate'., ConverterType: , @@ -15721,6 +16405,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15735,6 +16420,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'hate/threatening'., ConverterType: , @@ -15752,6 +16438,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15766,6 +16453,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'harassment'., ConverterType: , @@ -15783,6 +16471,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15797,6 +16486,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'harassment/threatening'., ConverterType: , @@ -15814,6 +16504,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15828,6 +16519,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'self-harm'., ConverterType: , @@ -15845,6 +16537,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15859,6 +16552,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'self-harm/intent'., ConverterType: , @@ -15876,6 +16570,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15890,6 +16585,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'self-harm/instructions'., ConverterType: , @@ -15907,6 +16603,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15921,6 +16618,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'sexual'., ConverterType: , @@ -15938,6 +16636,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15952,6 +16651,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'sexual/minors'., ConverterType: , @@ -15969,6 +16669,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -15983,6 +16684,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'violence'., ConverterType: , @@ -16000,6 +16702,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16014,6 +16717,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The score for the category 'violence/graphic'., ConverterType: , @@ -16073,6 +16777,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16087,6 +16792,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16104,6 +16810,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ List ], @@ -16122,6 +16829,7 @@ Example: text-moderation-stable, ConverterType: global::OpenApiGenerator.JsonConverters.ListFilesResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ListFilesResponseObjectJsonConverter, @@ -16182,6 +16890,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16196,6 +16905,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16255,6 +16965,7 @@ Example: text-moderation-stable, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -16269,6 +16980,7 @@ Example: text-moderation-stable, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The File object (not file name) to be uploaded. @@ -16288,6 +17000,7 @@ The File object (not file name) to be uploaded. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16302,6 +17015,7 @@ The File object (not file name) to be uploaded. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The File object (not file name) to be uploaded. @@ -16321,6 +17035,7 @@ The File object (not file name) to be uploaded. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Assistants, Batch, @@ -16345,6 +17060,7 @@ The File object (not file name) to be uploaded. ConverterType: global::OpenApiGenerator.JsonConverters.CreateFileRequestPurposeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The intended purpose of the uploaded file. @@ -16409,6 +17125,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16423,6 +17140,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16440,6 +17158,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16454,6 +17173,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16471,6 +17191,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16485,6 +17206,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16502,6 +17224,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16516,6 +17239,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16579,6 +17303,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16593,6 +17318,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16610,6 +17336,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ File ], @@ -16628,6 +17355,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: global::OpenApiGenerator.JsonConverters.DeleteFileResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.DeleteFileResponseObjectJsonConverter, @@ -16645,6 +17373,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16659,6 +17388,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16719,6 +17449,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -16733,6 +17464,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -16792,6 +17524,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -16807,6 +17540,7 @@ Use "assistants" for [Assistants](/docs/api-reference/assistants) and [Message]( ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the model to fine-tune. You can select one of the @@ -16828,6 +17562,7 @@ Example: gpt-3.5-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16842,6 +17577,7 @@ Example: gpt-3.5-turbo, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of an uploaded file that contains training data. @@ -16870,6 +17606,7 @@ Example: file-abc123, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16884,6 +17621,7 @@ Example: file-abc123, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The hyperparameters used for the fine-tuning job., ConverterType: , @@ -16901,6 +17639,7 @@ Example: file-abc123, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16915,6 +17654,7 @@ Example: file-abc123, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A string of up to 18 characters that will be added to your fine-tuned model name. @@ -16936,6 +17676,7 @@ For example, a `suffix` of "custom-model-name" would produce a model name like ` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16950,6 +17691,7 @@ For example, a `suffix` of "custom-model-name" would produce a model name like ` ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of an uploaded file that contains validation data. @@ -16979,6 +17721,7 @@ Example: file-abc123, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -16993,6 +17736,7 @@ Example: file-abc123, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of integrations to enable for your fine-tuning job., ConverterType: , @@ -17010,6 +17754,7 @@ Example: file-abc123, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17024,6 +17769,7 @@ Example: file-abc123, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The seed controls the reproducibility of the job. Passing in the same seed and job parameters should produce the same results, but may differ in rare cases. @@ -17087,6 +17833,7 @@ Example: 42, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -17102,6 +17849,7 @@ Example: 42, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateFineTuningJobRequestHyperparametersBatchSize.Auto, IsDeprecated: false, Summary: @@ -17124,6 +17872,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -17139,6 +17888,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateFineTuningJobRequestHyperparametersLearningRateMultiplier.Auto, IsDeprecated: false, Summary: @@ -17161,6 +17911,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -17176,6 +17927,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateFineTuningJobRequestHyperparametersNEpochs.Auto, IsDeprecated: false, Summary: @@ -17241,6 +17993,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17255,6 +18008,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17315,6 +18069,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17329,6 +18084,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17389,6 +18145,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17403,6 +18160,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17462,6 +18220,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 1, Properties: null, EnumValues: null, @@ -17477,6 +18236,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory1 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of integration to enable. Currently, only "wandb" (Weights and Biases) is supported. @@ -17496,6 +18256,7 @@ The type of integration to enable. Currently, only "wandb" (Weights and Biases) IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17510,6 +18271,7 @@ The type of integration to enable. Currently, only "wandb" (Weights and Biases) ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The settings for your integration with Weights and Biases. This payload specifies the project that @@ -17573,6 +18335,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17587,6 +18350,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the project that the new run will be created under. @@ -17607,6 +18371,7 @@ Example: my-wandb-project, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17621,6 +18386,7 @@ Example: my-wandb-project, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A display name to set for the run. If not set, we will use the Job ID as the name. @@ -17640,6 +18406,7 @@ A display name to set for the run. If not set, we will use the Job ID as the nam IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17654,6 +18421,7 @@ A display name to set for the run. If not set, we will use the Job ID as the nam ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The entity to use for the run. This allows you to set the team or username of the WandB user that you would @@ -17674,6 +18442,7 @@ like associated with the run. If not set, the default entity for the registered IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17688,6 +18457,7 @@ like associated with the run. If not set, the default entity for the registered ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tags to be attached to the newly created run. These tags are passed through directly to WandB. Some @@ -17755,6 +18525,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17769,6 +18540,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17829,6 +18601,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17843,6 +18616,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17860,6 +18634,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17874,6 +18649,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17891,6 +18667,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -17905,6 +18682,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17964,6 +18742,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -17978,6 +18757,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -17995,6 +18775,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ List ], @@ -18013,6 +18794,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.ListFineTuningJobEventsResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ListFineTuningJobEventsResponseObjectJsonConverter, @@ -18073,6 +18855,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18087,6 +18870,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18146,6 +18930,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18160,6 +18945,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18177,6 +18963,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ List ], @@ -18195,6 +18982,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.ListFineTuningJobCheckpointsResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ListFineTuningJobCheckpointsResponseObjectJsonConverter, @@ -18212,6 +19000,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18226,6 +19015,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18243,6 +19033,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18257,6 +19048,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18274,6 +19066,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18288,6 +19081,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18348,6 +19142,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18362,6 +19157,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18421,6 +19217,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 4, Properties: null, EnumValues: null, @@ -18436,6 +19233,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory4 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. The input must not exceed the max input tokens for the model (8192 tokens for `text-embedding-ada-002`), cannot be an empty string, and any array must be 2048 dimensions or less. [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) for counting tokens. @@ -18456,6 +19254,7 @@ Example: The quick brown fox jumped over the lazy dog, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -18471,6 +19270,7 @@ Example: The quick brown fox jumped over the lazy dog, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -18491,6 +19291,7 @@ Example: text-embedding-3-small, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Float, Base64 @@ -18511,6 +19312,7 @@ Example: text-embedding-3-small, ConverterType: global::OpenApiGenerator.JsonConverters.CreateEmbeddingRequestEncodingFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateEmbeddingRequestEncodingFormat.Float, IsDeprecated: false, Summary: @@ -18532,6 +19334,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18546,6 +19349,7 @@ Example: float, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of dimensions the resulting output embeddings should have. Only supported in `text-embedding-3` and later models. @@ -18565,6 +19369,7 @@ The number of dimensions the resulting output embeddings should have. Only suppo IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18579,6 +19384,7 @@ The number of dimensions the resulting output embeddings should have. Only suppo ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). @@ -18642,6 +19448,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18656,6 +19463,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18673,6 +19481,7 @@ Example: user-1234, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18687,6 +19496,7 @@ Example: user-1234, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18750,6 +19560,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18764,6 +19575,7 @@ Example: float, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18781,6 +19593,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18795,6 +19608,7 @@ Example: float, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18812,6 +19626,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -18826,6 +19641,7 @@ Example: float, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -18885,6 +19701,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18899,6 +19716,7 @@ Example: float, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The list of embeddings generated by the model., ConverterType: , @@ -18916,6 +19734,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18930,6 +19749,7 @@ Example: float, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the model used to generate the embedding., ConverterType: , @@ -18947,6 +19767,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ List ], @@ -18965,6 +19786,7 @@ Example: float, ConverterType: global::OpenApiGenerator.JsonConverters.CreateEmbeddingResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always "list"., ConverterType: global::OpenApiGenerator.JsonConverters.CreateEmbeddingResponseObjectJsonConverter, @@ -18982,6 +19804,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -18996,6 +19819,7 @@ Example: float, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The usage information for the request., ConverterType: , @@ -19055,6 +19879,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19069,6 +19894,7 @@ Example: float, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of tokens used by the prompt., ConverterType: , @@ -19086,6 +19912,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19100,6 +19927,7 @@ Example: float, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The total number of tokens used by the request., ConverterType: , @@ -19160,6 +19988,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19174,6 +20003,7 @@ Example: float, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19233,6 +20063,7 @@ Example: float, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -19247,6 +20078,7 @@ Example: float, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -19266,6 +20098,7 @@ The audio file object (not file name) to transcribe, in one of these formats: fl IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19280,6 +20113,7 @@ The audio file object (not file name) to transcribe, in one of these formats: fl ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -19299,6 +20133,7 @@ The audio file object (not file name) to transcribe, in one of these formats: fl IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -19314,6 +20149,7 @@ The audio file object (not file name) to transcribe, in one of these formats: fl ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. Only `whisper-1` (which is powered by our open source Whisper V2 model) is currently available. @@ -19334,6 +20170,7 @@ Example: whisper-1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19348,6 +20185,7 @@ Example: whisper-1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. @@ -19367,6 +20205,7 @@ The language of the input audio. Supplying the input language in [ISO-639-1](htt IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19381,6 +20220,7 @@ The language of the input audio. Supplying the input language in [ISO-639-1](htt ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. @@ -19400,6 +20240,7 @@ An optional text to guide the model's style or continue a previous audio segment IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Json, Text, @@ -19426,6 +20267,7 @@ An optional text to guide the model's style or continue a previous audio segment ConverterType: global::OpenApiGenerator.JsonConverters.CreateTranscriptionRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateTranscriptionRequestResponseFormat.Json, IsDeprecated: false, Summary: @@ -19447,6 +20289,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19461,6 +20304,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -19482,6 +20326,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19496,6 +20341,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -19560,6 +20406,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19574,6 +20421,7 @@ Default Value: [segment], ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19591,6 +20439,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19605,6 +20454,7 @@ Default Value: [segment], ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19622,6 +20472,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19636,6 +20487,7 @@ Default Value: [segment], ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19653,6 +20505,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19667,6 +20520,7 @@ Default Value: [segment], ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19684,6 +20538,7 @@ Default Value: [segment], IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19698,6 +20553,7 @@ Default Value: [segment], ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19761,6 +20617,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19775,6 +20632,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19792,6 +20650,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19806,6 +20665,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19866,6 +20726,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -19880,6 +20741,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -19939,6 +20801,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -19953,6 +20816,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The transcribed text., ConverterType: , @@ -20012,6 +20876,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20026,6 +20891,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Unique identifier of the segment., ConverterType: , @@ -20043,6 +20909,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20057,6 +20924,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Seek offset of the segment., ConverterType: , @@ -20074,6 +20942,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20088,6 +20957,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Start time of the segment in seconds., ConverterType: , @@ -20105,6 +20975,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20119,6 +20990,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: End time of the segment in seconds., ConverterType: , @@ -20136,6 +21008,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20150,6 +21023,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Text content of the segment., ConverterType: , @@ -20167,6 +21041,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20181,6 +21056,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Array of token IDs for the text content., ConverterType: , @@ -20198,6 +21074,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20212,6 +21089,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Temperature parameter used for generating the segment., ConverterType: , @@ -20229,6 +21107,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20243,6 +21122,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Average logprob of the segment. If the value is lower than -1, consider the logprobs failed., ConverterType: , @@ -20260,6 +21140,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20274,6 +21155,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed., ConverterType: , @@ -20291,6 +21173,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20305,6 +21188,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Probability of no speech in the segment. If the value is higher than 1.0 and the `avg_logprob` is below -1, consider this segment silent., ConverterType: , @@ -20364,6 +21248,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20378,6 +21263,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text content of the word., ConverterType: , @@ -20395,6 +21281,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20409,6 +21296,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Start time of the word in seconds., ConverterType: , @@ -20426,6 +21314,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20440,6 +21329,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: End time of the word in seconds., ConverterType: , @@ -20499,6 +21389,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20513,6 +21404,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The language of the input audio., ConverterType: , @@ -20530,6 +21422,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20544,6 +21437,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The duration of the input audio., ConverterType: , @@ -20561,6 +21455,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20575,6 +21470,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The transcribed text., ConverterType: , @@ -20592,6 +21488,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20606,6 +21503,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Extracted words and their corresponding timestamps., ConverterType: , @@ -20623,6 +21521,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20637,6 +21536,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Segments of the transcribed text and their corresponding details., ConverterType: , @@ -20696,6 +21596,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: true, Properties: null, EnumValues: null, Namespace: G, @@ -20710,6 +21611,7 @@ Default Value: json, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The audio file object (not file name) translate, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -20729,6 +21631,7 @@ The audio file object (not file name) translate, in one of these formats: flac, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20743,6 +21646,7 @@ The audio file object (not file name) translate, in one of these formats: flac, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: true, IsDeprecated: false, Summary: The audio file object (not file name) translate, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm. @@ -20762,6 +21666,7 @@ The audio file object (not file name) translate, in one of these formats: flac, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -20777,6 +21682,7 @@ The audio file object (not file name) translate, in one of these formats: flac, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. Only `whisper-1` (which is powered by our open source Whisper V2 model) is currently available. @@ -20797,6 +21703,7 @@ Example: whisper-1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20811,6 +21718,7 @@ Example: whisper-1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. @@ -20830,6 +21738,7 @@ An optional text to guide the model's style or continue a previous audio segment IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20844,6 +21753,7 @@ An optional text to guide the model's style or continue a previous audio segment ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: "json", IsDeprecated: false, Summary: @@ -20865,6 +21775,7 @@ Default Value: json, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -20879,6 +21790,7 @@ Default Value: json, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 0, IsDeprecated: false, Summary: @@ -20943,6 +21855,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -20957,6 +21870,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21016,6 +21930,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21030,6 +21945,7 @@ Default Value: 0, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21089,6 +22005,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21103,6 +22020,7 @@ Default Value: 0, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The language of the output translation (always `english`)., ConverterType: , @@ -21120,6 +22038,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21134,6 +22053,7 @@ Default Value: 0, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The duration of the input audio., ConverterType: , @@ -21151,6 +22071,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21165,6 +22086,7 @@ Default Value: 0, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The translated text., ConverterType: , @@ -21182,6 +22104,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21196,6 +22119,7 @@ Default Value: 0, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Segments of the translated text and their corresponding details., ConverterType: , @@ -21255,6 +22179,7 @@ Default Value: 0, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -21270,6 +22195,7 @@ Default Value: 0, ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` @@ -21289,6 +22215,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21303,6 +22230,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text to generate audio for. The maximum length is 4096 characters., ConverterType: , @@ -21320,6 +22248,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Alloy, Echo, @@ -21348,6 +22277,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` ConverterType: global::OpenApiGenerator.JsonConverters.CreateSpeechRequestVoiceJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The voice to use when generating the audio. Supported voices are `alloy`, `echo`, `fable`, `onyx`, `nova`, and `shimmer`. Previews of the voices are available in the [Text to speech guide](/docs/guides/text-to-speech/voice-options)., ConverterType: global::OpenApiGenerator.JsonConverters.CreateSpeechRequestVoiceJsonConverter, @@ -21365,6 +22295,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Mp3, Opus, @@ -21393,6 +22324,7 @@ One of the available [TTS models](/docs/models/tts): `tts-1` or `tts-1-hd` ConverterType: global::OpenApiGenerator.JsonConverters.CreateSpeechRequestResponseFormatJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.CreateSpeechRequestResponseFormat.Mp3, IsDeprecated: false, Summary: @@ -21413,6 +22345,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -21427,6 +22360,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -21490,6 +22424,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21504,6 +22439,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21521,6 +22457,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21535,6 +22472,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21552,6 +22490,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21566,6 +22505,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21583,6 +22523,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21597,6 +22538,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21614,6 +22556,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21628,6 +22571,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21645,6 +22589,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21659,6 +22604,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21719,6 +22665,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21733,6 +22680,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21750,6 +22698,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21764,6 +22713,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21781,6 +22731,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21795,6 +22746,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21812,6 +22764,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21826,6 +22779,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21843,6 +22797,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21857,6 +22812,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21874,6 +22830,7 @@ Default Value: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21888,6 +22845,7 @@ Default Value: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21950,6 +22908,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21964,6 +22923,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -21981,6 +22941,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -21995,6 +22956,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22054,6 +23016,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22068,6 +23031,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model identifier, which can be referenced in the API endpoints., ConverterType: , @@ -22085,6 +23049,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22099,6 +23064,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) when the model was created., ConverterType: , @@ -22116,6 +23082,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Model ], @@ -22134,6 +23101,7 @@ Default Value: mp3, ConverterType: global::OpenApiGenerator.JsonConverters.ModelObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always "model"., ConverterType: global::OpenApiGenerator.JsonConverters.ModelObjectJsonConverter, @@ -22151,6 +23119,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22165,6 +23134,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The organization that owns the model., ConverterType: , @@ -22225,6 +23195,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22239,6 +23210,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22298,6 +23270,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22312,6 +23285,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The file identifier, which can be referenced in the API endpoints., ConverterType: , @@ -22329,6 +23303,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22343,6 +23318,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The size of the file, in bytes., ConverterType: , @@ -22360,6 +23336,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22374,6 +23351,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the file was created., ConverterType: , @@ -22391,6 +23369,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22405,6 +23384,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the file., ConverterType: , @@ -22422,6 +23402,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ File ], @@ -22440,6 +23421,7 @@ Default Value: mp3, ConverterType: global::OpenApiGenerator.JsonConverters.OpenAIFileObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `file`., ConverterType: global::OpenApiGenerator.JsonConverters.OpenAIFileObjectJsonConverter, @@ -22457,6 +23439,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Assistants, AssistantsOutput, @@ -22487,6 +23470,7 @@ Default Value: mp3, ConverterType: global::OpenApiGenerator.JsonConverters.OpenAIFilePurposeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The intended purpose of the file. Supported values are `assistants`, `assistants_output`, `batch`, `batch_output`, `fine-tune`, `fine-tune-results` and `vision`., ConverterType: global::OpenApiGenerator.JsonConverters.OpenAIFilePurposeJsonConverter, @@ -22504,6 +23488,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Uploaded, Processed, @@ -22526,6 +23511,7 @@ Default Value: mp3, ConverterType: global::OpenApiGenerator.JsonConverters.OpenAIFileStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated. The current status of the file, which can be either `uploaded`, `processed`, or `error`., ConverterType: global::OpenApiGenerator.JsonConverters.OpenAIFileStatusJsonConverter, @@ -22543,6 +23529,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -22557,6 +23544,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: Deprecated. For details on why a fine-tuning training file failed validation, see the `error` field on `fine_tuning.job`., ConverterType: , @@ -22617,6 +23605,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22631,6 +23620,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22691,6 +23681,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22705,6 +23696,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22722,6 +23714,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22736,6 +23729,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22753,6 +23747,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22767,6 +23762,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22784,6 +23780,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22798,6 +23795,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22815,6 +23813,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22829,6 +23828,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22846,6 +23846,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22860,6 +23861,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22877,6 +23879,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22891,6 +23894,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22951,6 +23955,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22965,6 +23970,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -22982,6 +23988,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -22996,6 +24003,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23013,6 +24021,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23027,6 +24036,7 @@ Default Value: mp3, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23086,6 +24096,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23100,6 +24111,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the embedding in the list of embeddings., ConverterType: , @@ -23117,6 +24129,7 @@ Default Value: mp3, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23131,6 +24144,7 @@ Default Value: mp3, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The embedding vector, which is a list of floats. The length of vector depends on the model as listed in the [embedding guide](/docs/guides/embeddings). @@ -23150,6 +24164,7 @@ The embedding vector, which is a list of floats. The length of vector depends on IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Embedding ], @@ -23168,6 +24183,7 @@ The embedding vector, which is a list of floats. The length of vector depends on ConverterType: global::OpenApiGenerator.JsonConverters.EmbeddingObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always "embedding"., ConverterType: global::OpenApiGenerator.JsonConverters.EmbeddingObjectJsonConverter, @@ -23230,6 +24246,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -23244,6 +24261,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -23303,6 +24321,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23317,6 +24336,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object identifier, which can be referenced in the API endpoints., ConverterType: , @@ -23334,6 +24354,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23348,6 +24369,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the fine-tuning job was created., ConverterType: , @@ -23365,6 +24387,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23379,6 +24402,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: For fine-tuning jobs that have `failed`, this will contain more information on the cause of the failure., ConverterType: , @@ -23396,6 +24420,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23410,6 +24435,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running., ConverterType: , @@ -23427,6 +24453,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23441,6 +24468,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the fine-tuning job was finished. The value will be null if the fine-tuning job is still running., ConverterType: , @@ -23458,6 +24486,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23472,6 +24501,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The hyperparameters used for the fine-tuning job. See the [fine-tuning guide](/docs/guides/fine-tuning) for more details., ConverterType: , @@ -23489,6 +24519,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23503,6 +24534,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The base model that is being fine-tuned., ConverterType: , @@ -23520,6 +24552,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FineTuningJob ], @@ -23538,6 +24571,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always "fine_tuning.job"., ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobObjectJsonConverter, @@ -23555,6 +24589,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23569,6 +24604,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The organization that owns the fine-tuning job., ConverterType: , @@ -23586,6 +24622,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23600,6 +24637,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The compiled results file ID(s) for the fine-tuning job. You can retrieve the results with the [Files API](/docs/api-reference/files/retrieve-contents)., ConverterType: , @@ -23617,6 +24655,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ValidatingFiles, Queued, @@ -23645,6 +24684,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The current status of the fine-tuning job, which can be either `validating_files`, `queued`, `running`, `succeeded`, `failed`, or `cancelled`., ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobStatusJsonConverter, @@ -23662,6 +24702,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23676,6 +24717,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The total number of billable tokens processed by this fine-tuning job. The value will be null if the fine-tuning job is still running., ConverterType: , @@ -23693,6 +24735,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23707,6 +24750,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The file ID used for training. You can retrieve the training data with the [Files API](/docs/api-reference/files/retrieve-contents)., ConverterType: , @@ -23724,6 +24768,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23738,6 +24783,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The file ID used for validation. You can retrieve the validation results with the [Files API](/docs/api-reference/files/retrieve-contents)., ConverterType: , @@ -23755,6 +24801,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23769,6 +24816,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of integrations to enable for this fine-tuning job., ConverterType: , @@ -23786,6 +24834,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23800,6 +24849,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The seed used for the fine-tuning job., ConverterType: , @@ -23817,6 +24867,7 @@ Represents an embedding vector returned by embedding endpoint. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23831,6 +24882,7 @@ Represents an embedding vector returned by embedding endpoint. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the fine-tuning job is estimated to finish. The value will be null if the fine-tuning job is not running., ConverterType: , @@ -23892,6 +24944,7 @@ The `fine_tuning.job` object represents a fine-tuning job that has been created IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23906,6 +24959,7 @@ The `fine_tuning.job` object represents a fine-tuning job that has been created ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A machine-readable error code., ConverterType: , @@ -23923,6 +24977,7 @@ The `fine_tuning.job` object represents a fine-tuning job that has been created IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23937,6 +24992,7 @@ The `fine_tuning.job` object represents a fine-tuning job that has been created ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A human-readable error message., ConverterType: , @@ -23954,6 +25010,7 @@ The `fine_tuning.job` object represents a fine-tuning job that has been created IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -23968,6 +25025,7 @@ The `fine_tuning.job` object represents a fine-tuning job that has been created ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The parameter that was invalid, usually `training_file` or `validation_file`. This field will be null if the failure was not parameter-specific., ConverterType: , @@ -24027,6 +25085,7 @@ The `fine_tuning.job` object represents a fine-tuning job that has been created IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -24042,6 +25101,7 @@ The `fine_tuning.job` object represents a fine-tuning job that has been created ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.FineTuningJobHyperparametersNEpochs.Auto, IsDeprecated: false, Summary: @@ -24106,6 +25166,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24120,6 +25181,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24180,6 +25242,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24194,6 +25257,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24254,6 +25318,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24268,6 +25333,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24285,6 +25351,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24299,6 +25366,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24316,6 +25384,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24330,6 +25399,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24347,6 +25417,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24361,6 +25432,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24378,6 +25450,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24392,6 +25465,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24409,6 +25483,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24423,6 +25498,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24482,6 +25558,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Wandb ], @@ -24500,6 +25577,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningIntegrationTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the integration being enabled for the fine-tuning job, ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningIntegrationTypeJsonConverter, @@ -24517,6 +25595,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24531,6 +25610,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The settings for your integration with Weights and Biases. This payload specifies the project that @@ -24594,6 +25674,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24608,6 +25689,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the project that the new run will be created under. @@ -24628,6 +25710,7 @@ Example: my-wandb-project, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24642,6 +25725,7 @@ Example: my-wandb-project, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A display name to set for the run. If not set, we will use the Job ID as the name. @@ -24661,6 +25745,7 @@ A display name to set for the run. If not set, we will use the Job ID as the nam IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24675,6 +25760,7 @@ A display name to set for the run. If not set, we will use the Job ID as the nam ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The entity to use for the run. This allows you to set the team or username of the WandB user that you would @@ -24695,6 +25781,7 @@ like associated with the run. If not set, the default entity for the registered IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24709,6 +25796,7 @@ like associated with the run. If not set, the default entity for the registered ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tags to be attached to the newly created run. These tags are passed through directly to WandB. Some @@ -24776,6 +25864,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -24790,6 +25879,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24849,6 +25939,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24863,6 +25954,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24880,6 +25972,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24894,6 +25987,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24911,6 +26005,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Info, Warn, @@ -24933,6 +26028,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobEventLevelJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobEventLevelJsonConverter, @@ -24950,6 +26046,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -24964,6 +26061,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -24981,6 +26079,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FineTuningJobEvent ], @@ -24999,6 +26098,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobEventObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobEventObjectJsonConverter, @@ -25059,6 +26159,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25073,6 +26174,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25090,6 +26192,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25104,6 +26207,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25121,6 +26225,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25135,6 +26240,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25195,6 +26301,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25209,6 +26316,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25268,6 +26376,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25282,6 +26391,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The checkpoint identifier, which can be referenced in the API endpoints., ConverterType: , @@ -25299,6 +26409,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25313,6 +26424,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the checkpoint was created., ConverterType: , @@ -25330,6 +26442,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25344,6 +26457,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the fine-tuned checkpoint model that is created., ConverterType: , @@ -25361,6 +26475,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25375,6 +26490,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The step number that the checkpoint was created at., ConverterType: , @@ -25392,6 +26508,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25406,6 +26523,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Metrics at the step number during the fine-tuning job., ConverterType: , @@ -25423,6 +26541,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25437,6 +26556,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the fine-tuning job that this checkpoint was created from., ConverterType: , @@ -25454,6 +26574,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FineTuningJobCheckpoint ], @@ -25472,6 +26593,7 @@ to your run, and set a default entity (team, username, etc) to be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobCheckpointObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always "fine_tuning.job.checkpoint"., ConverterType: global::OpenApiGenerator.JsonConverters.FineTuningJobCheckpointObjectJsonConverter, @@ -25533,6 +26655,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25547,6 +26670,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25564,6 +26688,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25578,6 +26703,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25595,6 +26721,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25609,6 +26736,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25626,6 +26754,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25640,6 +26769,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25657,6 +26787,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25671,6 +26802,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25688,6 +26820,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25702,6 +26835,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25719,6 +26853,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25733,6 +26868,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25793,6 +26929,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -25807,6 +26944,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25866,6 +27004,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25880,6 +27019,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -25897,6 +27037,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25911,6 +27052,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tools the model may generate JSON inputs for., ConverterType: , @@ -25928,6 +27070,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25942,6 +27085,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use., ConverterType: , @@ -25959,6 +27103,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -25973,6 +27118,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: true, Summary: A list of functions the model may generate JSON inputs for., ConverterType: , @@ -26032,6 +27178,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26046,6 +27193,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The input prompt for this training example., ConverterType: , @@ -26063,6 +27211,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26077,6 +27226,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The desired completion for this training example., ConverterType: , @@ -26136,6 +27286,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26150,6 +27301,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens in the generated completion., ConverterType: , @@ -26167,6 +27319,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26181,6 +27334,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of tokens in the prompt., ConverterType: , @@ -26198,6 +27352,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26212,6 +27367,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Total number of tokens used in the request (prompt + completion)., ConverterType: , @@ -26271,6 +27427,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26285,6 +27442,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of completion tokens used over the course of the run., ConverterType: , @@ -26302,6 +27460,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26316,6 +27475,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of prompt tokens used over the course of the run., ConverterType: , @@ -26333,6 +27493,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26347,6 +27508,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Total number of tokens used (prompt + completion)., ConverterType: , @@ -26406,6 +27568,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26420,6 +27583,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of completion tokens used over the course of the run step., ConverterType: , @@ -26437,6 +27601,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26451,6 +27616,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of prompt tokens used over the course of the run step., ConverterType: , @@ -26468,6 +27634,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26482,6 +27649,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Total number of tokens used (prompt + completion)., ConverterType: , @@ -26542,6 +27710,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26556,6 +27725,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26573,6 +27743,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26587,6 +27758,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26648,6 +27820,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Text, JsonObject @@ -26668,6 +27841,7 @@ The `fine_tuning.job.checkpoint` object represents a model checkpoint for a fine ConverterType: global::OpenApiGenerator.JsonConverters.AssistantsApiResponseFormatTypeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.AssistantsApiResponseFormatType.Text, IsDeprecated: false, Summary: @@ -26734,6 +27908,7 @@ An object describing the expected output of the model. If `json_object` only `fu IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26748,6 +27923,7 @@ An object describing the expected output of the model. If `json_object` only `fu ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26765,6 +27941,7 @@ An object describing the expected output of the model. If `json_object` only `fu IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -26779,6 +27956,7 @@ An object describing the expected output of the model. If `json_object` only `fu ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -26841,6 +28019,7 @@ Example: json_object, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26855,6 +28034,7 @@ Example: json_object, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier, which can be referenced in API endpoints., ConverterType: , @@ -26872,6 +28052,7 @@ Example: json_object, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Assistant ], @@ -26890,6 +28071,7 @@ Example: json_object, ConverterType: global::OpenApiGenerator.JsonConverters.AssistantObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `assistant`., ConverterType: global::OpenApiGenerator.JsonConverters.AssistantObjectObjectJsonConverter, @@ -26907,6 +28089,7 @@ Example: json_object, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26921,6 +28104,7 @@ Example: json_object, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the assistant was created., ConverterType: , @@ -26938,6 +28122,7 @@ Example: json_object, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26952,6 +28137,7 @@ Example: json_object, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the assistant. The maximum length is 256 characters. @@ -26971,6 +28157,7 @@ The name of the assistant. The maximum length is 256 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -26985,6 +28172,7 @@ The name of the assistant. The maximum length is 256 characters. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The description of the assistant. The maximum length is 512 characters. @@ -27004,6 +28192,7 @@ The description of the assistant. The maximum length is 512 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27018,6 +28207,7 @@ The description of the assistant. The maximum length is 512 characters. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -27037,6 +28227,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27051,6 +28242,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The system instructions that the assistant uses. The maximum length is 256,000 characters. @@ -27070,6 +28262,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27084,6 +28277,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. @@ -27103,6 +28297,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27117,6 +28312,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -27136,6 +28332,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27150,6 +28347,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -27170,6 +28368,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27184,6 +28383,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -27206,6 +28406,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27220,6 +28421,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -27244,6 +28446,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -27259,6 +28462,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -27324,6 +28528,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27338,6 +28543,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27355,6 +28561,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27369,6 +28576,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27430,6 +28638,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27444,6 +28653,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter`` tool. There can be a maximum of 20 files associated with the tool. @@ -27505,6 +28715,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27519,6 +28730,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [vector store](/docs/api-reference/vector-stores/object) attached to this assistant. There can be a maximum of 1 vector store attached to the assistant. @@ -27581,6 +28793,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27595,6 +28808,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27655,6 +28869,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27669,6 +28884,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27686,6 +28902,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -27700,6 +28917,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -27761,6 +28979,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -27776,6 +28995,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -27796,6 +29016,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27810,6 +29031,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the assistant. The maximum length is 256 characters. @@ -27829,6 +29051,7 @@ The name of the assistant. The maximum length is 256 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27843,6 +29066,7 @@ The name of the assistant. The maximum length is 256 characters. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The description of the assistant. The maximum length is 512 characters. @@ -27862,6 +29086,7 @@ The description of the assistant. The maximum length is 512 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27876,6 +29101,7 @@ The description of the assistant. The maximum length is 512 characters. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The system instructions that the assistant uses. The maximum length is 256,000 characters. @@ -27895,6 +29121,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27909,6 +29136,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. @@ -27928,6 +29156,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27942,6 +29171,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -27961,6 +29191,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -27975,6 +29206,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -27995,6 +29227,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28009,6 +29242,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -28031,6 +29265,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28045,6 +29280,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -28069,6 +29305,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -28084,6 +29321,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -28149,6 +29387,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28163,6 +29402,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28180,6 +29420,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -28195,6 +29436,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -28256,6 +29498,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28270,6 +29513,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool. @@ -28331,6 +29575,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28345,6 +29590,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [vector store](/docs/api-reference/vector-stores/object) attached to this assistant. There can be a maximum of 1 vector store attached to the assistant. @@ -28364,6 +29610,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this as IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28378,6 +29625,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this as ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A helper to create a [vector store](/docs/api-reference/vector-stores/object) with file_ids and attach it to this assistant. There can be a maximum of 1 vector store attached to the assistant. @@ -28439,6 +29687,7 @@ A helper to create a [vector store](/docs/api-reference/vector-stores/object) wi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28453,6 +29702,7 @@ A helper to create a [vector store](/docs/api-reference/vector-stores/object) wi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [file](/docs/api-reference/files) IDs to add to the vector store. There can be a maximum of 10000 files in a vector store. @@ -28472,6 +29722,7 @@ A list of [file](/docs/api-reference/files) IDs to add to the vector store. Ther IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -28487,6 +29738,7 @@ A list of [file](/docs/api-reference/files) IDs to add to the vector store. Ther ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy., @@ -28505,6 +29757,7 @@ A list of [file](/docs/api-reference/files) IDs to add to the vector store. Ther IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28519,6 +29772,7 @@ A list of [file](/docs/api-reference/files) IDs to add to the vector store. Ther ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -28623,6 +29877,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28637,6 +29892,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28696,6 +29952,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28710,6 +29967,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of tokens in each chunk. The default value is `800`. The minimum value is `100` and the maximum value is `4096`., ConverterType: , @@ -28727,6 +29985,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -28741,6 +30000,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of tokens that overlap between chunks. The default value is `400`. @@ -28805,6 +30065,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28819,6 +30080,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28836,6 +30098,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28850,6 +30113,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28867,6 +30131,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28881,6 +30146,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28898,6 +30164,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28912,6 +30179,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28929,6 +30197,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28943,6 +30212,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28960,6 +30230,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -28974,6 +30245,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -28991,6 +30263,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29005,6 +30278,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29022,6 +30296,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29036,6 +30311,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29053,6 +30329,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29067,6 +30344,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29084,6 +30362,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29098,6 +30377,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29115,6 +30395,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29129,6 +30410,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29146,6 +30428,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29160,6 +30443,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29177,6 +30461,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29191,6 +30476,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29208,6 +30494,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29222,6 +30509,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29239,6 +30527,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29253,6 +30542,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29270,6 +30560,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29284,6 +30575,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29301,6 +30593,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29315,6 +30608,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29332,6 +30626,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29346,6 +30641,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29363,6 +30659,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29377,6 +30674,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29394,6 +30692,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29408,6 +30707,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29468,6 +30768,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29482,6 +30783,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29499,6 +30801,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -29513,6 +30816,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29574,6 +30878,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 1, Properties: null, EnumValues: null, @@ -29589,6 +30894,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory1 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. @@ -29608,6 +30914,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29622,6 +30929,7 @@ ID of the model to use. You can use the [List models](/docs/api-reference/models ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the assistant. The maximum length is 256 characters. @@ -29641,6 +30949,7 @@ The name of the assistant. The maximum length is 256 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29655,6 +30964,7 @@ The name of the assistant. The maximum length is 256 characters. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The description of the assistant. The maximum length is 512 characters. @@ -29674,6 +30984,7 @@ The description of the assistant. The maximum length is 512 characters. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29688,6 +30999,7 @@ The description of the assistant. The maximum length is 512 characters. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The system instructions that the assistant uses. The maximum length is 256,000 characters. @@ -29707,6 +31019,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29721,6 +31034,7 @@ The system instructions that the assistant uses. The maximum length is 256,000 c ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`. @@ -29740,6 +31054,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29754,6 +31069,7 @@ A list of tool enabled on the assistant. There can be a maximum of 128 tools per ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -29773,6 +31089,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29787,6 +31104,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -29807,6 +31125,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29821,6 +31140,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -29842,6 +31162,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29856,6 +31177,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -29880,6 +31202,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -29895,6 +31218,7 @@ Example: 1, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -29960,6 +31284,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -29974,6 +31299,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -29991,6 +31317,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30005,6 +31332,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30066,6 +31394,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30080,6 +31409,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Overrides the list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool. @@ -30141,6 +31471,7 @@ Overrides the list of [file](/docs/api-reference/files) IDs made available to th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30155,6 +31486,7 @@ Overrides the list of [file](/docs/api-reference/files) IDs made available to th ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Overrides the [vector store](/docs/api-reference/vector-stores/object) attached to this assistant. There can be a maximum of 1 vector store attached to the assistant. @@ -30217,6 +31549,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30231,6 +31564,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30248,6 +31582,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30262,6 +31597,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30323,6 +31659,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30337,6 +31674,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30354,6 +31692,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30368,6 +31707,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30385,6 +31725,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ AssistantDeleted ], @@ -30403,6 +31744,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: global::OpenApiGenerator.JsonConverters.DeleteAssistantResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.DeleteAssistantResponseObjectJsonConverter, @@ -30463,6 +31805,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30477,6 +31820,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30536,6 +31880,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30550,6 +31895,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: list, ConverterType: , @@ -30567,6 +31913,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30581,6 +31928,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30598,6 +31946,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30612,6 +31961,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: asst_abc123, ConverterType: , @@ -30629,6 +31979,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30643,6 +31994,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: asst_abc456, ConverterType: , @@ -30660,6 +32012,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30674,6 +32027,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: false, ConverterType: , @@ -30733,6 +32087,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ CodeInterpreter ], @@ -30751,6 +32106,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: global::OpenApiGenerator.JsonConverters.AssistantToolsCodeTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool being defined: `code_interpreter`, ConverterType: global::OpenApiGenerator.JsonConverters.AssistantToolsCodeTypeJsonConverter, @@ -30811,6 +32167,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -30825,6 +32182,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -30884,6 +32242,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FileSearch ], @@ -30902,6 +32261,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: global::OpenApiGenerator.JsonConverters.AssistantToolsFileSearchTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool being defined: `file_search`, ConverterType: global::OpenApiGenerator.JsonConverters.AssistantToolsFileSearchTypeJsonConverter, @@ -30919,6 +32279,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -30933,6 +32294,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Overrides for the file search tool., ConverterType: , @@ -30992,6 +32354,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31006,6 +32369,7 @@ Overrides the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of results the file search tool should output. The default is 20 for gpt-4* models and 5 for gpt-3.5-turbo. This number should be between 1 and 50 inclusive. @@ -31070,6 +32434,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31084,6 +32449,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31143,6 +32509,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FileSearch ], @@ -31161,6 +32528,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: global::OpenApiGenerator.JsonConverters.AssistantToolsFileSearchTypeOnlyTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool being defined: `file_search`, ConverterType: global::OpenApiGenerator.JsonConverters.AssistantToolsFileSearchTypeOnlyTypeJsonConverter, @@ -31221,6 +32589,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31235,6 +32604,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31294,6 +32664,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -31312,6 +32683,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: global::OpenApiGenerator.JsonConverters.AssistantToolsFunctionTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool being defined: `function`, ConverterType: global::OpenApiGenerator.JsonConverters.AssistantToolsFunctionTypeJsonConverter, @@ -31329,6 +32701,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ description, name, @@ -31347,6 +32720,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31407,6 +32781,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31421,6 +32796,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31480,6 +32856,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto, LastMessages @@ -31500,6 +32877,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: global::OpenApiGenerator.JsonConverters.TruncationObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The truncation strategy to use for the thread. The default is `auto`. If set to `last_messages`, the thread will be truncated to the n most recent messages in the thread. When set to `auto`, messages in the middle of the thread will be dropped to fit the context length of the model, `max_prompt_tokens`., ConverterType: global::OpenApiGenerator.JsonConverters.TruncationObjectTypeJsonConverter, @@ -31517,6 +32895,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31531,6 +32910,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of most recent messages from the thread when constructing the context for the run., ConverterType: , @@ -31591,6 +32971,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31605,6 +32986,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31622,6 +33004,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31636,6 +33019,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31696,6 +33080,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31710,6 +33095,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31727,6 +33113,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31741,6 +33128,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31758,6 +33146,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -31772,6 +33161,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31833,6 +33223,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function, CodeInterpreter, @@ -31855,6 +33246,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: global::OpenApiGenerator.JsonConverters.AssistantsNamedToolChoiceTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the tool. If type is `function`, the function name must be set, ConverterType: global::OpenApiGenerator.JsonConverters.AssistantsNamedToolChoiceTypeJsonConverter, @@ -31872,6 +33264,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31886,6 +33279,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -31945,6 +33339,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -31959,6 +33354,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function to call., ConverterType: , @@ -32019,6 +33415,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32033,6 +33430,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32050,6 +33448,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32064,6 +33463,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32081,6 +33481,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -32095,6 +33496,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -32154,6 +33556,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32168,6 +33571,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier, which can be referenced in API endpoints., ConverterType: , @@ -32185,6 +33589,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRun ], @@ -32203,6 +33608,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `thread.run`., ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectObjectJsonConverter, @@ -32220,6 +33626,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32234,6 +33641,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run was created., ConverterType: , @@ -32251,6 +33659,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32265,6 +33674,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [thread](/docs/api-reference/threads) that was executed on as a part of this run., ConverterType: , @@ -32282,6 +33692,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32296,6 +33707,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [assistant](/docs/api-reference/assistants) used for execution of this run., ConverterType: , @@ -32313,6 +33725,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Queued, InProgress, @@ -32347,6 +33760,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The status of the run, which can be either `queued`, `in_progress`, `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, `incomplete`, or `expired`., ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectStatusJsonConverter, @@ -32364,6 +33778,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32378,6 +33793,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Details on the action required to continue the run. Will be `null` if no action is required., ConverterType: , @@ -32395,6 +33811,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32409,6 +33826,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The last error associated with this run. Will be `null` if there are no errors., ConverterType: , @@ -32426,6 +33844,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32440,6 +33859,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run will expire., ConverterType: , @@ -32457,6 +33877,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32471,6 +33892,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run was started., ConverterType: , @@ -32488,6 +33910,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32502,6 +33925,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run was cancelled., ConverterType: , @@ -32519,6 +33943,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32533,6 +33958,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run failed., ConverterType: , @@ -32550,6 +33976,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32564,6 +33991,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run was completed., ConverterType: , @@ -32581,6 +34009,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32595,6 +34024,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Details on why the run is incomplete. Will be `null` if the run is not incomplete., ConverterType: , @@ -32612,6 +34042,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32626,6 +34057,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model that the [assistant](/docs/api-reference/assistants) used for this run., ConverterType: , @@ -32643,6 +34075,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32657,6 +34090,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The instructions that the [assistant](/docs/api-reference/assistants) used for this run., ConverterType: , @@ -32674,6 +34108,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32688,6 +34123,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The list of tools that the [assistant](/docs/api-reference/assistants) used for this run., ConverterType: , @@ -32705,6 +34141,7 @@ Note that the file search tool may output fewer than `max_num_results` results. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32719,6 +34156,7 @@ Note that the file search tool may output fewer than `max_num_results` results. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -32739,6 +34177,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ completion_tokens, prompt_tokens, @@ -32757,6 +34196,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Usage statistics related to the run. This value will be `null` if the run is not in a terminal state (i.e. `in_progress`, `queued`, etc.)., ConverterType: , @@ -32774,6 +34214,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32788,6 +34229,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The sampling temperature used for this run. If not set, defaults to 1., ConverterType: , @@ -32805,6 +34247,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32819,6 +34262,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The nucleus sampling value used for this run. If not set, defaults to 1., ConverterType: , @@ -32836,6 +34280,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32850,6 +34295,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of prompt tokens specified to have been used over the course of the run. @@ -32869,6 +34315,7 @@ The maximum number of prompt tokens specified to have been used over the course IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32883,6 +34330,7 @@ The maximum number of prompt tokens specified to have been used over the course ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of completion tokens specified to have been used over the course of the run. @@ -32902,6 +34350,7 @@ The maximum number of completion tokens specified to have been used over the cou IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, last_messages @@ -32919,6 +34368,7 @@ The maximum number of completion tokens specified to have been used over the cou ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls for how a thread will be truncated prior to the run. Use this to control the intial context window of the run., ConverterType: , @@ -32936,6 +34386,7 @@ The maximum number of completion tokens specified to have been used over the cou IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -32951,6 +34402,7 @@ The maximum number of completion tokens specified to have been used over the cou ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls which (if any) tool is called by the model. @@ -32974,6 +34426,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32988,6 +34441,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use., ConverterType: , @@ -33005,6 +34459,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -33020,6 +34475,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -33085,6 +34541,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ SubmitToolOutputs ], @@ -33103,6 +34560,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectRequiredActionTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: For now, this is always `submit_tool_outputs`., ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectRequiredActionTypeJsonConverter, @@ -33120,6 +34578,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33134,6 +34593,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Details on the tool outputs needed for this run to continue., ConverterType: , @@ -33193,6 +34653,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33207,6 +34668,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of the relevant tool calls., ConverterType: , @@ -33267,6 +34729,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33281,6 +34744,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33340,6 +34804,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ServerError, RateLimitExceeded, @@ -33362,6 +34827,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectLastErrorCodeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: One of `server_error`, `rate_limit_exceeded`, or `invalid_prompt`., ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectLastErrorCodeJsonConverter, @@ -33379,6 +34845,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -33393,6 +34860,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A human-readable description of the error., ConverterType: , @@ -33453,6 +34921,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33467,6 +34936,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33484,6 +34954,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33498,6 +34969,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33515,6 +34987,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33529,6 +35002,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33588,6 +35062,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ MaxCompletionTokens, MaxPromptTokens @@ -33608,6 +35083,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectIncompleteDetailsReasonJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The reason why the run is incomplete. This will point to which specific token limit was reached over the course of the run., ConverterType: global::OpenApiGenerator.JsonConverters.RunObjectIncompleteDetailsReasonJsonConverter, @@ -33668,6 +35144,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33682,6 +35159,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33699,6 +35177,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33713,6 +35192,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33773,6 +35253,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33787,6 +35268,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33847,6 +35329,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33861,6 +35344,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33878,6 +35362,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33892,6 +35377,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33909,6 +35395,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33923,6 +35410,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33940,6 +35428,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33954,6 +35443,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -33971,6 +35461,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -33985,6 +35476,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34002,6 +35494,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34016,6 +35509,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34033,6 +35527,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34047,6 +35542,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34064,6 +35560,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34078,6 +35575,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34095,6 +35593,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34109,6 +35608,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34169,6 +35669,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34183,6 +35684,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34200,6 +35702,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34214,6 +35717,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34231,6 +35735,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34245,6 +35750,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34307,6 +35813,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34321,6 +35828,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34338,6 +35846,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -34352,6 +35861,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -34413,6 +35923,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34427,6 +35938,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [assistant](/docs/api-reference/assistants) to use to execute this run., ConverterType: , @@ -34444,6 +35956,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -34459,6 +35972,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [Model](/docs/api-reference/models) to be used to execute this run. If a value is provided here, it will override the model associated with the assistant. If not, the model associated with the assistant will be used. @@ -34478,6 +35992,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34492,6 +36007,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Overrides the [instructions](/docs/api-reference/assistants/createAssistant) of the assistant. This is useful for modifying the behavior on a per-run basis., ConverterType: , @@ -34509,6 +36025,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34523,6 +36040,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Appends additional instructions at the end of the instructions for the run. This is useful for modifying the behavior on a per-run basis without overriding other instructions., ConverterType: , @@ -34540,6 +36058,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34554,6 +36073,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Adds additional messages to the thread before creating the run., ConverterType: , @@ -34571,6 +36091,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34585,6 +36106,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis., ConverterType: , @@ -34602,6 +36124,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34616,6 +36139,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -34636,6 +36160,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34650,6 +36175,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -34671,6 +36197,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34685,6 +36212,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -34709,6 +36237,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34723,6 +36252,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message. @@ -34742,6 +36272,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34756,6 +36287,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of prompt tokens that may be used over the course of the run. The run will make a best effort to use only the number of prompt tokens specified, across multiple turns of the run. If the run exceeds the number of prompt tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info. @@ -34775,6 +36307,7 @@ The maximum number of prompt tokens that may be used over the course of the run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34789,6 +36322,7 @@ The maximum number of prompt tokens that may be used over the course of the run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of completion tokens that may be used over the course of the run. The run will make a best effort to use only the number of completion tokens specified, across multiple turns of the run. If the run exceeds the number of completion tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info. @@ -34808,6 +36342,7 @@ The maximum number of completion tokens that may be used over the course of the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, last_messages @@ -34825,6 +36360,7 @@ The maximum number of completion tokens that may be used over the course of the ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls for how a thread will be truncated prior to the run. Use this to control the intial context window of the run., ConverterType: , @@ -34842,6 +36378,7 @@ The maximum number of completion tokens that may be used over the course of the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -34857,6 +36394,7 @@ The maximum number of completion tokens that may be used over the course of the ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls which (if any) tool is called by the model. @@ -34880,6 +36418,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -34894,6 +36433,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use., ConverterType: , @@ -34911,6 +36451,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -34926,6 +36467,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -34992,6 +36534,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35006,6 +36549,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35023,6 +36567,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35037,6 +36582,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35054,6 +36600,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35068,6 +36615,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35085,6 +36633,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35099,6 +36648,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35116,6 +36666,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35130,6 +36681,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35147,6 +36699,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35161,6 +36714,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35178,6 +36732,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35192,6 +36747,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35209,6 +36765,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35223,6 +36780,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35240,6 +36798,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35254,6 +36813,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35271,6 +36831,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35285,6 +36846,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35302,6 +36864,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35316,6 +36879,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35333,6 +36897,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35347,6 +36912,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35364,6 +36930,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35378,6 +36945,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35395,6 +36963,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35409,6 +36978,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35426,6 +36996,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35440,6 +37011,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35457,6 +37029,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35471,6 +37044,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35488,6 +37062,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35502,6 +37077,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35519,6 +37095,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35533,6 +37110,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35550,6 +37128,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35564,6 +37143,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35581,6 +37161,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35595,6 +37176,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35655,6 +37237,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35669,6 +37252,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35686,6 +37270,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35700,6 +37285,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35717,6 +37303,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35731,6 +37318,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35793,6 +37381,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35807,6 +37396,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35824,6 +37414,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -35838,6 +37429,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35899,6 +37491,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35913,6 +37506,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: list, ConverterType: , @@ -35930,6 +37524,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35944,6 +37539,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -35961,6 +37557,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -35975,6 +37572,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: run_abc123, ConverterType: , @@ -35992,6 +37590,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36006,6 +37605,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: run_abc456, ConverterType: , @@ -36023,6 +37623,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36037,6 +37638,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: false, ConverterType: , @@ -36096,6 +37698,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36110,6 +37713,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -36172,6 +37776,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36186,6 +37791,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of tools for which the outputs are being submitted., ConverterType: , @@ -36203,6 +37809,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36217,6 +37824,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message. @@ -36278,6 +37886,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36292,6 +37901,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call in the `required_action` object within the run object the output is being submitted for., ConverterType: , @@ -36309,6 +37919,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36323,6 +37934,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The output of the tool call to be submitted to continue the run., ConverterType: , @@ -36382,6 +37994,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36396,6 +38009,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call. This ID must be referenced when you submit the tool outputs in using the [Submit tool outputs to run](/docs/api-reference/runs/submitToolOutputs) endpoint., ConverterType: , @@ -36413,6 +38027,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -36431,6 +38046,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: global::OpenApiGenerator.JsonConverters.RunToolCallObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool call the output is required for. For now, this is always `function`., ConverterType: global::OpenApiGenerator.JsonConverters.RunToolCallObjectTypeJsonConverter, @@ -36448,6 +38064,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36462,6 +38079,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The function definition., ConverterType: , @@ -36521,6 +38139,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36535,6 +38154,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function., ConverterType: , @@ -36552,6 +38172,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36566,6 +38187,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The arguments that the model expects you to pass to the function., ConverterType: , @@ -36626,6 +38248,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -36640,6 +38263,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -36699,6 +38323,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36713,6 +38338,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [assistant](/docs/api-reference/assistants) to use to execute this run., ConverterType: , @@ -36730,6 +38356,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ messages, tool_resources, @@ -36748,6 +38375,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -36765,6 +38393,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, AnyOfCount: 2, Properties: null, EnumValues: null, @@ -36780,6 +38409,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: global::OpenApiGenerator.JsonConverters.AnyOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [Model](/docs/api-reference/models) to be used to execute this run. If a value is provided here, it will override the model associated with the assistant. If not, the model associated with the assistant will be used. @@ -36799,6 +38429,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36813,6 +38444,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Override the default system message of the assistant. This is useful for modifying the behavior on a per-run basis., ConverterType: , @@ -36830,6 +38462,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36844,6 +38477,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis., ConverterType: , @@ -36861,6 +38495,7 @@ Example: gpt-4-turbo, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36875,6 +38510,7 @@ Example: gpt-4-turbo, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -36894,6 +38530,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36908,6 +38545,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -36928,6 +38566,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36942,6 +38581,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -36963,6 +38603,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -36977,6 +38618,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: 1, IsDeprecated: false, Summary: @@ -36998,6 +38640,7 @@ Example: 1, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37012,6 +38655,7 @@ Example: 1, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message. @@ -37031,6 +38675,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37045,6 +38690,7 @@ If `true`, returns a stream of events that happen during the Run as server-sent ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of prompt tokens that may be used over the course of the run. The run will make a best effort to use only the number of prompt tokens specified, across multiple turns of the run. If the run exceeds the number of prompt tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info. @@ -37064,6 +38710,7 @@ The maximum number of prompt tokens that may be used over the course of the run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37078,6 +38725,7 @@ The maximum number of prompt tokens that may be used over the course of the run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of completion tokens that may be used over the course of the run. The run will make a best effort to use only the number of completion tokens specified, across multiple turns of the run. If the run exceeds the number of completion tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info. @@ -37097,6 +38745,7 @@ The maximum number of completion tokens that may be used over the course of the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ type, last_messages @@ -37114,6 +38763,7 @@ The maximum number of completion tokens that may be used over the course of the ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls for how a thread will be truncated prior to the run. Use this to control the intial context window of the run., ConverterType: , @@ -37131,6 +38781,7 @@ The maximum number of completion tokens that may be used over the course of the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -37146,6 +38797,7 @@ The maximum number of completion tokens that may be used over the course of the ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Controls which (if any) tool is called by the model. @@ -37169,6 +38821,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37183,6 +38836,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use., ConverterType: , @@ -37200,6 +38854,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -37215,6 +38870,7 @@ Specifying a particular tool like `{"type": "file_search"}` or `{"type": "functi ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Specifies the format that the model must output. Compatible with [GPT-4o](/docs/models/gpt-4o), [GPT-4 Turbo](/docs/models/gpt-4-turbo-and-gpt-4), and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`. @@ -37280,6 +38936,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37294,6 +38951,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37311,6 +38969,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37325,6 +38984,7 @@ Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the m ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37386,6 +39046,7 @@ A set of resources that are used by the assistant's tools. The resources are spe IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37400,6 +39061,7 @@ A set of resources that are used by the assistant's tools. The resources are spe ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool. @@ -37461,6 +39123,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -37475,6 +39138,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [vector store](/docs/api-reference/vector-stores/object) attached to this assistant. There can be a maximum of 1 vector store attached to the assistant. @@ -37537,6 +39201,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37551,6 +39216,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37568,6 +39234,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37582,6 +39249,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37599,6 +39267,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37613,6 +39282,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37630,6 +39300,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37644,6 +39315,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37661,6 +39333,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37675,6 +39348,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37692,6 +39366,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37706,6 +39381,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37723,6 +39399,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37737,6 +39414,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37754,6 +39432,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37768,6 +39447,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37785,6 +39465,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37799,6 +39480,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37816,6 +39498,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37830,6 +39513,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37847,6 +39531,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37861,6 +39546,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37878,6 +39564,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37892,6 +39579,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37909,6 +39597,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37923,6 +39612,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37940,6 +39630,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37954,6 +39645,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -37971,6 +39663,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -37985,6 +39678,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38002,6 +39696,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38016,6 +39711,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38033,6 +39729,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38047,6 +39744,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38064,6 +39762,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38078,6 +39777,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38095,6 +39795,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38109,6 +39810,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38126,6 +39828,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38140,6 +39843,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38200,6 +39904,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38214,6 +39919,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38231,6 +39937,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38245,6 +39952,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38262,6 +39970,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38276,6 +39985,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38338,6 +40048,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38352,6 +40063,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38369,6 +40081,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38383,6 +40096,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38444,6 +40158,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38458,6 +40173,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier, which can be referenced in API endpoints., ConverterType: , @@ -38475,6 +40191,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Thread ], @@ -38493,6 +40210,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: global::OpenApiGenerator.JsonConverters.ThreadObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `thread`., ConverterType: global::OpenApiGenerator.JsonConverters.ThreadObjectObjectJsonConverter, @@ -38510,6 +40228,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38524,6 +40243,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the thread was created., ConverterType: , @@ -38541,6 +40261,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38555,6 +40276,7 @@ The ID of the [vector store](/docs/api-reference/vector-stores/object) attached ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -38574,6 +40296,7 @@ A set of resources that are made available to the assistant's tools in this thre IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38588,6 +40311,7 @@ A set of resources that are made available to the assistant's tools in this thre ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -38650,6 +40374,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38664,6 +40389,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38681,6 +40407,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38695,6 +40422,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38756,6 +40484,7 @@ A set of resources that are made available to the assistant's tools in this thre IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38770,6 +40499,7 @@ A set of resources that are made available to the assistant's tools in this thre ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool. @@ -38831,6 +40561,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38845,6 +40576,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [vector store](/docs/api-reference/vector-stores/object) attached to this thread. There can be a maximum of 1 vector store attached to the thread. @@ -38907,6 +40639,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -38921,6 +40654,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -38980,6 +40714,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -38994,6 +40729,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [messages](/docs/api-reference/messages) to start the thread with., ConverterType: , @@ -39011,6 +40747,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39025,6 +40762,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -39044,6 +40782,7 @@ A set of resources that are made available to the assistant's tools in this thre IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39058,6 +40797,7 @@ A set of resources that are made available to the assistant's tools in this thre ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -39120,6 +40860,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39134,6 +40875,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39151,6 +40893,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -39166,6 +40909,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -39227,6 +40971,7 @@ A set of resources that are made available to the assistant's tools in this thre IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39241,6 +40986,7 @@ A set of resources that are made available to the assistant's tools in this thre ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool. @@ -39302,6 +41048,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39316,6 +41063,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [vector store](/docs/api-reference/vector-stores/object) attached to this thread. There can be a maximum of 1 vector store attached to the thread. @@ -39335,6 +41083,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39349,6 +41098,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A helper to create a [vector store](/docs/api-reference/vector-stores/object) with file_ids and attach it to this thread. There can be a maximum of 1 vector store attached to the thread. @@ -39410,6 +41160,7 @@ A helper to create a [vector store](/docs/api-reference/vector-stores/object) wi IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39424,6 +41175,7 @@ A helper to create a [vector store](/docs/api-reference/vector-stores/object) wi ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [file](/docs/api-reference/files) IDs to add to the vector store. There can be a maximum of 10000 files in a vector store. @@ -39443,6 +41195,7 @@ A list of [file](/docs/api-reference/files) IDs to add to the vector store. Ther IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -39458,6 +41211,7 @@ A list of [file](/docs/api-reference/files) IDs to add to the vector store. Ther ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy., @@ -39476,6 +41230,7 @@ A list of [file](/docs/api-reference/files) IDs to add to the vector store. Ther IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39490,6 +41245,7 @@ A list of [file](/docs/api-reference/files) IDs to add to the vector store. Ther ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -39594,6 +41350,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -39608,6 +41365,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39667,6 +41425,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39681,6 +41440,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of tokens in each chunk. The default value is `800`. The minimum value is `100` and the maximum value is `4096`., ConverterType: , @@ -39698,6 +41458,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39712,6 +41473,7 @@ Set of 16 key-value pairs that can be attached to a vector store. This can be us ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of tokens that overlap between chunks. The default value is `400`. @@ -39775,6 +41537,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39789,6 +41552,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs. @@ -39808,6 +41572,7 @@ A set of resources that are made available to the assistant's tools in this thre IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39822,6 +41587,7 @@ A set of resources that are made available to the assistant's tools in this thre ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -39884,6 +41650,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39898,6 +41665,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39915,6 +41683,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -39929,6 +41698,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -39990,6 +41760,7 @@ A set of resources that are made available to the assistant's tools in this thre IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40004,6 +41775,7 @@ A set of resources that are made available to the assistant's tools in this thre ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool. @@ -40065,6 +41837,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40079,6 +41852,7 @@ A list of [file](/docs/api-reference/files) IDs made available to the `code_inte ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [vector store](/docs/api-reference/vector-stores/object) attached to this thread. There can be a maximum of 1 vector store attached to the thread. @@ -40140,6 +41914,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40154,6 +41929,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40171,6 +41947,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40185,6 +41962,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40202,6 +41980,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadDeleted ], @@ -40220,6 +41999,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: global::OpenApiGenerator.JsonConverters.DeleteThreadResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.DeleteThreadResponseObjectJsonConverter, @@ -40280,6 +42060,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -40294,6 +42075,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40353,6 +42135,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40367,6 +42150,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: list, ConverterType: , @@ -40384,6 +42168,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40398,6 +42183,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -40415,6 +42201,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40429,6 +42216,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: asst_abc123, ConverterType: , @@ -40446,6 +42234,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40460,6 +42249,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: asst_abc456, ConverterType: , @@ -40477,6 +42267,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40491,6 +42282,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: false, ConverterType: , @@ -40550,6 +42342,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40564,6 +42357,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier, which can be referenced in API endpoints., ConverterType: , @@ -40581,6 +42375,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadMessage ], @@ -40599,6 +42394,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: global::OpenApiGenerator.JsonConverters.MessageObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `thread.message`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageObjectObjectJsonConverter, @@ -40616,6 +42412,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40630,6 +42427,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the message was created., ConverterType: , @@ -40647,6 +42445,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40661,6 +42460,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [thread](/docs/api-reference/threads) ID that this message belongs to., ConverterType: , @@ -40678,6 +42478,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ InProgress, Incomplete, @@ -40700,6 +42501,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: global::OpenApiGenerator.JsonConverters.MessageObjectStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The status of the message, which can be either `in_progress`, `incomplete`, or `completed`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageObjectStatusJsonConverter, @@ -40717,6 +42519,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40731,6 +42534,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: On an incomplete message, details about why the message is incomplete., ConverterType: , @@ -40748,6 +42552,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40762,6 +42567,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the message was completed., ConverterType: , @@ -40779,6 +42585,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40793,6 +42600,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the message was marked as incomplete., ConverterType: , @@ -40810,6 +42618,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ User, Assistant @@ -40830,6 +42639,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: global::OpenApiGenerator.JsonConverters.MessageObjectRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The entity that produced the message. One of `user` or `assistant`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageObjectRoleJsonConverter, @@ -40847,6 +42657,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40861,6 +42672,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The content of the message in array of text and/or images., ConverterType: , @@ -40878,6 +42690,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40892,6 +42705,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: If applicable, the ID of the [assistant](/docs/api-reference/assistants) that authored this message., ConverterType: , @@ -40909,6 +42723,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40923,6 +42738,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [run](/docs/api-reference/runs) associated with the creation of this message. Value is `null` when messages are created manually using the create message or create thread endpoints., ConverterType: , @@ -40940,6 +42756,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40954,6 +42771,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of files attached to the message, and the tools they were added to., ConverterType: , @@ -40971,6 +42789,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -40985,6 +42804,7 @@ The [vector store](/docs/api-reference/vector-stores/object) attached to this th ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -41047,6 +42867,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ContentFilter, MaxTokens, @@ -41073,6 +42894,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.MessageObjectIncompleteDetailsReasonJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The reason the message is incomplete., ConverterType: global::OpenApiGenerator.JsonConverters.MessageObjectIncompleteDetailsReasonJsonConverter, @@ -41133,6 +42955,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41147,6 +42970,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41164,6 +42988,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41178,6 +43003,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41195,6 +43021,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41209,6 +43036,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41226,6 +43054,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41240,6 +43069,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41257,6 +43087,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41271,6 +43102,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41330,6 +43162,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41344,6 +43177,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the file to attach to the message., ConverterType: , @@ -41361,6 +43195,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41375,6 +43210,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The tools to add this file to., ConverterType: , @@ -41435,6 +43271,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41449,6 +43286,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41509,6 +43347,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41523,6 +43362,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41540,6 +43380,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41554,6 +43395,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41571,6 +43413,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41585,6 +43428,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41645,6 +43489,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41659,6 +43504,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41676,6 +43522,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -41690,6 +43537,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -41749,6 +43597,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41763,6 +43612,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier of the message, which can be referenced in API endpoints., ConverterType: , @@ -41780,6 +43630,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadMessageDelta ], @@ -41798,6 +43649,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `thread.message.delta`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaObjectObjectJsonConverter, @@ -41815,6 +43667,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41829,6 +43682,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The delta containing the fields that have changed on the Message., ConverterType: , @@ -41890,6 +43744,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ User, Assistant @@ -41910,6 +43765,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaObjectDeltaRoleJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The entity that produced the message. One of `user` or `assistant`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaObjectDeltaRoleJsonConverter, @@ -41927,6 +43783,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -41941,6 +43798,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The content of the message in array of text and/or images., ConverterType: , @@ -42001,6 +43859,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42015,6 +43874,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42032,6 +43892,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42046,6 +43907,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42106,6 +43968,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42120,6 +43983,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42179,6 +44043,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ User, Assistant @@ -42199,6 +44064,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.CreateMessageRequestRoleJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The role of the entity that is creating the message. Allowed values include: @@ -42220,6 +44086,7 @@ The role of the entity that is creating the message. Allowed values include: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -42235,6 +44102,7 @@ The role of the entity that is creating the message. Allowed values include: ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -42252,6 +44120,7 @@ The role of the entity that is creating the message. Allowed values include: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42266,6 +44135,7 @@ The role of the entity that is creating the message. Allowed values include: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of files attached to the message, and the tools they should be added to., ConverterType: , @@ -42283,6 +44153,7 @@ The role of the entity that is creating the message. Allowed values include: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42297,6 +44168,7 @@ The role of the entity that is creating the message. Allowed values include: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -42359,6 +44231,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42373,6 +44246,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the file to attach to the message., ConverterType: , @@ -42390,6 +44264,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42404,6 +44279,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The tools to add this file to., ConverterType: , @@ -42464,6 +44340,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42478,6 +44355,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42495,6 +44373,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42509,6 +44388,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42572,6 +44452,7 @@ The role of the entity that is creating the message. Allowed values include: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42586,6 +44467,7 @@ The role of the entity that is creating the message. Allowed values include: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -42648,6 +44530,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42662,6 +44545,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42679,6 +44563,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42693,6 +44578,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42710,6 +44596,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadMessageDeleted ], @@ -42728,6 +44615,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.DeleteMessageResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.DeleteMessageResponseObjectJsonConverter, @@ -42788,6 +44676,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -42802,6 +44691,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42861,6 +44751,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42875,6 +44766,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: list, ConverterType: , @@ -42892,6 +44784,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42906,6 +44799,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -42923,6 +44817,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42937,6 +44832,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: msg_abc123, ConverterType: , @@ -42954,6 +44850,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42968,6 +44865,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: msg_abc123, ConverterType: , @@ -42985,6 +44883,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -42999,6 +44898,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: false, ConverterType: , @@ -43058,6 +44958,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ImageFile ], @@ -43076,6 +44977,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentImageFileObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `image_file`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentImageFileObjectTypeJsonConverter, @@ -43093,6 +44995,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43107,6 +45010,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43166,6 +45070,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43180,6 +45085,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [File](/docs/api-reference/files) ID of the image in the message content. Set `purpose="vision"` when uploading the File if you need to later display the file content., ConverterType: , @@ -43197,6 +45103,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto, Low, @@ -43219,6 +45126,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentImageFileObjectImageFileDetailJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.MessageContentImageFileObjectImageFileDetail.Auto, IsDeprecated: false, Summary: @@ -43282,6 +45190,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43296,6 +45205,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43313,6 +45223,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43327,6 +45238,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43344,6 +45256,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43358,6 +45271,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43420,6 +45334,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43434,6 +45349,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43493,6 +45409,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43507,6 +45424,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the content part in the message., ConverterType: , @@ -43524,6 +45442,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ImageFile ], @@ -43542,6 +45461,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentImageFileObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `image_file`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentImageFileObjectTypeJsonConverter, @@ -43559,6 +45479,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43573,6 +45494,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43632,6 +45554,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -43646,6 +45569,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [File](/docs/api-reference/files) ID of the image in the message content. Set `purpose="vision"` when uploading the File if you need to later display the file content., ConverterType: , @@ -43663,6 +45587,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto, Low, @@ -43685,6 +45610,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentImageFileObjectImageFileDetailJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.MessageDeltaContentImageFileObjectImageFileDetail.Auto, IsDeprecated: false, Summary: @@ -43748,6 +45674,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43762,6 +45689,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43779,6 +45707,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43793,6 +45722,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43810,6 +45740,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43824,6 +45755,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43886,6 +45818,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -43900,6 +45833,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -43959,6 +45893,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ImageUrl ], @@ -43977,6 +45912,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentImageUrlObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of the content part., ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentImageUrlObjectTypeJsonConverter, @@ -43994,6 +45930,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44008,6 +45945,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44067,6 +46005,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44081,6 +46020,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The external URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp., ConverterType: , @@ -44098,6 +46038,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto, Low, @@ -44120,6 +46061,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentImageUrlObjectImageUrlDetailJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.MessageContentImageUrlObjectImageUrlDetail.Auto, IsDeprecated: false, Summary: @@ -44183,6 +46125,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44197,6 +46140,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44214,6 +46158,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44228,6 +46173,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44245,6 +46191,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44259,6 +46206,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44321,6 +46269,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44335,6 +46284,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44394,6 +46344,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44408,6 +46359,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the content part in the message., ConverterType: , @@ -44425,6 +46377,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ImageUrl ], @@ -44443,6 +46396,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentImageUrlObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `image_url`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentImageUrlObjectTypeJsonConverter, @@ -44460,6 +46414,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44474,6 +46429,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44533,6 +46489,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44547,6 +46504,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp., ConverterType: , @@ -44564,6 +46522,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto, Low, @@ -44586,6 +46545,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentImageUrlObjectImageUrlDetailJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: global::G.MessageDeltaContentImageUrlObjectImageUrlDetail.Auto, IsDeprecated: false, Summary: @@ -44649,6 +46609,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44663,6 +46624,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44680,6 +46642,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44694,6 +46657,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44711,6 +46675,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44725,6 +46690,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44787,6 +46753,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -44801,6 +46768,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44860,6 +46828,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Text ], @@ -44878,6 +46847,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentTextObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `text`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentTextObjectTypeJsonConverter, @@ -44895,6 +46865,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44909,6 +46880,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -44968,6 +46940,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -44982,6 +46955,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The data that makes up the text., ConverterType: , @@ -44999,6 +46973,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45013,6 +46988,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45073,6 +47049,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45087,6 +47064,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45146,6 +47124,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Text ], @@ -45164,6 +47143,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageRequestContentTextObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `text`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageRequestContentTextObjectTypeJsonConverter, @@ -45181,6 +47161,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45195,6 +47176,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Text content to be sent to the model, ConverterType: , @@ -45255,6 +47237,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45269,6 +47252,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45328,6 +47312,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FileCitation ], @@ -45346,6 +47331,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentTextAnnotationsFileCitationObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `file_citation`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentTextAnnotationsFileCitationObjectTypeJsonConverter, @@ -45363,6 +47349,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45377,6 +47364,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text in the message content that needs to be replaced., ConverterType: , @@ -45394,6 +47382,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45408,6 +47397,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45425,6 +47415,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45439,6 +47430,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45456,6 +47448,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45470,6 +47463,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45529,6 +47523,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45543,6 +47538,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the specific File the citation is from., ConverterType: , @@ -45603,6 +47599,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45617,6 +47614,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45676,6 +47674,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FilePath ], @@ -45694,6 +47693,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentTextAnnotationsFilePathObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `file_path`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageContentTextAnnotationsFilePathObjectTypeJsonConverter, @@ -45711,6 +47711,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45725,6 +47726,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text in the message content that needs to be replaced., ConverterType: , @@ -45742,6 +47744,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45756,6 +47759,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45773,6 +47777,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45787,6 +47792,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45804,6 +47810,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45818,6 +47825,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -45877,6 +47885,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -45891,6 +47900,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the file that was generated., ConverterType: , @@ -45951,6 +47961,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -45965,6 +47976,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46024,6 +48036,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46038,6 +48051,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the content part in the message., ConverterType: , @@ -46055,6 +48069,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Text ], @@ -46073,6 +48088,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentTextObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `text`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentTextObjectTypeJsonConverter, @@ -46090,6 +48106,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46104,6 +48121,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46163,6 +48181,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46177,6 +48196,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The data that makes up the text., ConverterType: , @@ -46194,6 +48214,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46208,6 +48229,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46268,6 +48290,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46282,6 +48305,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46341,6 +48365,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46355,6 +48380,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the annotation in the text content part., ConverterType: , @@ -46372,6 +48398,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FileCitation ], @@ -46390,6 +48417,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentTextAnnotationsFileCitationObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `file_citation`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentTextAnnotationsFileCitationObjectTypeJsonConverter, @@ -46407,6 +48435,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46421,6 +48450,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text in the message content that needs to be replaced., ConverterType: , @@ -46438,6 +48468,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46452,6 +48483,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46469,6 +48501,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46483,6 +48516,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46500,6 +48534,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46514,6 +48549,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46573,6 +48609,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46587,6 +48624,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the specific File the citation is from., ConverterType: , @@ -46604,6 +48642,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46618,6 +48657,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The specific quote in the file., ConverterType: , @@ -46678,6 +48718,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -46692,6 +48733,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46751,6 +48793,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46765,6 +48808,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the annotation in the text content part., ConverterType: , @@ -46782,6 +48826,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FilePath ], @@ -46800,6 +48845,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentTextAnnotationsFilePathObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `file_path`., ConverterType: global::OpenApiGenerator.JsonConverters.MessageDeltaContentTextAnnotationsFilePathObjectTypeJsonConverter, @@ -46817,6 +48863,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46831,6 +48878,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text in the message content that needs to be replaced., ConverterType: , @@ -46848,6 +48896,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46862,6 +48911,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46879,6 +48929,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46893,6 +48944,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46910,6 +48962,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46924,6 +48977,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -46983,6 +49037,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -46997,6 +49052,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the file that was generated., ConverterType: , @@ -47057,6 +49113,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47071,6 +49128,7 @@ Default Value: auto, ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47130,6 +49188,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47144,6 +49203,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier of the run step, which can be referenced in API endpoints., ConverterType: , @@ -47161,6 +49221,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStep ], @@ -47179,6 +49240,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.RunStepObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `thread.run.step`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepObjectObjectJsonConverter, @@ -47196,6 +49258,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47210,6 +49273,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run step was created., ConverterType: , @@ -47227,6 +49291,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47241,6 +49306,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [assistant](/docs/api-reference/assistants) associated with the run step., ConverterType: , @@ -47258,6 +49324,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47272,6 +49339,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [thread](/docs/api-reference/threads) that was run., ConverterType: , @@ -47289,6 +49357,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47303,6 +49372,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [run](/docs/api-reference/runs) that this run step is a part of., ConverterType: , @@ -47320,6 +49390,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ MessageCreation, ToolCalls @@ -47340,6 +49411,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.RunStepObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of run step, which can be either `message_creation` or `tool_calls`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepObjectTypeJsonConverter, @@ -47357,6 +49429,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ InProgress, Cancelled, @@ -47383,6 +49456,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.RunStepObjectStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The status of the run step, which can be either `in_progress`, `cancelled`, `failed`, `completed`, or `expired`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepObjectStatusJsonConverter, @@ -47400,6 +49474,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -47415,6 +49490,7 @@ Default Value: auto, ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The details of the run step., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -47432,6 +49508,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47446,6 +49523,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The last error associated with this run step. Will be `null` if there are no errors., ConverterType: , @@ -47463,6 +49541,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47477,6 +49556,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run step expired. A step is considered expired if the parent run is expired., ConverterType: , @@ -47494,6 +49574,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47508,6 +49589,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run step was cancelled., ConverterType: , @@ -47525,6 +49607,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47539,6 +49622,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run step failed., ConverterType: , @@ -47556,6 +49640,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47570,6 +49655,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the run step completed., ConverterType: , @@ -47587,6 +49673,7 @@ Default Value: auto, IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47601,6 +49688,7 @@ Default Value: auto, ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -47621,6 +49709,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ completion_tokens, prompt_tokens, @@ -47639,6 +49728,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Usage statistics related to the run step. This value will be `null` while the run step's status is `in_progress`., ConverterType: , @@ -47741,6 +49831,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ServerError, RateLimitExceeded @@ -47761,6 +49852,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.RunStepObjectLastErrorCodeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: One of `server_error` or `rate_limit_exceeded`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepObjectLastErrorCodeJsonConverter, @@ -47778,6 +49870,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -47792,6 +49885,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A human-readable description of the error., ConverterType: , @@ -47852,6 +49946,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47866,6 +49961,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47883,6 +49979,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47897,6 +49994,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -47957,6 +50055,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -47971,6 +50070,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48031,6 +50131,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48045,6 +50146,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48062,6 +50164,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48076,6 +50179,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48136,6 +50240,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48150,6 +50255,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48167,6 +50273,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48181,6 +50288,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48198,6 +50306,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48212,6 +50321,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48229,6 +50339,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48243,6 +50354,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48260,6 +50372,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48274,6 +50387,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48333,6 +50447,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48347,6 +50462,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier of the run step, which can be referenced in API endpoints., ConverterType: , @@ -48364,6 +50480,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStepDelta ], @@ -48382,6 +50499,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `thread.run.step.delta`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaObjectObjectJsonConverter, @@ -48399,6 +50517,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48413,6 +50532,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The delta containing the fields that have changed on the run step., ConverterType: , @@ -48474,6 +50594,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -48489,6 +50610,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: The details of the run step., @@ -48591,6 +50713,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -48605,6 +50728,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48664,6 +50788,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48678,6 +50803,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: list, ConverterType: , @@ -48695,6 +50821,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48709,6 +50836,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48726,6 +50854,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48740,6 +50869,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: step_abc123, ConverterType: , @@ -48757,6 +50887,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48771,6 +50902,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: step_abc456, ConverterType: , @@ -48788,6 +50920,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48802,6 +50935,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: false, ConverterType: , @@ -48861,6 +50995,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ MessageCreation ], @@ -48879,6 +51014,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsMessageCreationObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `message_creation`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsMessageCreationObjectTypeJsonConverter, @@ -48896,6 +51032,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48910,6 +51047,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -48969,6 +51107,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -48983,6 +51122,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the message that was created by this run step., ConverterType: , @@ -49043,6 +51183,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49057,6 +51198,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49116,6 +51258,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ MessageCreation ], @@ -49134,6 +51277,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsMessageCreationObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `message_creation`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsMessageCreationObjectTypeJsonConverter, @@ -49151,6 +51295,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49165,6 +51310,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49224,6 +51370,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49238,6 +51385,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the message that was created by this run step., ConverterType: , @@ -49298,6 +51446,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49312,6 +51461,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49371,6 +51521,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ToolCalls ], @@ -49389,6 +51540,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `tool_calls`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsObjectTypeJsonConverter, @@ -49406,6 +51558,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49420,6 +51573,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An array of tool calls the run step was involved in. These can be associated with one of three types of tools: `code_interpreter`, `file_search`, or `function`. @@ -49482,6 +51636,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49496,6 +51651,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49555,6 +51711,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ToolCalls ], @@ -49573,6 +51730,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `tool_calls`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsObjectTypeJsonConverter, @@ -49590,6 +51748,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49604,6 +51763,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An array of tool calls the run step was involved in. These can be associated with one of three types of tools: `code_interpreter`, `file_search`, or `function`. @@ -49666,6 +51826,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -49680,6 +51841,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -49739,6 +51901,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49753,6 +51916,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call., ConverterType: , @@ -49770,6 +51934,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ CodeInterpreter ], @@ -49788,6 +51953,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsCodeObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool call. This is always going to be `code_interpreter` for this type of tool call., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsCodeObjectTypeJsonConverter, @@ -49805,6 +51971,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49819,6 +51986,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Code Interpreter tool call definition., ConverterType: , @@ -49878,6 +52046,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49892,6 +52061,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The input to the Code Interpreter tool call., ConverterType: , @@ -49909,6 +52079,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -49923,6 +52094,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (`logs`) or images (`image`). Each of these are represented by a different object type., ConverterType: , @@ -50024,6 +52196,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50038,6 +52211,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50097,6 +52271,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50111,6 +52286,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the tool call in the tool calls array., ConverterType: , @@ -50128,6 +52304,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50142,6 +52319,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call., ConverterType: , @@ -50159,6 +52337,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ CodeInterpreter ], @@ -50177,6 +52356,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsCodeObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool call. This is always going to be `code_interpreter` for this type of tool call., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsCodeObjectTypeJsonConverter, @@ -50194,6 +52374,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50208,6 +52389,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Code Interpreter tool call definition., ConverterType: , @@ -50267,6 +52449,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50281,6 +52464,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The input to the Code Interpreter tool call., ConverterType: , @@ -50298,6 +52482,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50312,6 +52497,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (`logs`) or images (`image`). Each of these are represented by a different object type., ConverterType: , @@ -50413,6 +52599,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50427,6 +52614,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50486,6 +52674,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Logs ], @@ -50504,6 +52693,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsCodeOutputLogsObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `logs`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsCodeOutputLogsObjectTypeJsonConverter, @@ -50521,6 +52711,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50535,6 +52726,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text output from the Code Interpreter tool call., ConverterType: , @@ -50595,6 +52787,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50609,6 +52802,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50668,6 +52862,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50682,6 +52877,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the output in the outputs array., ConverterType: , @@ -50699,6 +52895,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Logs ], @@ -50717,6 +52914,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `logs`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsCodeOutputLogsObjectTypeJsonConverter, @@ -50734,6 +52932,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50748,6 +52947,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The text output from the Code Interpreter tool call., ConverterType: , @@ -50808,6 +53008,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -50822,6 +53023,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50881,6 +53083,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Image ], @@ -50899,6 +53102,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsCodeOutputImageObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `image`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsCodeOutputImageObjectTypeJsonConverter, @@ -50916,6 +53120,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -50930,6 +53135,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -50989,6 +53195,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51003,6 +53210,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [file](/docs/api-reference/files) ID of the image., ConverterType: , @@ -51063,6 +53271,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51077,6 +53286,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51136,6 +53346,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51150,6 +53361,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the output in the outputs array., ConverterType: , @@ -51167,6 +53379,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Image ], @@ -51185,6 +53398,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `image`., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectTypeJsonConverter, @@ -51202,6 +53416,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51216,6 +53431,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51275,6 +53491,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51289,6 +53506,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The [file](/docs/api-reference/files) ID of the image., ConverterType: , @@ -51349,6 +53567,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51363,6 +53582,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51422,6 +53642,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51436,6 +53657,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call object., ConverterType: , @@ -51453,6 +53675,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FileSearch ], @@ -51471,6 +53694,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsFileSearchObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool call. This is always going to be `file_search` for this type of tool call., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsFileSearchObjectTypeJsonConverter, @@ -51488,6 +53712,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51502,6 +53727,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: For now, this is always going to be an empty object., ConverterType: , @@ -51562,6 +53788,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51576,6 +53803,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51635,6 +53863,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51649,6 +53878,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the tool call in the tool calls array., ConverterType: , @@ -51666,6 +53896,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51680,6 +53911,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call object., ConverterType: , @@ -51697,6 +53929,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ FileSearch ], @@ -51715,6 +53948,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsFileSearchObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool call. This is always going to be `file_search` for this type of tool call., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsFileSearchObjectTypeJsonConverter, @@ -51732,6 +53966,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51746,6 +53981,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: For now, this is always going to be an empty object., ConverterType: , @@ -51806,6 +54042,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -51820,6 +54057,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -51879,6 +54117,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51893,6 +54132,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call object., ConverterType: , @@ -51910,6 +54150,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -51928,6 +54169,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsFunctionObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool call. This is always going to be `function` for this type of tool call., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDetailsToolCallsFunctionObjectTypeJsonConverter, @@ -51945,6 +54187,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -51959,6 +54202,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The definition of the function that was called., ConverterType: , @@ -52018,6 +54262,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52032,6 +54277,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function., ConverterType: , @@ -52049,6 +54295,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52063,6 +54310,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The arguments passed to the function., ConverterType: , @@ -52080,6 +54328,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52094,6 +54343,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The output of the function. This will be `null` if the outputs have not been [submitted](/docs/api-reference/runs/submitToolOutputs) yet., ConverterType: , @@ -52154,6 +54404,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52168,6 +54419,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52227,6 +54479,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52241,6 +54494,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The index of the tool call in the tool calls array., ConverterType: , @@ -52258,6 +54512,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52272,6 +54527,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the tool call object., ConverterType: , @@ -52289,6 +54545,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Function ], @@ -52307,6 +54564,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsFunctionObjectTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The type of tool call. This is always going to be `function` for this type of tool call., ConverterType: global::OpenApiGenerator.JsonConverters.RunStepDeltaStepDetailsToolCallsFunctionObjectTypeJsonConverter, @@ -52324,6 +54582,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52338,6 +54597,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The definition of the function that was called., ConverterType: , @@ -52397,6 +54657,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52411,6 +54672,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the function., ConverterType: , @@ -52428,6 +54690,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52442,6 +54705,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The arguments passed to the function., ConverterType: , @@ -52459,6 +54723,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52473,6 +54738,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The output of the function. This will be `null` if the outputs have not been [submitted](/docs/api-reference/runs/submitToolOutputs) yet., ConverterType: , @@ -52533,6 +54799,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52547,6 +54814,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52606,6 +54874,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ LastActiveAt ], @@ -52624,6 +54893,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreExpirationAfterAnchorJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Anchor timestamp after which the expiration policy applies. Supported anchors: `last_active_at`., ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreExpirationAfterAnchorJsonConverter, @@ -52641,6 +54911,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52655,6 +54926,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of days after the anchor time that the vector store will expire., ConverterType: , @@ -52715,6 +54987,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -52729,6 +55002,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52788,6 +55062,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52802,6 +55077,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier, which can be referenced in API endpoints., ConverterType: , @@ -52819,6 +55095,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ VectorStore ], @@ -52837,6 +55114,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `vector_store`., ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreObjectObjectJsonConverter, @@ -52854,6 +55132,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52868,6 +55147,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the vector store was created., ConverterType: , @@ -52885,6 +55165,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52899,6 +55180,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the vector store., ConverterType: , @@ -52916,6 +55198,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52930,6 +55213,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The total number of bytes used by the files in the vector store., ConverterType: , @@ -52947,6 +55231,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -52961,6 +55246,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -52978,6 +55264,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Expired, InProgress, @@ -53000,6 +55287,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreObjectStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The status of the vector store, which can be either `expired`, `in_progress`, or `completed`. A status of `completed` indicates that the vector store is ready for use., ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreObjectStatusJsonConverter, @@ -53017,6 +55305,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ anchor, days @@ -53034,6 +55323,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The expiration policy for a vector store., ConverterType: , @@ -53051,6 +55341,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53065,6 +55356,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the vector store will expire., ConverterType: , @@ -53082,6 +55374,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53096,6 +55389,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the vector store was last active., ConverterType: , @@ -53113,6 +55407,7 @@ An array of tool calls the run step was involved in. These can be associated wit IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53127,6 +55422,7 @@ An array of tool calls the run step was involved in. These can be associated wit ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -53189,6 +55485,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53203,6 +55500,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of files that are currently being processed., ConverterType: , @@ -53220,6 +55518,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53234,6 +55533,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of files that have been successfully processed., ConverterType: , @@ -53251,6 +55551,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53265,6 +55566,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of files that have failed to process., ConverterType: , @@ -53282,6 +55584,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53296,6 +55599,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of files that were cancelled., ConverterType: , @@ -53313,6 +55617,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53327,6 +55632,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The total number of files., ConverterType: , @@ -53387,6 +55693,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -53401,6 +55708,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53461,6 +55769,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -53475,6 +55784,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53492,6 +55802,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -53506,6 +55817,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53523,6 +55835,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -53537,6 +55850,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -53596,6 +55910,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53610,6 +55925,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [File](/docs/api-reference/files) IDs that the vector store should use. Useful for tools like `file_search` that can access files., ConverterType: , @@ -53627,6 +55943,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53641,6 +55958,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the vector store., ConverterType: , @@ -53658,6 +55976,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ anchor, days @@ -53675,6 +55994,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The expiration policy for a vector store., ConverterType: , @@ -53692,6 +56012,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -53707,6 +56028,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy. Only applicable if `file_ids` is non-empty., @@ -53725,6 +56047,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53739,6 +56062,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -53842,6 +56166,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53856,6 +56181,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the vector store., ConverterType: , @@ -53873,6 +56199,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ anchor, days @@ -53890,6 +56217,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The expiration policy for a vector store., ConverterType: , @@ -53907,6 +56235,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53921,6 +56250,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -53983,6 +56313,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -53997,6 +56328,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: list, ConverterType: , @@ -54014,6 +56346,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54028,6 +56361,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54045,6 +56379,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54059,6 +56394,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: vs_abc123, ConverterType: , @@ -54076,6 +56412,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54090,6 +56427,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: vs_abc456, ConverterType: , @@ -54107,6 +56445,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54121,6 +56460,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: false, ConverterType: , @@ -54180,6 +56520,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54194,6 +56535,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54211,6 +56553,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54225,6 +56568,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54242,6 +56586,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ VectorStoreDeleted ], @@ -54260,6 +56605,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.DeleteVectorStoreResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.DeleteVectorStoreResponseObjectJsonConverter, @@ -54320,6 +56666,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54334,6 +56681,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54393,6 +56741,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54407,6 +56756,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier, which can be referenced in API endpoints., ConverterType: , @@ -54424,6 +56774,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ VectorStoreFile ], @@ -54442,6 +56793,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `vector_store.file`., ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileObjectObjectJsonConverter, @@ -54459,6 +56811,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54473,6 +56826,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The total vector store usage in bytes. Note that this may be different from the original file size., ConverterType: , @@ -54490,6 +56844,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54504,6 +56859,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the vector store file was created., ConverterType: , @@ -54521,6 +56877,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54535,6 +56892,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [vector store](/docs/api-reference/vector-stores/object) that the [File](/docs/api-reference/files) is attached to., ConverterType: , @@ -54552,6 +56910,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ InProgress, Completed, @@ -54576,6 +56935,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileObjectStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The status of the vector store file, which can be either `in_progress`, `completed`, `cancelled`, or `failed`. The status `completed` indicates that the vector store file is ready for use., ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileObjectStatusJsonConverter, @@ -54593,6 +56953,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54607,6 +56968,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The last error associated with this vector store file. Will be `null` if there are no errors., ConverterType: , @@ -54624,6 +56986,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -54639,6 +57002,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: The strategy used to chunk the file., @@ -54699,6 +57063,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ InternalError, FileNotFound, @@ -54723,6 +57088,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileObjectLastErrorCodeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: One of `server_error` or `rate_limit_exceeded`., ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileObjectLastErrorCodeJsonConverter, @@ -54740,6 +57106,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54754,6 +57121,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A human-readable description of the error., ConverterType: , @@ -54814,6 +57182,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54828,6 +57197,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54845,6 +57215,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54859,6 +57230,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54876,6 +57248,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54890,6 +57263,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -54907,6 +57281,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -54921,6 +57296,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55022,6 +57398,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55036,6 +57413,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55096,6 +57474,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55110,6 +57489,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55127,6 +57507,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55141,6 +57522,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55158,6 +57540,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55172,6 +57555,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55189,6 +57573,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55203,6 +57588,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55262,6 +57648,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Other ], @@ -55280,6 +57667,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.OtherChunkingStrategyResponseParamTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `other`., ConverterType: global::OpenApiGenerator.JsonConverters.OtherChunkingStrategyResponseParamTypeJsonConverter, @@ -55340,6 +57728,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55354,6 +57743,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55413,6 +57803,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Static ], @@ -55431,6 +57822,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.StaticChunkingStrategyResponseParamTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `static`., ConverterType: global::OpenApiGenerator.JsonConverters.StaticChunkingStrategyResponseParamTypeJsonConverter, @@ -55448,6 +57840,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ max_chunk_size_tokens, chunk_overlap_tokens @@ -55465,6 +57858,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55525,6 +57919,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55539,6 +57934,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55598,6 +57994,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55612,6 +58009,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of tokens in each chunk. The default value is `800`. The minimum value is `100` and the maximum value is `4096`., ConverterType: , @@ -55629,6 +58027,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55643,6 +58042,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of tokens that overlap between chunks. The default value is `400`. @@ -55706,6 +58106,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Auto ], @@ -55724,6 +58125,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.AutoChunkingStrategyRequestParamTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `auto`., ConverterType: global::OpenApiGenerator.JsonConverters.AutoChunkingStrategyRequestParamTypeJsonConverter, @@ -55784,6 +58186,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55798,6 +58201,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55857,6 +58261,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Static ], @@ -55875,6 +58280,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.StaticChunkingStrategyRequestParamTypeJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Always `static`., ConverterType: global::OpenApiGenerator.JsonConverters.StaticChunkingStrategyRequestParamTypeJsonConverter, @@ -55892,6 +58298,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ max_chunk_size_tokens, chunk_overlap_tokens @@ -55909,6 +58316,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -55969,6 +58377,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -55983,6 +58392,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56042,6 +58452,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56056,6 +58467,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A [File](/docs/api-reference/files) ID that the vector store should use. Useful for tools like `file_search` that can access files., ConverterType: , @@ -56073,6 +58485,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -56088,6 +58501,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -56147,6 +58561,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56161,6 +58576,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: list, ConverterType: , @@ -56178,6 +58594,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56192,6 +58609,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56209,6 +58627,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56223,6 +58642,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: file-abc123, ConverterType: , @@ -56240,6 +58660,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56254,6 +58675,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: file-abc456, ConverterType: , @@ -56271,6 +58693,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56285,6 +58708,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: false, ConverterType: , @@ -56344,6 +58768,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56358,6 +58783,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56375,6 +58801,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56389,6 +58816,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56406,6 +58834,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ VectorStoreFileDeleted ], @@ -56424,6 +58853,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.DeleteVectorStoreFileResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.DeleteVectorStoreFileResponseObjectJsonConverter, @@ -56484,6 +58914,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -56498,6 +58929,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56557,6 +58989,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56571,6 +59004,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The identifier, which can be referenced in API endpoints., ConverterType: , @@ -56588,6 +59022,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ VectorStoreFilesBatch ], @@ -56606,6 +59041,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileBatchObjectObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `vector_store.file_batch`., ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileBatchObjectObjectJsonConverter, @@ -56623,6 +59059,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56637,6 +59074,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the vector store files batch was created., ConverterType: , @@ -56654,6 +59092,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56668,6 +59107,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the [vector store](/docs/api-reference/vector-stores/object) that the [File](/docs/api-reference/files) is attached to., ConverterType: , @@ -56685,6 +59125,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ InProgress, Completed, @@ -56709,6 +59150,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileBatchObjectStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The status of the vector store files batch, which can be either `in_progress`, `completed`, `cancelled` or `failed`., ConverterType: global::OpenApiGenerator.JsonConverters.VectorStoreFileBatchObjectStatusJsonConverter, @@ -56726,6 +59168,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56740,6 +59183,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -56799,6 +59243,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56813,6 +59258,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of files that are currently being processed., ConverterType: , @@ -56830,6 +59276,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56844,6 +59291,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of files that have been processed., ConverterType: , @@ -56861,6 +59309,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56875,6 +59324,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of files that have failed to process., ConverterType: , @@ -56892,6 +59342,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56906,6 +59357,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The number of files that where cancelled., ConverterType: , @@ -56923,6 +59375,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -56937,6 +59390,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The total number of files., ConverterType: , @@ -56997,6 +59451,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57011,6 +59466,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57071,6 +59527,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57085,6 +59542,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57102,6 +59560,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57116,6 +59575,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57133,6 +59593,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57147,6 +59608,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57164,6 +59626,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57178,6 +59641,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57237,6 +59701,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -57251,6 +59716,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A list of [File](/docs/api-reference/files) IDs that the vector store should use. Useful for tools like `file_search` that can access files., ConverterType: , @@ -57268,6 +59734,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, OneOfCount: 2, Properties: null, EnumValues: null, @@ -57283,6 +59750,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2 }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy., ConverterType: global::OpenApiGenerator.JsonConverters.OneOfJsonConverterFactory2, @@ -57342,6 +59810,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadCreated ], @@ -57360,6 +59829,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.ThreadStreamEventVariant1EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ThreadStreamEventVariant1EventJsonConverter, @@ -57377,6 +59847,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -57397,6 +59868,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a thread that contains [messages](/docs/api-reference/messages)., ConverterType: , @@ -57457,6 +59929,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57471,6 +59944,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57530,6 +60004,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunCreated ], @@ -57548,6 +60023,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant1EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant1EventJsonConverter, @@ -57565,6 +60041,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -57607,6 +60084,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -57667,6 +60145,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57681,6 +60160,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57740,6 +60220,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunQueued ], @@ -57758,6 +60239,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant2EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant2EventJsonConverter, @@ -57775,6 +60257,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -57817,6 +60300,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -57877,6 +60361,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -57891,6 +60376,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -57950,6 +60436,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunInProgress ], @@ -57968,6 +60455,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant3EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant3EventJsonConverter, @@ -57985,6 +60473,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -58027,6 +60516,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -58087,6 +60577,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58101,6 +60592,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58160,6 +60652,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunRequiresAction ], @@ -58178,6 +60671,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant4EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant4EventJsonConverter, @@ -58195,6 +60689,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -58237,6 +60732,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -58297,6 +60793,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58311,6 +60808,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58370,6 +60868,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunCompleted ], @@ -58388,6 +60887,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant5EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant5EventJsonConverter, @@ -58405,6 +60905,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -58447,6 +60948,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -58507,6 +61009,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58521,6 +61024,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58580,6 +61084,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunIncomplete ], @@ -58598,6 +61103,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant6EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant6EventJsonConverter, @@ -58615,6 +61121,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -58657,6 +61164,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -58717,6 +61225,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58731,6 +61240,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -58790,6 +61300,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunFailed ], @@ -58808,6 +61319,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant7EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant7EventJsonConverter, @@ -58825,6 +61337,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -58867,6 +61380,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -58927,6 +61441,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -58941,6 +61456,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59000,6 +61516,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunCancelling ], @@ -59018,6 +61535,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant8EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant8EventJsonConverter, @@ -59035,6 +61553,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -59077,6 +61596,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -59137,6 +61657,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59151,6 +61672,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59210,6 +61732,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunCancelled ], @@ -59228,6 +61751,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant9EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant9EventJsonConverter, @@ -59245,6 +61769,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -59287,6 +61812,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -59347,6 +61873,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59361,6 +61888,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59420,6 +61948,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunExpired ], @@ -59438,6 +61967,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant10EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStreamEventVariant10EventJsonConverter, @@ -59455,6 +61985,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -59497,6 +62028,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents an execution run on a [thread](/docs/api-reference/threads)., ConverterType: , @@ -59557,6 +62089,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59571,6 +62104,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59630,6 +62164,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStepCreated ], @@ -59648,6 +62183,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant1EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant1EventJsonConverter, @@ -59665,6 +62201,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -59696,6 +62233,7 @@ Note that the overlap must not exceed half of `max_chunk_size_tokens`. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a step in execution of a run. @@ -59758,6 +62296,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59772,6 +62311,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -59831,6 +62371,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStepInProgress ], @@ -59849,6 +62390,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant2EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant2EventJsonConverter, @@ -59866,6 +62408,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -59897,6 +62440,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a step in execution of a run. @@ -59959,6 +62503,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -59973,6 +62518,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60032,6 +62578,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStepDelta ], @@ -60050,6 +62597,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant3EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant3EventJsonConverter, @@ -60067,6 +62615,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -60085,6 +62634,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a run step delta i.e. any changed fields on a run step during streaming. @@ -60147,6 +62697,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60161,6 +62712,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60220,6 +62772,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStepCompleted ], @@ -60238,6 +62791,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant4EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant4EventJsonConverter, @@ -60255,6 +62809,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -60286,6 +62841,7 @@ Represents a run step delta i.e. any changed fields on a run step during streami ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a step in execution of a run. @@ -60348,6 +62904,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60362,6 +62919,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60421,6 +62979,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStepFailed ], @@ -60439,6 +62998,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant5EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant5EventJsonConverter, @@ -60456,6 +63016,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -60487,6 +63048,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a step in execution of a run. @@ -60549,6 +63111,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60563,6 +63126,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60622,6 +63186,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStepCancelled ], @@ -60640,6 +63205,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant6EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant6EventJsonConverter, @@ -60657,6 +63223,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -60688,6 +63255,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a step in execution of a run. @@ -60750,6 +63318,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60764,6 +63333,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -60823,6 +63393,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadRunStepExpired ], @@ -60841,6 +63412,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant7EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.RunStepStreamEventVariant7EventJsonConverter, @@ -60858,6 +63430,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -60889,6 +63462,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a step in execution of a run. @@ -60951,6 +63525,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -60965,6 +63540,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -61024,6 +63600,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadMessageCreated ], @@ -61042,6 +63619,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant1EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant1EventJsonConverter, @@ -61059,6 +63637,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -61088,6 +63667,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a message within a [thread](/docs/api-reference/threads)., ConverterType: , @@ -61148,6 +63728,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -61162,6 +63743,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -61221,6 +63803,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadMessageInProgress ], @@ -61239,6 +63822,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant2EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant2EventJsonConverter, @@ -61256,6 +63840,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -61285,6 +63870,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a message within a [thread](/docs/api-reference/threads)., ConverterType: , @@ -61345,6 +63931,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -61359,6 +63946,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -61418,6 +64006,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadMessageDelta ], @@ -61436,6 +64025,7 @@ Represents a step in execution of a run. ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant3EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant3EventJsonConverter, @@ -61453,6 +64043,7 @@ Represents a step in execution of a run. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -61471,6 +64062,7 @@ Represents a step in execution of a run. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a message delta i.e. any changed fields on a message during streaming. @@ -61533,6 +64125,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -61547,6 +64140,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -61606,6 +64200,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadMessageCompleted ], @@ -61624,6 +64219,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant4EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant4EventJsonConverter, @@ -61641,6 +64237,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -61670,6 +64267,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a message within a [thread](/docs/api-reference/threads)., ConverterType: , @@ -61730,6 +64328,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -61744,6 +64343,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -61803,6 +64403,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ ThreadMessageIncomplete ], @@ -61821,6 +64422,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant5EventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.MessageStreamEventVariant5EventJsonConverter, @@ -61838,6 +64440,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ id, object, @@ -61867,6 +64470,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Represents a message within a [thread](/docs/api-reference/threads)., ConverterType: , @@ -61927,6 +64531,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -61941,6 +64546,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -62000,6 +64606,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Error ], @@ -62018,6 +64625,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.ErrorEventEventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ErrorEventEventJsonConverter, @@ -62035,6 +64643,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ code, message, @@ -62054,6 +64663,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -62114,6 +64724,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -62128,6 +64739,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -62187,6 +64799,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Done ], @@ -62205,6 +64818,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.DoneEventEventJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.DoneEventEventJsonConverter, @@ -62222,6 +64836,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ DONE ], @@ -62240,6 +64855,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.DoneEventDataJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.DoneEventDataJsonConverter, @@ -62300,6 +64916,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -62314,6 +64931,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -62374,6 +64992,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -62388,6 +65007,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -62447,6 +65067,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62461,6 +65082,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -62478,6 +65100,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Batch ], @@ -62496,6 +65119,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.BatchObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `batch`., ConverterType: global::OpenApiGenerator.JsonConverters.BatchObjectJsonConverter, @@ -62513,6 +65137,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62527,6 +65152,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The OpenAI API endpoint used by the batch., ConverterType: , @@ -62544,6 +65170,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62558,6 +65185,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -62575,6 +65203,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62589,6 +65218,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the input file for the batch., ConverterType: , @@ -62606,6 +65236,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62620,6 +65251,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The time frame within which the batch should be processed., ConverterType: , @@ -62637,6 +65269,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Validating, Failed, @@ -62669,6 +65302,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: global::OpenApiGenerator.JsonConverters.BatchStatusJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The current status of the batch., ConverterType: global::OpenApiGenerator.JsonConverters.BatchStatusJsonConverter, @@ -62686,6 +65320,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62700,6 +65335,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the file containing the outputs of successfully executed requests., ConverterType: , @@ -62717,6 +65353,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62731,6 +65368,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the file containing the outputs of requests with errors., ConverterType: , @@ -62748,6 +65386,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62762,6 +65401,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch was created., ConverterType: , @@ -62779,6 +65419,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62793,6 +65434,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch started processing., ConverterType: , @@ -62810,6 +65452,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62824,6 +65467,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch will expire., ConverterType: , @@ -62841,6 +65485,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62855,6 +65500,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch started finalizing., ConverterType: , @@ -62872,6 +65518,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62886,6 +65533,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch was completed., ConverterType: , @@ -62903,6 +65551,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62917,6 +65566,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch failed., ConverterType: , @@ -62934,6 +65584,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62948,6 +65599,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch expired., ConverterType: , @@ -62965,6 +65617,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -62979,6 +65632,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch started cancelling., ConverterType: , @@ -62996,6 +65650,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63010,6 +65665,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The Unix timestamp (in seconds) for when the batch was cancelled., ConverterType: , @@ -63027,6 +65683,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63041,6 +65698,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The request counts for different statuses within the batch., ConverterType: , @@ -63058,6 +65716,7 @@ Represents a message delta i.e. any changed fields on a message during streaming IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63072,6 +65731,7 @@ Represents a message delta i.e. any changed fields on a message during streaming ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: @@ -63134,6 +65794,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63148,6 +65809,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The object type, which is always `list`., ConverterType: , @@ -63165,6 +65827,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63179,6 +65842,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63238,6 +65902,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63252,6 +65917,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An error code identifying the error type., ConverterType: , @@ -63269,6 +65935,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63283,6 +65950,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A human-readable message providing more details about the error., ConverterType: , @@ -63300,6 +65968,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63314,6 +65983,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the parameter that caused the error, if applicable., ConverterType: , @@ -63331,6 +66001,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63345,6 +66016,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The line number of the input file where the error occurred, if applicable., ConverterType: , @@ -63404,6 +66076,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63418,6 +66091,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Total number of requests in the batch., ConverterType: , @@ -63435,6 +66109,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63449,6 +66124,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of requests that have been completed successfully., ConverterType: , @@ -63466,6 +66142,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63480,6 +66157,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Number of requests that have failed., ConverterType: , @@ -63540,6 +66218,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63554,6 +66233,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63614,6 +66294,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63628,6 +66309,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63645,6 +66327,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63659,6 +66342,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63676,6 +66360,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63690,6 +66375,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63707,6 +66393,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63721,6 +66408,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63738,6 +66426,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63752,6 +66441,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63769,6 +66459,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63783,6 +66474,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63800,6 +66492,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63814,6 +66507,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63831,6 +66525,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -63845,6 +66540,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -63904,6 +66600,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63918,6 +66615,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A developer-provided per-request id that will be used to match outputs to inputs. Must be unique for each request in a batch., ConverterType: , @@ -63935,6 +66633,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ POST ], @@ -63953,6 +66652,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.BatchRequestInputMethodJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The HTTP method to be used for the request. Currently only `POST` is supported., ConverterType: global::OpenApiGenerator.JsonConverters.BatchRequestInputMethodJsonConverter, @@ -63970,6 +66670,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -63984,6 +66685,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The OpenAI API relative URL to be used for the request. Currently `/v1/chat/completions`, `/v1/embeddings`, and `/v1/completions` are supported., ConverterType: , @@ -64044,6 +66746,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64058,6 +66761,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64117,6 +66821,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64131,6 +66836,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64148,6 +66854,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64162,6 +66869,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A developer-provided per-request id that will be used to match outputs to inputs., ConverterType: , @@ -64179,6 +66887,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64193,6 +66902,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64210,6 +66920,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64224,6 +66935,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: For requests that failed with a non-HTTP error, this will contain more information on the cause of the failure., ConverterType: , @@ -64283,6 +66995,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64297,6 +67010,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The HTTP status code of the response, ConverterType: , @@ -64314,6 +67028,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64328,6 +67043,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An unique identifier for the OpenAI API request. Please include this request ID when contacting support., ConverterType: , @@ -64345,6 +67061,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64359,6 +67076,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: The JSON body of the response, @@ -64419,6 +67137,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64433,6 +67152,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A machine-readable error code., ConverterType: , @@ -64450,6 +67170,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64464,6 +67185,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A human-readable error message., ConverterType: , @@ -64523,6 +67245,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64537,6 +67260,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64554,6 +67278,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64568,6 +67293,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: batch_abc123, ConverterType: , @@ -64585,6 +67311,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64599,6 +67326,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: batch_abc456, ConverterType: , @@ -64616,6 +67344,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -64630,6 +67359,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64647,6 +67377,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ List ], @@ -64665,6 +67396,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: global::OpenApiGenerator.JsonConverters.ListBatchesResponseObjectJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: global::OpenApiGenerator.JsonConverters.ListBatchesResponseObjectJsonConverter, @@ -64725,6 +67457,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64739,6 +67472,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64799,6 +67533,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64813,6 +67548,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64830,6 +67566,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64844,6 +67581,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64904,6 +67642,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64918,6 +67657,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -64935,6 +67675,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -64949,6 +67690,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65009,6 +67751,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65023,6 +67766,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65040,6 +67784,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65054,6 +67799,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65114,6 +67860,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65128,6 +67875,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65145,6 +67893,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65159,6 +67908,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65219,6 +67969,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65233,6 +67984,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65250,6 +68002,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65264,6 +68017,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65324,6 +68078,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65338,6 +68093,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65355,6 +68111,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65369,6 +68126,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65429,6 +68187,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65443,6 +68202,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65460,6 +68220,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65474,6 +68235,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65491,6 +68253,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65505,6 +68268,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65522,6 +68286,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65536,6 +68301,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65596,6 +68362,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65610,6 +68377,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65627,6 +68395,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65641,6 +68410,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65701,6 +68471,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65715,6 +68486,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65732,6 +68504,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65746,6 +68519,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65763,6 +68537,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65777,6 +68552,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65794,6 +68570,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -65808,6 +68585,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -65867,6 +68645,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65881,6 +68660,7 @@ Set of 16 key-value pairs that can be attached to an object. This can be useful ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of an uploaded file that contains requests for the new batch. @@ -65904,6 +68684,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ V1ChatCompletions, V1Embeddings, @@ -65926,6 +68707,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: global::OpenApiGenerator.JsonConverters.CreateBatchRequestEndpointJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The endpoint to be used for all requests in the batch. Currently `/v1/chat/completions`, `/v1/embeddings`, and `/v1/completions` are supported. Note that `/v1/embeddings` batches are also restricted to a maximum of 50,000 embedding inputs across all requests in the batch., ConverterType: global::OpenApiGenerator.JsonConverters.CreateBatchRequestEndpointJsonConverter, @@ -65943,6 +68725,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ x24h ], @@ -65961,6 +68744,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: global::OpenApiGenerator.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The time frame within which the batch should be processed. Currently only `24h` is supported., ConverterType: global::OpenApiGenerator.JsonConverters.CreateBatchRequestCompletionWindowJsonConverter, @@ -65978,6 +68762,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -65992,6 +68777,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, DefaultValue: , IsDeprecated: false, Summary: Optional custom metadata for the batch., @@ -66053,6 +68839,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -66067,6 +68854,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -66084,6 +68872,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -66098,6 +68887,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -66115,6 +68905,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -66129,6 +68920,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -66189,6 +68981,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -66203,6 +68996,7 @@ Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/re ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Replicate/Methods/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Replicate/Methods/_.verified.txt index 09719e1e1e..e026233b2f 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Replicate/Methods/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Replicate/Methods/_.verified.txt @@ -66,6 +66,7 @@ The response will be a JSON object describing the account: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -86,6 +87,7 @@ The response will be a JSON object describing the account: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -108,6 +110,7 @@ The response will be a JSON object describing the account: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -198,6 +201,7 @@ The response will be a paginated JSON list of collection objects: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -218,6 +222,7 @@ The response will be a paginated JSON list of collection objects: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -258,6 +263,7 @@ The response will be a paginated JSON list of collection objects: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -272,6 +278,7 @@ The response will be a paginated JSON list of collection objects: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -339,6 +346,7 @@ The response will be a collection object with a nested list of the models in tha IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -359,6 +367,7 @@ The response will be a collection object with a nested list of the models in tha IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -468,6 +477,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -488,6 +498,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -510,6 +521,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -549,6 +561,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -563,6 +576,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model. Possible values can be retrieved from the `hardware.list` endpoint., ConverterType: , @@ -580,6 +594,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -594,6 +609,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of instances for scaling., ConverterType: , @@ -611,6 +627,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -625,6 +642,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The minimum number of instances for scaling., ConverterType: , @@ -642,6 +660,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -656,6 +675,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The full name of the model that you want to deploy e.g. stability-ai/sdxl., ConverterType: , @@ -673,6 +693,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -687,6 +708,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the deployment., ConverterType: , @@ -704,6 +726,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -718,6 +741,7 @@ The response will be a paginated JSON array of deployment objects, sorted with t ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The 64-character string ID of the model version that you want to deploy., ConverterType: , @@ -810,6 +834,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -830,6 +855,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -852,6 +878,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -872,6 +899,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -911,6 +939,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -925,6 +954,7 @@ The response will be a JSON object describing the deployment: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -945,6 +975,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -959,6 +990,7 @@ The response will be a JSON object describing the deployment: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -1024,6 +1056,7 @@ The response will be an empty 204, indicating the deployment has been deleted. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1044,6 +1077,7 @@ The response will be an empty 204, indicating the deployment has been deleted. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1084,6 +1118,7 @@ The response will be an empty 204, indicating the deployment has been deleted. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1098,6 +1133,7 @@ The response will be an empty 204, indicating the deployment has been deleted. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -1118,6 +1154,7 @@ The response will be an empty 204, indicating the deployment has been deleted. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1132,6 +1169,7 @@ The response will be an empty 204, indicating the deployment has been deleted. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -1216,6 +1254,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1236,6 +1275,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1258,6 +1298,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1297,6 +1338,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1311,6 +1353,7 @@ The response will be a JSON object describing the deployment: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -1331,6 +1374,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1345,6 +1389,7 @@ The response will be a JSON object describing the deployment: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -1365,6 +1410,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1379,6 +1425,7 @@ The response will be a JSON object describing the deployment: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model. Possible values can be retrieved from the `hardware.list` endpoint., ConverterType: , @@ -1396,6 +1443,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1410,6 +1458,7 @@ The response will be a JSON object describing the deployment: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of instances for scaling., ConverterType: , @@ -1427,6 +1476,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1441,6 +1491,7 @@ The response will be a JSON object describing the deployment: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The minimum number of instances for scaling., ConverterType: , @@ -1458,6 +1509,7 @@ The response will be a JSON object describing the deployment: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1472,6 +1524,7 @@ The response will be a JSON object describing the deployment: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the model version that you want to deploy, ConverterType: , @@ -1559,6 +1612,7 @@ Updating any deployment properties will increment the `number` field of the `cur IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1579,6 +1633,7 @@ Updating any deployment properties will increment the `number` field of the `cur IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1601,6 +1656,7 @@ Updating any deployment properties will increment the `number` field of the `cur IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1621,6 +1677,7 @@ Updating any deployment properties will increment the `number` field of the `cur IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1660,6 +1717,7 @@ Updating any deployment properties will increment the `number` field of the `cur IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1674,6 +1732,7 @@ Updating any deployment properties will increment the `number` field of the `cur ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -1694,6 +1753,7 @@ Updating any deployment properties will increment the `number` field of the `cur IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1708,6 +1768,7 @@ Updating any deployment properties will increment the `number` field of the `cur ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -1728,6 +1789,7 @@ Updating any deployment properties will increment the `number` field of the `cur IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1742,6 +1804,7 @@ Updating any deployment properties will increment the `number` field of the `cur ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's input as a JSON object. The input schema depends on what model you are running. To see the available inputs, click the "API" tab on the model you are running or [get the model version](#models.versions.get) and look at its `openapi_schema` property. For example, [stability-ai/sdxl](https://replicate.com/stability-ai/sdxl) takes `prompt` as an input. @@ -1775,6 +1838,7 @@ Use a data URL when: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1789,6 +1853,7 @@ Use a data URL when: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Request a URL to receive streaming output using [server-sent events (SSE)](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events). @@ -1810,6 +1875,7 @@ If the requested model version supports streaming, the returned prediction will IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1824,6 +1890,7 @@ If the requested model version supports streaming, the returned prediction will ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An HTTPS URL for receiving a webhook when the prediction has new output. The webhook will be a POST request where the request body is the same as the response body of the [get prediction](#predictions.get) operation. If there are network problems, we will retry the webhook a few times, so make sure it can be safely called more than once. Replicate will not follow redirects when sending webhook requests to your service, so be sure to specify a URL that will resolve without redirecting. @@ -1843,6 +1910,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1857,6 +1925,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: By default, we will send requests to your webhook URL whenever there are new outputs or the prediction has finished. You can change which events trigger webhook requests by specifying `webhook_events_filter` in the prediction request: @@ -1973,6 +2042,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, stream, @@ -1998,6 +2068,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2020,6 +2091,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, stream, @@ -2110,6 +2182,7 @@ The response will be a JSON array of hardware objects: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2130,6 +2203,7 @@ The response will be a JSON array of hardware objects: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2152,6 +2226,7 @@ The response will be a JSON array of hardware objects: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2260,6 +2335,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2280,6 +2356,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2320,6 +2397,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2334,6 +2412,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL for the model's cover image. This should be an image file., ConverterType: , @@ -2351,6 +2430,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2365,6 +2445,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A description of the model., ConverterType: , @@ -2382,6 +2463,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2396,6 +2478,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL for the model's source code on GitHub., ConverterType: , @@ -2413,6 +2496,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2427,6 +2511,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model. Possible values can be retrieved from the `hardware.list` endpoint., ConverterType: , @@ -2444,6 +2529,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2458,6 +2544,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL for the model's license., ConverterType: , @@ -2475,6 +2562,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2489,6 +2577,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the model. This must be unique among all models owned by the user or organization., ConverterType: , @@ -2506,6 +2595,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2520,6 +2610,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the user or organization that will own the model. This must be the same as the user or organization that is making the API request. In other words, the API token used in the request must belong to this user or organization., ConverterType: , @@ -2537,6 +2628,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2551,6 +2643,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL for the model's paper., ConverterType: , @@ -2568,6 +2661,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Public, Private @@ -2588,6 +2682,7 @@ The `cover_image_url` string is an HTTPS URL for an image file. This can be: ConverterType: global::OpenApiGenerator.JsonConverters.CreateModelsRequestVisibilityJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether the model should be public or private. A public model can be viewed and run by anyone, whereas a private model can be viewed and run only by the user or organization members that own the model., ConverterType: global::OpenApiGenerator.JsonConverters.CreateModelsRequestVisibilityJsonConverter, @@ -2665,6 +2760,7 @@ The response will be a model object in the following format: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2685,6 +2781,7 @@ The response will be a model object in the following format: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2707,6 +2804,7 @@ The response will be a model object in the following format: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2746,6 +2844,7 @@ The response will be a model object in the following format: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2760,6 +2859,7 @@ The response will be a model object in the following format: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -2780,6 +2880,7 @@ The response will be a model object in the following format: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2794,6 +2895,7 @@ The response will be a model object in the following format: ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -2861,6 +2963,7 @@ The response will be an empty 204, indicating the model has been deleted. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2881,6 +2984,7 @@ The response will be an empty 204, indicating the model has been deleted. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2921,6 +3025,7 @@ The response will be an empty 204, indicating the model has been deleted. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2935,6 +3040,7 @@ The response will be an empty 204, indicating the model has been deleted. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -2955,6 +3061,7 @@ The response will be an empty 204, indicating the model has been deleted. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2969,6 +3076,7 @@ The response will be an empty 204, indicating the model has been deleted. ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3055,6 +3163,7 @@ The `latest_version` object is the model's most recently pushed [version](#model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3075,6 +3184,7 @@ The `latest_version` object is the model's most recently pushed [version](#model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3115,6 +3225,7 @@ The `latest_version` object is the model's most recently pushed [version](#model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3129,6 +3240,7 @@ The `latest_version` object is the model's most recently pushed [version](#model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3149,6 +3261,7 @@ The `latest_version` object is the model's most recently pushed [version](#model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3163,6 +3276,7 @@ The `latest_version` object is the model's most recently pushed [version](#model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3183,6 +3297,7 @@ The `latest_version` object is the model's most recently pushed [version](#model IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3197,6 +3312,7 @@ The `latest_version` object is the model's most recently pushed [version](#model ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's input as a JSON object. The input schema depends on what model you are running. To see the available inputs, click the "API" tab on the model you are running or [get the model version](#models.versions.get) and look at its `openapi_schema` property. For example, [stability-ai/sdxl](https://replicate.com/stability-ai/sdxl) takes `prompt` as an input. @@ -3230,6 +3346,7 @@ Use a data URL when: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3244,6 +3361,7 @@ Use a data URL when: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Request a URL to receive streaming output using [server-sent events (SSE)](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events). @@ -3265,6 +3383,7 @@ If the requested model version supports streaming, the returned prediction will IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3279,6 +3398,7 @@ If the requested model version supports streaming, the returned prediction will ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An HTTPS URL for receiving a webhook when the prediction has new output. The webhook will be a POST request where the request body is the same as the response body of the [get prediction](#predictions.get) operation. If there are network problems, we will retry the webhook a few times, so make sure it can be safely called more than once. Replicate will not follow redirects when sending webhook requests to your service, so be sure to specify a URL that will resolve without redirecting. @@ -3298,6 +3418,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3312,6 +3433,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: By default, we will send requests to your webhook URL whenever there are new outputs or the prediction has finished. You can change which events trigger webhook requests by specifying `webhook_events_filter` in the prediction request: @@ -3428,6 +3550,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, stream, @@ -3453,6 +3576,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3475,6 +3599,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, stream, @@ -3519,6 +3644,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3533,6 +3659,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3553,6 +3680,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3567,6 +3695,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3640,6 +3769,7 @@ The response will be a JSON array of model version objects, sorted with the most IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3660,6 +3790,7 @@ The response will be a JSON array of model version objects, sorted with the most IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3700,6 +3831,7 @@ The response will be a JSON array of model version objects, sorted with the most IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3714,6 +3846,7 @@ The response will be a JSON array of model version objects, sorted with the most ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3734,6 +3867,7 @@ The response will be a JSON array of model version objects, sorted with the most IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3748,6 +3882,7 @@ The response will be a JSON array of model version objects, sorted with the most ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3768,6 +3903,7 @@ The response will be a JSON array of model version objects, sorted with the most IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3782,6 +3918,7 @@ The response will be a JSON array of model version objects, sorted with the most ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3852,6 +3989,7 @@ The response will be an empty 202, indicating the deletion request has been acce IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3872,6 +4010,7 @@ The response will be an empty 202, indicating the deletion request has been acce IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3912,6 +4051,7 @@ The response will be an empty 202, indicating the deletion request has been acce IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3926,6 +4066,7 @@ The response will be an empty 202, indicating the deletion request has been acce ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3946,6 +4087,7 @@ The response will be an empty 202, indicating the deletion request has been acce IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3960,6 +4102,7 @@ The response will be an empty 202, indicating the deletion request has been acce ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -3980,6 +4123,7 @@ The response will be an empty 202, indicating the deletion request has been acce IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3994,6 +4138,7 @@ The response will be an empty 202, indicating the deletion request has been acce ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -4094,6 +4239,7 @@ For more details, see the docs on [Cog's supported input and output types](https IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4114,6 +4260,7 @@ For more details, see the docs on [Cog's supported input and output types](https IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4154,6 +4301,7 @@ For more details, see the docs on [Cog's supported input and output types](https IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4168,6 +4316,7 @@ For more details, see the docs on [Cog's supported input and output types](https ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -4188,6 +4337,7 @@ For more details, see the docs on [Cog's supported input and output types](https IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4202,6 +4352,7 @@ For more details, see the docs on [Cog's supported input and output types](https ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -4222,6 +4373,7 @@ For more details, see the docs on [Cog's supported input and output types](https IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4236,6 +4388,7 @@ For more details, see the docs on [Cog's supported input and output types](https ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -4256,6 +4409,7 @@ For more details, see the docs on [Cog's supported input and output types](https IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4270,6 +4424,7 @@ For more details, see the docs on [Cog's supported input and output types](https ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A string representing the desired model to push to in the format `{destination_model_owner}/{destination_model_name}`. This should be an existing model owned by the user or organization making the API request. If the destination is invalid, the server will return an appropriate 4XX response. @@ -4289,6 +4444,7 @@ A string representing the desired model to push to in the format `{destination_m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4303,6 +4459,7 @@ A string representing the desired model to push to in the format `{destination_m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An object containing inputs to the Cog model's `train()` function. @@ -4322,6 +4479,7 @@ An object containing inputs to the Cog model's `train()` function. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4336,6 +4494,7 @@ An object containing inputs to the Cog model's `train()` function. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An HTTPS URL for receiving a webhook when the training completes. The webhook will be a POST request where the request body is the same as the response body of the [get training](#trainings.get) operation. If there are network problems, we will retry the webhook a few times, so make sure it can be safely called more than once. Replicate will not follow redirects when sending webhook requests to your service, so be sure to specify a URL that will resolve without redirecting., ConverterType: , @@ -4353,6 +4512,7 @@ An object containing inputs to the Cog model's `train()` function. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4367,6 +4527,7 @@ An object containing inputs to the Cog model's `train()` function. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: By default, we will send requests to your webhook URL whenever there are new outputs or the training has finished. You can change which events trigger webhook requests by specifying `webhook_events_filter` in the training request: @@ -4486,6 +4647,7 @@ To find some models to train on, check out the [trainable language models collec IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ destination, input, @@ -4511,6 +4673,7 @@ To find some models to train on, check out the [trainable language models collec IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4533,6 +4696,7 @@ To find some models to train on, check out the [trainable language models collec IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ destination, input, @@ -4659,6 +4823,7 @@ The response will be a paginated JSON array of prediction objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4679,6 +4844,7 @@ The response will be a paginated JSON array of prediction objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4719,6 +4885,7 @@ The response will be a paginated JSON array of prediction objects, sorted with t IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4733,6 +4900,7 @@ The response will be a paginated JSON array of prediction objects, sorted with t ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's input as a JSON object. The input schema depends on what model you are running. To see the available inputs, click the "API" tab on the model you are running or [get the model version](#models.versions.get) and look at its `openapi_schema` property. For example, [stability-ai/sdxl](https://replicate.com/stability-ai/sdxl) takes `prompt` as an input. @@ -4766,6 +4934,7 @@ Use a data URL when: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4780,6 +4949,7 @@ Use a data URL when: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Request a URL to receive streaming output using [server-sent events (SSE)](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events). @@ -4801,6 +4971,7 @@ If the requested model version supports streaming, the returned prediction will IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4815,6 +4986,7 @@ If the requested model version supports streaming, the returned prediction will ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the model version that you want to run., ConverterType: , @@ -4832,6 +5004,7 @@ If the requested model version supports streaming, the returned prediction will IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4846,6 +5019,7 @@ If the requested model version supports streaming, the returned prediction will ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An HTTPS URL for receiving a webhook when the prediction has new output. The webhook will be a POST request where the request body is the same as the response body of the [get prediction](#predictions.get) operation. If there are network problems, we will retry the webhook a few times, so make sure it can be safely called more than once. Replicate will not follow redirects when sending webhook requests to your service, so be sure to specify a URL that will resolve without redirecting. @@ -4865,6 +5039,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4879,6 +5054,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: By default, we will send requests to your webhook URL whenever there are new outputs or the prediction has finished. You can change which events trigger webhook requests by specifying `webhook_events_filter` in the prediction request: @@ -4997,6 +5173,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, stream, @@ -5023,6 +5200,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5045,6 +5223,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ input, stream, @@ -5090,6 +5269,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5104,6 +5284,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5207,6 +5388,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5227,6 +5409,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5267,6 +5450,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5281,6 +5465,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5329,6 +5514,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5349,6 +5535,7 @@ Output files are served by `replicate.delivery` and its subdomains. If you use a IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5472,6 +5659,7 @@ The response will be a paginated JSON array of training objects, sorted with the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5492,6 +5680,7 @@ The response will be a paginated JSON array of training objects, sorted with the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5532,6 +5721,7 @@ The response will be a paginated JSON array of training objects, sorted with the IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5546,6 +5736,7 @@ The response will be a paginated JSON array of training objects, sorted with the ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5648,6 +5839,7 @@ Terminated trainings (with a status of `succeeded`, `failed`, or `canceled`) wil IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5668,6 +5860,7 @@ Terminated trainings (with a status of `succeeded`, `failed`, or `canceled`) wil IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5708,6 +5901,7 @@ Terminated trainings (with a status of `succeeded`, `failed`, or `canceled`) wil IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5722,6 +5916,7 @@ Terminated trainings (with a status of `succeeded`, `failed`, or `canceled`) wil ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -5770,6 +5965,7 @@ Terminated trainings (with a status of `succeeded`, `failed`, or `canceled`) wil IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5790,6 +5986,7 @@ Terminated trainings (with a status of `succeeded`, `failed`, or `canceled`) wil IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5875,6 +6072,7 @@ The response will be a JSON object with a `key` property: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5895,6 +6093,7 @@ The response will be a JSON object with a `key` property: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5917,6 +6116,7 @@ The response will be a JSON object with a `key` property: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5982,6 +6182,7 @@ The response will be a JSON object with a `key` property: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -6002,6 +6203,7 @@ The response will be a JSON object with a `key` property: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Replicate/Models/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Replicate/Models/_.verified.txt index f8a3cd9fa5..58b6943a50 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/Replicate/Models/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/Replicate/Models/_.verified.txt @@ -41,6 +41,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -55,6 +56,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's input as a JSON object. The input schema depends on what model you are running. To see the available inputs, click the "API" tab on the model you are running or [get the model version](#models.versions.get) and look at its `openapi_schema` property. For example, [stability-ai/sdxl](https://replicate.com/stability-ai/sdxl) takes `prompt` as an input. @@ -88,6 +90,7 @@ Use a data URL when: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -102,6 +105,7 @@ Use a data URL when: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Request a URL to receive streaming output using [server-sent events (SSE)](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events). @@ -123,6 +127,7 @@ If the requested model version supports streaming, the returned prediction will IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -137,6 +142,7 @@ If the requested model version supports streaming, the returned prediction will ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An HTTPS URL for receiving a webhook when the prediction has new output. The webhook will be a POST request where the request body is the same as the response body of the [get prediction](#predictions.get) operation. If there are network problems, we will retry the webhook a few times, so make sure it can be safely called more than once. Replicate will not follow redirects when sending webhook requests to your service, so be sure to specify a URL that will resolve without redirecting. @@ -156,6 +162,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -170,6 +177,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: By default, we will send requests to your webhook URL whenever there are new outputs or the prediction has finished. You can change which events trigger webhook requests by specifying `webhook_events_filter` in the prediction request: @@ -252,6 +260,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -266,6 +275,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -283,6 +293,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -297,6 +308,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -314,6 +326,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -328,6 +341,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -345,6 +359,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -359,6 +374,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -419,6 +435,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -433,6 +450,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A string representing the desired model to push to in the format `{destination_model_owner}/{destination_model_name}`. This should be an existing model owned by the user or organization making the API request. If the destination is invalid, the server will return an appropriate 4XX response. @@ -452,6 +470,7 @@ A string representing the desired model to push to in the format `{destination_m IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -466,6 +485,7 @@ A string representing the desired model to push to in the format `{destination_m ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An object containing inputs to the Cog model's `train()` function. @@ -485,6 +505,7 @@ An object containing inputs to the Cog model's `train()` function. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -499,6 +520,7 @@ An object containing inputs to the Cog model's `train()` function. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An HTTPS URL for receiving a webhook when the training completes. The webhook will be a POST request where the request body is the same as the response body of the [get training](#trainings.get) operation. If there are network problems, we will retry the webhook a few times, so make sure it can be safely called more than once. Replicate will not follow redirects when sending webhook requests to your service, so be sure to specify a URL that will resolve without redirecting., ConverterType: , @@ -516,6 +538,7 @@ An object containing inputs to the Cog model's `train()` function. IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -530,6 +553,7 @@ An object containing inputs to the Cog model's `train()` function. ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: By default, we will send requests to your webhook URL whenever there are new outputs or the training has finished. You can change which events trigger webhook requests by specifying `webhook_events_filter` in the training request: @@ -613,6 +637,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -627,6 +652,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -644,6 +670,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -658,6 +685,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -675,6 +703,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -689,6 +718,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -706,6 +736,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -720,6 +751,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -780,6 +812,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -794,6 +827,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model's input as a JSON object. The input schema depends on what model you are running. To see the available inputs, click the "API" tab on the model you are running or [get the model version](#models.versions.get) and look at its `openapi_schema` property. For example, [stability-ai/sdxl](https://replicate.com/stability-ai/sdxl) takes `prompt` as an input. @@ -827,6 +861,7 @@ Use a data URL when: IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -841,6 +876,7 @@ Use a data URL when: ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Request a URL to receive streaming output using [server-sent events (SSE)](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events). @@ -862,6 +898,7 @@ If the requested model version supports streaming, the returned prediction will IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -876,6 +913,7 @@ If the requested model version supports streaming, the returned prediction will ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the model version that you want to run., ConverterType: , @@ -893,6 +931,7 @@ If the requested model version supports streaming, the returned prediction will IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -907,6 +946,7 @@ If the requested model version supports streaming, the returned prediction will ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An HTTPS URL for receiving a webhook when the prediction has new output. The webhook will be a POST request where the request body is the same as the response body of the [get prediction](#predictions.get) operation. If there are network problems, we will retry the webhook a few times, so make sure it can be safely called more than once. Replicate will not follow redirects when sending webhook requests to your service, so be sure to specify a URL that will resolve without redirecting. @@ -926,6 +966,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -940,6 +981,7 @@ An HTTPS URL for receiving a webhook when the prediction has new output. The web ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: By default, we will send requests to your webhook URL whenever there are new outputs or the prediction has finished. You can change which events trigger webhook requests by specifying `webhook_events_filter` in the prediction request: @@ -1023,6 +1065,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1037,6 +1080,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1054,6 +1098,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1068,6 +1113,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1085,6 +1131,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1099,6 +1146,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1116,6 +1164,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1130,6 +1179,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1190,6 +1240,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1204,6 +1255,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The GitHub URL of the account., ConverterType: , @@ -1221,6 +1273,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1235,6 +1288,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the account., ConverterType: , @@ -1252,6 +1306,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Organization, User @@ -1272,6 +1327,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: global::OpenApiGenerator.JsonConverters.GetAccountResponseTypeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The account type. Can be a user or an organization., ConverterType: global::OpenApiGenerator.JsonConverters.GetAccountResponseTypeJsonConverter, @@ -1289,6 +1345,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1303,6 +1360,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The username of the account., ConverterType: , @@ -1364,6 +1422,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1378,6 +1437,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1395,6 +1455,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -1409,6 +1470,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1469,6 +1531,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1483,6 +1546,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL pointing to the next page of deployment objects if any, ConverterType: , @@ -1500,6 +1564,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1514,6 +1579,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL pointing to the previous page of deployment objects if any, ConverterType: , @@ -1531,6 +1597,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1545,6 +1612,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: An array containing a page of deployment objects, ConverterType: , @@ -1605,6 +1673,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1619,6 +1688,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1636,6 +1706,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1650,6 +1721,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the deployment., ConverterType: , @@ -1667,6 +1739,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1681,6 +1754,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The owner of the deployment., ConverterType: , @@ -1741,6 +1815,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1755,6 +1830,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1772,6 +1848,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1786,6 +1863,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The time the release was created., ConverterType: , @@ -1803,6 +1881,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1817,6 +1896,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -1834,6 +1914,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1848,6 +1929,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model identifier string in the format of `{model_owner}/{model_name}`., ConverterType: , @@ -1865,6 +1947,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1879,6 +1962,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The release number. This is an auto-incrementing integer that starts at 1, and is set automatically when a deployment is created., ConverterType: , @@ -1896,6 +1980,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1910,6 +1995,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the model version used in the release., ConverterType: , @@ -1970,6 +2056,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -1984,6 +2071,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model., ConverterType: , @@ -2001,6 +2089,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2015,6 +2104,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of instances for scaling., ConverterType: , @@ -2032,6 +2122,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2046,6 +2137,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The minimum number of instances for scaling., ConverterType: , @@ -2106,6 +2198,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2120,6 +2213,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The GitHub URL of the account that created the release., ConverterType: , @@ -2137,6 +2231,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2151,6 +2246,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the account that created the release., ConverterType: , @@ -2168,6 +2264,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Organization, User @@ -2188,6 +2285,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: global::OpenApiGenerator.JsonConverters.ListDeploymentsResponseResultsCurrentReleaseCreatedByTypeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The account type of the creator. Can be a user or an organization., ConverterType: global::OpenApiGenerator.JsonConverters.ListDeploymentsResponseResultsCurrentReleaseCreatedByTypeJsonConverter, @@ -2205,6 +2303,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2219,6 +2318,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The username of the account that created the release., ConverterType: , @@ -2280,6 +2380,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2294,6 +2395,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2311,6 +2413,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -2325,6 +2428,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2385,6 +2489,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2399,6 +2504,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model. Possible values can be retrieved from the `hardware.list` endpoint., ConverterType: , @@ -2416,6 +2522,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2430,6 +2537,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of instances for scaling., ConverterType: , @@ -2447,6 +2555,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2461,6 +2570,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The minimum number of instances for scaling., ConverterType: , @@ -2478,6 +2588,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2492,6 +2603,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The full name of the model that you want to deploy e.g. stability-ai/sdxl., ConverterType: , @@ -2509,6 +2621,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2523,6 +2636,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the deployment., ConverterType: , @@ -2540,6 +2654,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2554,6 +2669,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The 64-character string ID of the model version that you want to deploy., ConverterType: , @@ -2614,6 +2730,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2628,6 +2745,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2645,6 +2763,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2659,6 +2778,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the deployment., ConverterType: , @@ -2676,6 +2796,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2690,6 +2811,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The owner of the deployment., ConverterType: , @@ -2750,6 +2872,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2764,6 +2887,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2781,6 +2905,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2795,6 +2920,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The time the release was created., ConverterType: , @@ -2812,6 +2938,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2826,6 +2953,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -2843,6 +2971,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2857,6 +2986,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model identifier string in the format of `{model_owner}/{model_name}`., ConverterType: , @@ -2874,6 +3004,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2888,6 +3019,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The release number., ConverterType: , @@ -2905,6 +3037,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2919,6 +3052,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the model version used in the release., ConverterType: , @@ -2979,6 +3113,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -2993,6 +3128,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model., ConverterType: , @@ -3010,6 +3146,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3024,6 +3161,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of instances for scaling., ConverterType: , @@ -3041,6 +3179,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3055,6 +3194,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The minimum number of instances for scaling., ConverterType: , @@ -3115,6 +3255,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3129,6 +3270,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The GitHub URL of the account that created the release., ConverterType: , @@ -3146,6 +3288,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3160,6 +3303,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the account that created the release., ConverterType: , @@ -3177,6 +3321,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Organization, User @@ -3197,6 +3342,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: global::OpenApiGenerator.JsonConverters.CreateDeploymentsResponseCurrentReleaseCreatedByTypeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The account type of the creator. Can be a user or an organization., ConverterType: global::OpenApiGenerator.JsonConverters.CreateDeploymentsResponseCurrentReleaseCreatedByTypeJsonConverter, @@ -3214,6 +3360,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3228,6 +3375,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The username of the account that created the release., ConverterType: , @@ -3289,6 +3437,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3303,6 +3452,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3320,6 +3470,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -3334,6 +3485,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3394,6 +3546,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3408,6 +3561,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3425,6 +3579,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3439,6 +3594,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the deployment., ConverterType: , @@ -3456,6 +3612,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3470,6 +3627,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The owner of the deployment., ConverterType: , @@ -3530,6 +3688,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3544,6 +3703,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3561,6 +3721,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3575,6 +3736,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The time the release was created., ConverterType: , @@ -3592,6 +3754,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3606,6 +3769,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -3623,6 +3787,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3637,6 +3802,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model identifier string in the format of `{model_owner}/{model_name}`., ConverterType: , @@ -3654,6 +3820,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3668,6 +3835,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The release number., ConverterType: , @@ -3685,6 +3853,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3699,6 +3868,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the model version used in the release., ConverterType: , @@ -3759,6 +3929,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3773,6 +3944,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model., ConverterType: , @@ -3790,6 +3962,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3804,6 +3977,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of instances for scaling., ConverterType: , @@ -3821,6 +3995,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3835,6 +4010,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The minimum number of instances for scaling., ConverterType: , @@ -3895,6 +4071,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3909,6 +4086,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The GitHub URL of the account that created the release., ConverterType: , @@ -3926,6 +4104,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -3940,6 +4119,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the account that created the release., ConverterType: , @@ -3957,6 +4137,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Organization, User @@ -3977,6 +4158,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: global::OpenApiGenerator.JsonConverters.GetDeploymentsResponseCurrentReleaseCreatedByTypeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The account type of the creator. Can be a user or an organization., ConverterType: global::OpenApiGenerator.JsonConverters.GetDeploymentsResponseCurrentReleaseCreatedByTypeJsonConverter, @@ -3994,6 +4176,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4008,6 +4191,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The username of the account that created the release., ConverterType: , @@ -4069,6 +4253,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4083,6 +4268,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4100,6 +4286,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -4114,6 +4301,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4174,6 +4362,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4188,6 +4377,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model. Possible values can be retrieved from the `hardware.list` endpoint., ConverterType: , @@ -4205,6 +4395,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4219,6 +4410,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of instances for scaling., ConverterType: , @@ -4236,6 +4428,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4250,6 +4443,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The minimum number of instances for scaling., ConverterType: , @@ -4267,6 +4461,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4281,6 +4476,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the model version that you want to deploy, ConverterType: , @@ -4341,6 +4537,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4355,6 +4552,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4372,6 +4570,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4386,6 +4585,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the deployment., ConverterType: , @@ -4403,6 +4603,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4417,6 +4618,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The owner of the deployment., ConverterType: , @@ -4477,6 +4679,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4491,6 +4694,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4508,6 +4712,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: true, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4522,6 +4727,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The time the release was created., ConverterType: , @@ -4539,6 +4745,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4553,6 +4760,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -4570,6 +4778,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4584,6 +4793,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The model identifier string in the format of `{model_owner}/{model_name}`., ConverterType: , @@ -4601,6 +4811,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4615,6 +4826,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The release number., ConverterType: , @@ -4632,6 +4844,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4646,6 +4859,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The ID of the model version used in the release., ConverterType: , @@ -4706,6 +4920,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4720,6 +4935,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model., ConverterType: , @@ -4737,6 +4953,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4751,6 +4968,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The maximum number of instances for scaling., ConverterType: , @@ -4768,6 +4986,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4782,6 +5001,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The minimum number of instances for scaling., ConverterType: , @@ -4842,6 +5062,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4856,6 +5077,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The GitHub URL of the account that created the release., ConverterType: , @@ -4873,6 +5095,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4887,6 +5110,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the account that created the release., ConverterType: , @@ -4904,6 +5128,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Organization, User @@ -4924,6 +5149,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: global::OpenApiGenerator.JsonConverters.UpdateDeploymentsResponseCurrentReleaseCreatedByTypeJsonConverter }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The account type of the creator. Can be a user or an organization., ConverterType: global::OpenApiGenerator.JsonConverters.UpdateDeploymentsResponseCurrentReleaseCreatedByTypeJsonConverter, @@ -4941,6 +5167,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -4955,6 +5182,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The username of the account that created the release., ConverterType: , @@ -5016,6 +5244,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5030,6 +5259,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5047,6 +5277,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5061,6 +5292,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5121,6 +5353,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5135,6 +5368,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the hardware., ConverterType: , @@ -5152,6 +5386,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5166,6 +5401,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU of the hardware., ConverterType: , @@ -5226,6 +5462,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5240,6 +5477,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL for the model's cover image. This should be an image file., ConverterType: , @@ -5257,6 +5495,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5271,6 +5510,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A description of the model., ConverterType: , @@ -5288,6 +5528,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5302,6 +5543,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL for the model's source code on GitHub., ConverterType: , @@ -5319,6 +5561,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5333,6 +5576,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The SKU for the hardware used to run the model. Possible values can be retrieved from the `hardware.list` endpoint., ConverterType: , @@ -5350,6 +5594,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5364,6 +5609,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL for the model's license., ConverterType: , @@ -5381,6 +5627,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5395,6 +5642,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the model. This must be unique among all models owned by the user or organization., ConverterType: , @@ -5412,6 +5660,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5426,6 +5675,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The name of the user or organization that will own the model. This must be the same as the user or organization that is making the API request. In other words, the API token used in the request must belong to this user or organization., ConverterType: , @@ -5443,6 +5693,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5457,6 +5708,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: A URL for the model's paper., ConverterType: , @@ -5474,6 +5726,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ Public, Private @@ -5494,6 +5747,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: global::OpenApiGenerator.JsonConverters.CreateModelsRequestVisibilityJsonConverter }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Whether the model should be public or private. A public model can be viewed and run by anyone, whereas a private model can be viewed and run only by the user or organization members that own the model., ConverterType: global::OpenApiGenerator.JsonConverters.CreateModelsRequestVisibilityJsonConverter, @@ -5555,6 +5809,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5569,6 +5824,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5586,6 +5842,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -5600,6 +5857,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -5660,6 +5918,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -5674,6 +5933,7 @@ Requests for event types `output` and `logs` will be sent at most once every 500 ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: The signing secret., ConverterType: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/SpecialCases/Methods/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/SpecialCases/Methods/_.verified.txt index 6e9c2f21c1..93d020fc9a 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/SpecialCases/Methods/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/SpecialCases/Methods/_.verified.txt @@ -18,6 +18,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -32,6 +33,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, ParameterLocation: Query, ParameterStyle: Form, ParameterExplode: true, @@ -78,6 +80,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -98,6 +101,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -120,6 +124,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -140,6 +145,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ code, message @@ -208,6 +214,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -228,6 +235,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ code, message @@ -253,6 +261,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ code, message @@ -295,6 +304,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -309,6 +319,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, ParameterLocation: Path, ParameterStyle: Simple, ParameterExplode: false, @@ -355,6 +366,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -375,6 +387,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ 4, 1.5, @@ -404,6 +417,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ 4, 1.5, @@ -431,6 +445,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: [ code, message @@ -498,6 +513,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , @@ -518,6 +534,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: , diff --git a/src/tests/OpenApiGenerator.UnitTests/Snapshots/SpecialCases/Models/_.verified.txt b/src/tests/OpenApiGenerator.UnitTests/Snapshots/SpecialCases/Models/_.verified.txt index a0be103c32..c1808121b8 100644 --- a/src/tests/OpenApiGenerator.UnitTests/Snapshots/SpecialCases/Models/_.verified.txt +++ b/src/tests/OpenApiGenerator.UnitTests/Snapshots/SpecialCases/Models/_.verified.txt @@ -40,6 +40,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -54,6 +55,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: 1234, ConverterType: , @@ -71,6 +73,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -85,6 +88,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: true, ConverterType: , @@ -102,6 +106,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -116,6 +121,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: Example: true, ConverterType: , @@ -133,6 +139,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -147,6 +154,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -164,6 +172,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -178,6 +187,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -195,6 +205,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -209,6 +220,7 @@ ConverterType: }, IsRequired: false, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -268,6 +280,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -282,6 +295,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: , @@ -299,6 +313,7 @@ IsBase64: false, IsDate: false, IsDateTime: false, + IsBinary: false, Properties: null, EnumValues: null, Namespace: G, @@ -313,6 +328,7 @@ ConverterType: }, IsRequired: true, + IsMultiPartFormDataFilename: false, IsDeprecated: false, Summary: , ConverterType: ,