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

    Interface ActClaim

    Represents the act (actor) claim from an ID token issued via RFC 8693 delegation. The act claim identifies the acting party and may be nested to represent a delegation chain.

    interface ActClaim {
        act?: ActClaim;
        sub: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    act?: ActClaim

    Nested actor claim representing a delegation chain.

    sub: string

    The subject identifier of the acting party.