TokenResponse

@Serializable
data class TokenResponse(val accessToken: String, val tokenType: String, val scope: String)(source)

Constructors

Link copied to clipboard
constructor(accessToken: String, tokenType: String, scope: String)

Properties

Link copied to clipboard
@SerialName(value = "access_token")
val accessToken: String

No expiration date

Link copied to clipboard
@SerialName(value = "scope")
val scope: String
Link copied to clipboard
@SerialName(value = "token_type")
val tokenType: String