OAuth2TokenResponse

data class OAuth2TokenResponse(val tokenType: String, val issuedTokenType: String? = null, val idToken: String? = null, val accessToken: String?, val refreshToken: String? = null, val expiresIn: Int = 0, val scope: String? = null)

Constructors

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

Properties

Link copied to clipboard
Link copied to clipboard
val expiresIn: Int = 0
Link copied to clipboard
val idToken: String? = null
Link copied to clipboard
val issuedTokenType: String? = null
Link copied to clipboard
val refreshToken: String? = null
Link copied to clipboard
val scope: String? = null
Link copied to clipboard