AccessToken

@Serializable
data class AccessToken(val tokenType: String, val scope: String, val refreshToken: String, val expiresIn: Int, val accessToken: String)

Constructors

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

Properties

Link copied to clipboard
@SerialName(value = "access_token")
val accessToken: String
Link copied to clipboard
@SerialName(value = "expires_in")
val expiresIn: Int
Link copied to clipboard
@SerialName(value = "refresh_token")
val refreshToken: String
Link copied to clipboard
@SerialName(value = "scope")
val scope: String
Link copied to clipboard
@SerialName(value = "token_type")
val tokenType: String