Represents the response from a native federated sign-in.

interface LoginWithFederatedTokenResponse {
    access_token: string;
    expires_in: number;
    id_token: string;
    refresh_token: string;
}

Hierarchy (View Summary)

Properties

access_token: string
expires_in: number

Lifetime of the access token, in seconds.

id_token: string
refresh_token: string