AuthenticationTokens
public struct AuthenticationTokens : Equatable
Represents authentication tokens associated with a given user.
-
Signed ID token carrying identity claims.
Declaration
Swift
public let idToken: String -
Signed access token used for API access that does not require details of the user’s identity..
Declaration
Swift
public let accessToken: String -
Refresh token used for refreshing ID and access tokens.
Declaration
Swift
public let refreshToken: String
AuthenticationTokens Structure Reference