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 void SerializeAsV3(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
707
707
public void SerializeAsV31(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
708
708
}
709
-
public class OpenApiDocument : Microsoft.OpenApi.Interfaces.IOpenApiAnnotatable, Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
709
+
public class OpenApiDocument : Microsoft.OpenApi.Interfaces.IMetadataContainer, Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
710
710
{
711
711
public OpenApiDocument() { }
712
712
public OpenApiDocument(Microsoft.OpenApi.Models.OpenApiDocument? document) { }
713
-
public System.Collections.Generic.IDictionary<string, object>? Annotations { get; set; }
714
713
public System.Uri BaseUri { get; }
715
714
public Microsoft.OpenApi.Models.OpenApiComponents? Components { get; set; }
716
715
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension>? Extensions { get; set; }
717
716
public Microsoft.OpenApi.Models.OpenApiExternalDocs? ExternalDocs { get; set; }
718
717
public Microsoft.OpenApi.Models.OpenApiInfo Info { get; set; }
719
718
public System.Uri? JsonSchemaDialect { get; set; }
719
+
public System.Collections.Generic.IDictionary<string, object>? Metadata { get; set; }
720
720
public Microsoft.OpenApi.Models.OpenApiPaths Paths { get; set; }
721
721
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiSecurityRequirement>? Security { get; set; }
722
722
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiServer>? Servers { get; set; }
public void SerializeAsV3(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
895
895
public void SerializeAsV31(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
896
896
}
897
-
public class OpenApiOperation : Microsoft.OpenApi.Interfaces.IOpenApiAnnotatable, Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
897
+
public class OpenApiOperation : Microsoft.OpenApi.Interfaces.IMetadataContainer, Microsoft.OpenApi.Interfaces.IOpenApiElement, Microsoft.OpenApi.Interfaces.IOpenApiExtensible, Microsoft.OpenApi.Interfaces.IOpenApiSerializable
898
898
{
899
899
public const bool DeprecatedDefault = false;
900
900
public OpenApiOperation() { }
901
901
public OpenApiOperation(Microsoft.OpenApi.Models.OpenApiOperation operation) { }
902
-
public System.Collections.Generic.IDictionary<string, object>? Annotations { get; set; }
903
902
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.Interfaces.IOpenApiCallback>? Callbacks { get; set; }
904
903
public bool Deprecated { get; set; }
905
904
public string? Description { get; set; }
906
905
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Interfaces.IOpenApiExtension>? Extensions { get; set; }
907
906
public Microsoft.OpenApi.Models.OpenApiExternalDocs? ExternalDocs { get; set; }
907
+
public System.Collections.Generic.IDictionary<string, object>? Metadata { get; set; }
908
908
public string? OperationId { get; set; }
909
909
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.Interfaces.IOpenApiParameter>? Parameters { get; set; }
910
910
public Microsoft.OpenApi.Models.Interfaces.IOpenApiRequestBody? RequestBody { get; set; }
0 commit comments