inspac-sdk
/
com.thoughtworks.inspac.sdk.model
/
TokenResponse
Token
Response
data class
TokenResponse
(accessToken:
String
, refreshToken:
String
, idToken:
String
, scope:
String
, expiresIn:
Int
, tokenType:
String
)
Content copied to clipboard
Those are token response from IDP.
Constructors
Properties
Constructors
TokenResponse
Link copied to clipboard
fun
TokenResponse
(accessToken:
String
, refreshToken:
String
, idToken:
String
, scope:
String
, expiresIn:
Int
, tokenType:
String
)
Content copied to clipboard
Properties
accessToken
Link copied to clipboard
val
accessToken
:
String
Content copied to clipboard
The access token resembles the concept of a physical token or ticket.
expiresIn
Link copied to clipboard
val
expiresIn
:
Int
Content copied to clipboard
expire time for access token
idToken
Link copied to clipboard
val
idToken
:
String
Content copied to clipboard
The ID Token is a security token that contains Claims about an End-User.
refreshToken
Link copied to clipboard
val
refreshToken
:
String
Content copied to clipboard
carry the information necessary to get a new access token.
scope
Link copied to clipboard
val
scope
:
String
Content copied to clipboard
Used to specify the scope of the requested authorisation in OAuth.
tokenType
Link copied to clipboard
val
tokenType
:
String
Content copied to clipboard
The value MUST be Bearer or another token_type value that the Client has negotiated with the Authorization Server.