Security Scheme Model
data class SecuritySchemeModel<TScope : Enum<TScope>, Described>(val type: SecuritySchemeType, val referenceName: String, val name: String? = null, val in: APIKeyLocation? = null, val scheme: HttpSecurityScheme? = null, val bearerFormat: String? = null, val flows: FlowsModel<TScope>? = null, val openIdConnectUrl: String? = null) : DataModel(source)
Constructors
Link copied to clipboard
constructor(type: SecuritySchemeType, referenceName: String, name: String? = null, in: APIKeyLocation? = null, scheme: HttpSecurityScheme? = null, bearerFormat: String? = null, flows: FlowsModel<TScope>? = null, openIdConnectUrl: String? = null)