Represents an OAuth token returned by Lemon.

interface LemonOAuthToken {
    Token?: LemonOAuthToken;
    accessToken?: string;
    accountId: string;
    authId: string;
    credential: LemonCredentials;
    error?: any;
    identityId: string;
    identityPoolId?: string;
    identityToken: string;
}

Properties

The access token associated with the token (optional).

accessToken?: string

The access token associated with the token (optional).

accountId: string

The account ID associated with the token.

authId: string

The authentication ID associated with the token.

credential: LemonCredentials

The credentials associated with the token.

error?: any

Any error information associated with the token (optional).

identityId: string

The identity ID associated with the token.

identityPoolId?: string

The identity pool ID associated with the token (optional).

identityToken: string

The identity token associated with the token.