toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiKeySecurityScheme = this.apiKeySecurityScheme;
final httpAuthSecurityScheme = this.httpAuthSecurityScheme;
final mtlsSecurityScheme = this.mtlsSecurityScheme;
final oauth2SecurityScheme = this.oauth2SecurityScheme;
final openIdConnectSecurityScheme = this.openIdConnectSecurityScheme;
return {
'apiKeySecurityScheme': ?apiKeySecurityScheme,
'httpAuthSecurityScheme': ?httpAuthSecurityScheme,
'mtlsSecurityScheme': ?mtlsSecurityScheme,
'oauth2SecurityScheme': ?oauth2SecurityScheme,
'openIdConnectSecurityScheme': ?openIdConnectSecurityScheme,
};
}