AccessToken

data class AccessToken(val value: String, val tokenType: String)

Represents an access token, which is used for authentication and authorization purposes.

Constructors

Link copied to clipboard
constructor(value: String, tokenType: String)

Properties

Link copied to clipboard
val tokenType: String

The type of the access token. e.g. "Bearer"

Link copied to clipboard
val value: String

The value of the access token.