AccessToken

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

Constructors

Link copied to clipboard
constructor(accessToken: String, tokenType: String, expiresIn: Int?, refreshToken: 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 = "token_type")
val tokenType: String