BasicAuthenticationResponse

data class BasicAuthenticationResponse(val password: String? = null, val type: String, val username: String? = null)

Constructors

Link copied to clipboard
constructor(password: String? = null, type: String, username: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val password: String? = null

Gets or sets the password, return value will always be empty.

Link copied to clipboard

Gets or sets the HTTP authentication type. Expected value is 'Basic'.

Link copied to clipboard
val username: String? = null

Gets or sets the username.