@auth0/auth0-react
    Preparing search index...

    Interface IdToken

    interface IdToken {
        __raw: string;
        acr?: string;
        act?: ActClaim;
        address?: string;
        amr?: string[];
        at_hash?: string;
        aud?: string;
        auth_time?: string;
        azp?: string;
        birthdate?: string;
        c_hash?: string;
        cnf?: string;
        email?: string;
        email_verified?: boolean;
        exp?: number;
        family_name?: string;
        gender?: string;
        given_name?: string;
        iat?: number;
        iss?: string;
        jti?: string;
        locale?: string;
        middle_name?: string;
        name?: string;
        nbf?: number;
        nickname?: string;
        nonce?: string;
        org_id?: string;
        org_name?: string;
        phone_number?: string;
        phone_number_verified?: boolean;
        picture?: string;
        preferred_username?: string;
        profile?: string;
        sid?: string;
        sub_jwk?: string;
        updated_at?: string;
        website?: string;
        zoneinfo?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    __raw: string
    acr?: string
    act?: ActClaim

    The actor claim, present in ID tokens returned via token exchange responses. Identifies the acting party that has been delegated authority to act on behalf of the subject. Set via Auth0 Actions using the setActor command.

    address?: string
    amr?: string[]
    at_hash?: string
    aud?: string
    auth_time?: string
    azp?: string
    birthdate?: string
    c_hash?: string
    cnf?: string
    email?: string
    email_verified?: boolean
    exp?: number
    family_name?: string
    gender?: string
    given_name?: string
    iat?: number
    iss?: string
    jti?: string
    locale?: string
    middle_name?: string
    name?: string
    nbf?: number
    nickname?: string
    nonce?: string
    org_id?: string
    org_name?: string
    phone_number?: string
    phone_number_verified?: boolean
    picture?: string
    preferred_username?: string
    profile?: string
    sid?: string
    sub_jwk?: string
    updated_at?: string
    website?: string
    zoneinfo?: string