TokenResponse

data class TokenResponse(accessToken: String, refreshToken: String, idToken: String, scope: String, expiresIn: Int, tokenType: String)

Those are token response from IDP.

Constructors

TokenResponse
Link copied to clipboard
fun TokenResponse(accessToken: String, refreshToken: String, idToken: String, scope: String, expiresIn: Int, tokenType: String)

Properties

accessToken
Link copied to clipboard
val accessToken: String
The access token resembles the concept of a physical token or ticket.
expiresIn
Link copied to clipboard
val expiresIn: Int
expire time for access token
idToken
Link copied to clipboard
val idToken: String
The ID Token is a security token that contains Claims about an End-User.
refreshToken
Link copied to clipboard
val refreshToken: String
carry the information necessary to get a new access token.
scope
Link copied to clipboard
val scope: String
Used to specify the scope of the requested authorisation in OAuth.
tokenType
Link copied to clipboard
val tokenType: String
The value MUST be Bearer or another token_type value that the Client has negotiated with the Authorization Server.