@auth0/nextjs-auth0 - v4.26.0
    Preparing search index...

    Interface SessionTransferTokenResult

    Result from requestSessionTransferToken.

    Branch on issuedTokenType, never tokenType. The sessionTransferToken is one-shot (~60s) — pass it directly to buildSessionTransferRedirect. Never cache or store it.

    interface SessionTransferTokenResult {
        expiresIn?: number;
        issuedTokenType: string;
        sessionTransferToken: string;
        tokenType?: string;
    }
    Index
    expiresIn?: number

    Token lifetime in seconds as reported by the server. Undefined when the server omits it.

    issuedTokenType: string

    Always TOKEN_TYPES.SESSION_TRANSFER_TOKEN. Branch on this, not tokenType.

    sessionTransferToken: string

    The Session Transfer Token. One-shot, ~60s. Pass to buildSessionTransferRedirect.

    tokenType?: string

    "N_A" — informational only. Never branch on this.