TokenResponse

data class TokenResponse(val accessToken: String, val expiresIn: Long, val refreshToken: String?)

Constructors

Link copied to clipboard
constructor(accessToken: String, expiresIn: Long, refreshToken: String?)

Properties

Link copied to clipboard
@SerializedName(value = "access_token")
val accessToken: String
Link copied to clipboard
@SerializedName(value = "expires_in")
val expiresIn: Long
Link copied to clipboard
@SerializedName(value = "refresh_token")
val refreshToken: String?

Functions

Link copied to clipboard