AuthToken

data class AuthToken(val accessToken: String, val type: String = "Bearer")

Token used for API request authentication.

Constructors

Link copied to clipboard
constructor(accessToken: String, type: String = "Bearer")

Properties

Link copied to clipboard

An OAuth access token to be used for authorization.

Link copied to clipboard

The token type. Usually Bearer

Functions

Link copied to clipboard
open override fun toString(): String