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

    Interface User

    interface User {
        act?: ActClaim;
        email?: string;
        email_verified?: boolean;
        family_name?: string;
        given_name?: string;
        name?: string;
        nickname?: string;
        org_id?: string;
        picture?: string;
        session_expiry?: number;
        sub: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    act?: ActClaim

    The actor claim from the ID token, present in delegation/impersonation flows (RFC 8693). Set by an Auth0 Action via api.authentication.setActor().

    email?: string
    email_verified?: boolean
    family_name?: string
    given_name?: string
    name?: string
    nickname?: string
    org_id?: string

    The organization ID that the user belongs to. This field is populated when the user logs in through an organization.

    picture?: string
    session_expiry?: number

    IPSIE session ceiling — absolute Unix timestamp (seconds) after which the upstream IdP session has expired. Present only when the enterprise connection has id_token_session_expiry_supported: true. The SDK enforces this as a hard ceiling on the local session; reads return no-session once it passes.

    sub: string