You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class OpenApiComponents : Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
424
424
{
425
425
public OpenApiComponents() { }
426
-
public OpenApiComponents(Microsoft.OpenApi.Models.OpenApiComponents components) { }
427
-
public System.Collections.Generic.IDictionary<string, Json.Schema.JsonSchema> Schemas { get; set; }
428
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiCallback> Callbacks { get; set; }
429
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiExample> Examples { get; set; }
430
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension> Extensions { get; set; }
431
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiHeader> Headers { get; set; }
432
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiLink> Links { get; set; }
433
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiParameter> Parameters { get; set; }
434
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiPathItem> PathItems { get; set; }
435
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiRequestBody> RequestBodies { get; set; }
436
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiResponse> Responses { get; set; }
437
-
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiSecurityScheme> SecuritySchemes { get; set; }
426
+
public OpenApiComponents(Microsoft.OpenApi.Models.OpenApiComponents? components) { }
427
+
public System.Collections.Generic.IDictionary<string, Json.Schema.JsonSchema>? Schemas { get; set; }
428
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiCallback>? Callbacks { get; set; }
429
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiExample>? Examples { get; set; }
430
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension>? Extensions { get; set; }
431
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiHeader>? Headers { get; set; }
432
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiLink>? Links { get; set; }
433
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiParameter>? Parameters { get; set; }
434
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiPathItem>? PathItems { get; set; }
435
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiRequestBody>? RequestBodies { get; set; }
436
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiResponse>? Responses { get; set; }
437
+
public virtual System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiSecurityScheme>? SecuritySchemes { get; set; }
438
438
public void SerializeAsV2(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
439
439
public void SerializeAsV3(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
440
440
public void SerializeAsV31(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
public class OpenApiDocument : Json.Schema.IBaseDocument, Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
607
607
{
608
608
public OpenApiDocument() { }
609
-
public OpenApiDocument(Microsoft.OpenApi.Models.OpenApiDocument document) { }
609
+
public OpenApiDocument(Microsoft.OpenApi.Models.OpenApiDocument? document) { }
610
610
public System.Uri BaseUri { get; }
611
-
public Microsoft.OpenApi.Models.OpenApiComponents Components { get; set; }
612
-
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension> Extensions { get; set; }
613
-
public Microsoft.OpenApi.Models.OpenApiExternalDocs ExternalDocs { get; set; }
611
+
public Microsoft.OpenApi.Models.OpenApiComponents? Components { get; set; }
612
+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension>? Extensions { get; set; }
613
+
public Microsoft.OpenApi.Models.OpenApiExternalDocs? ExternalDocs { get; set; }
614
614
public string HashCode { get; }
615
-
public Microsoft.OpenApi.Models.OpenApiInfo Info { get; set; }
616
-
public string JsonSchemaDialect { get; set; }
617
-
public Microsoft.OpenApi.Models.OpenApiPaths Paths { get; set; }
618
-
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiSecurityRequirement> SecurityRequirements { get; set; }
619
-
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiServer> Servers { get; set; }
620
-
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiTag> Tags { get; set; }
621
-
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiPathItem> Webhooks { get; set; }
622
-
public Microsoft.OpenApi.Services.OpenApiWorkspace Workspace { get; set; }
623
-
public Json.Schema.JsonSchema FindSubschema(Json.Pointer.JsonPointer pointer, Json.Schema.EvaluationOptions options) { }
624
-
public Json.Schema.JsonSchema ResolveJsonSchemaReference(System.Uri referenceUri) { }
625
-
public Microsoft.OpenApi.Interfaces.IOpenApiReferenceable ResolveReference(Microsoft.OpenApi.Models.OpenApiReference reference) { }
615
+
public Microsoft.OpenApi.Models.OpenApiInfo? Info { get; set; }
616
+
public string? JsonSchemaDialect { get; set; }
617
+
public Microsoft.OpenApi.Models.OpenApiPaths? Paths { get; set; }
618
+
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiSecurityRequirement>? SecurityRequirements { get; set; }
619
+
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiServer>? Servers { get; set; }
620
+
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiTag>? Tags { get; set; }
621
+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiPathItem>? Webhooks { get; set; }
622
+
public Microsoft.OpenApi.Services.OpenApiWorkspace? Workspace { get; set; }
623
+
public Json.Schema.JsonSchema? FindSubschema(Json.Pointer.JsonPointer pointer, Json.Schema.EvaluationOptions options) { }
624
+
public Json.Schema.JsonSchema? ResolveJsonSchemaReference(System.Uri referenceUri) { }
625
+
public Microsoft.OpenApi.Interfaces.IOpenApiReferenceable? ResolveReference(Microsoft.OpenApi.Models.OpenApiReference reference) { }
626
626
public void SerializeAsV2(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
627
627
public void SerializeAsV3(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
628
628
public void SerializeAsV31(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
629
629
public void SetReferenceHostDocument() { }
630
630
public static string GenerateHashValue(Microsoft.OpenApi.Models.OpenApiDocument doc) { }
public static System.Threading.Tasks.Task<Microsoft.OpenApi.Reader.ReadResult> LoadAsync(System.IO.TextReader input, string format, Microsoft.OpenApi.Reader.OpenApiReaderSettings? settings = null) { }
636
+
public static System.Threading.Tasks.Task<Microsoft.OpenApi.Reader.ReadResult> LoadAsync(System.IO.Stream stream, string format, Microsoft.OpenApi.Reader.OpenApiReaderSettings? settings = null, System.Threading.CancellationToken cancellationToken = default) { }
637
+
public static Microsoft.OpenApi.Reader.ReadResult Parse(string input, string? format = null, Microsoft.OpenApi.Reader.OpenApiReaderSettings? settings = null) { }
638
638
}
639
639
public class OpenApiEncoding : Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
public class OpenApiMediaType : Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
776
776
{
777
777
public OpenApiMediaType() { }
778
-
public OpenApiMediaType(Microsoft.OpenApi.Models.OpenApiMediaType mediaType) { }
779
-
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiEncoding> Encoding { get; set; }
780
-
public Microsoft.OpenApi.Any.OpenApiAny Example { get; set; }
781
-
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiExample> Examples { get; set; }
782
-
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension> Extensions { get; set; }
783
-
public virtual Json.Schema.JsonSchema Schema { get; set; }
778
+
public OpenApiMediaType(Microsoft.OpenApi.Models.OpenApiMediaType? mediaType) { }
779
+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiEncoding>? Encoding { get; set; }
780
+
public Microsoft.OpenApi.Any.OpenApiAny? Example { get; set; }
781
+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiExample>? Examples { get; set; }
782
+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension>? Extensions { get; set; }
783
+
public virtual Json.Schema.JsonSchema? Schema { get; set; }
784
784
public void SerializeAsV2(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
785
785
public void SerializeAsV3(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
786
786
public void SerializeAsV31(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
0 commit comments