Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface TokenSet

    interface TokenSet {
        access_token: string;
        refresh_token?: string;
        id_token?: string;
        token_type: "Bearer";
        expires_in: number;
    }
    Index

    Properties

    access_token: string

    The access token.

    refresh_token?: string

    The refresh token, available with the offline_access scope.

    id_token?: string

    The user's ID Token.

    token_type: "Bearer"

    The token type of the access token.

    expires_in: number

    The duration in secs that the access token is valid.