OAuthTokens

class OAuthTokens(val accessToken: String, val tokenType: String, val idToken: String? = null, val expiresIn: Long? = null, val scope: String? = null, val refreshToken: String? = null)(source)

Since

0.3.0-beta01

Constructors

Link copied to clipboard
constructor(accessToken: String, tokenType: String, idToken: String? = null, expiresIn: Long? = null, scope: String? = null, refreshToken: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "access_token")
val accessToken: String
Link copied to clipboard
@SerialName(value = "expires_in")
val expiresIn: Long?
Link copied to clipboard
@SerialName(value = "id_token")
val idToken: String?
Link copied to clipboard
@SerialName(value = "refresh_token")
val refreshToken: String?
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "token_type")
val tokenType: String