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.

Constructors

Link copied to clipboard
constructor(idToken: String, accessToken: String, refreshToken: String, lifetime: Int)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard