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

    Interface MfaVerifyResponse

    MFA verify response from Auth0. Uses snake_case to match Auth0 API and SPA SDK conventions.

    interface MfaVerifyResponse {
        access_token: string;
        audience?: string;
        expires_in: number;
        id_token?: string;
        recovery_code?: string;
        refresh_token?: string;
        scope?: string;
        token_type: string;
    }
    Index

    Properties

    access_token: string

    Access token

    audience?: string

    API audience

    expires_in: number

    Expires in seconds

    id_token?: string

    ID token (if present)

    recovery_code?: string

    Recovery code (if regenerated by tenant config)

    refresh_token?: string

    Refresh token (if present)

    scope?: string

    Token scope

    token_type: string

    Token type (usually "Bearer")