Authentication Tokens
data class AuthenticationTokens(val idToken: String, val accessToken: String, val refreshToken: String, val lifetime: Int)
Encapsulates the authentication tokens obtained from a successful authentication.
Parameters
id Token
ID token containing the user's identity attributes.
access Token
access token required for authorizing API access.
refresh Token
refresh token used for refreshing ID and access tokens.
lifetime
lifetime of ID and access tokens in seconds.