HttpSecurityScheme

@SerialName(value = "http")
data class HttpSecurityScheme(val type: String = "http", val scheme: String, val bearerFormat: String? = null) : SecurityScheme(source)

HTTP authentication scheme (Basic, Bearer, etc.).

Constructors

Link copied to clipboard
constructor(type: String = "http", scheme: String, bearerFormat: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "bearerFormat")
val bearerFormat: String?
Link copied to clipboard
@SerialName(value = "scheme")
val scheme: String
Link copied to clipboard
@SerialName(value = "type")
open override val type: String