AuthenticationTokens
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
idToken
ID token containing the user's identity attributes.
accessToken
access token required for authorizing API access.
refreshToken
refresh token used for refreshing ID and access tokens.
lifetime
lifetime of ID and access tokens in seconds.