@auth0/auth0-acul-js - v0.1.0-beta.5
    Preparing search index...

    Interface ScreenMembersOnCustomizedConsent

    ScreenMembersOnCustomizedConsent

    interface ScreenMembersOnCustomizedConsent {
        authorizationDetails: Classes.AuthorizationDetail[];
        captcha: null | Classes.CaptchaContext;
        captchaImage: null | string;
        captchaProvider: null | string;
        captchaSiteKey: null | string;
        data:
            | null
            | Record<
                string,
                | string
                | boolean
                | Classes.PasskeyCreate
                | string[]
                | Record<string, string[]>
                | Classes.PhonePrefix[],
            >;
        isCaptchaAvailable: boolean;
        links: null | Record<string, string>;
        name: string;
        scopes: Classes.Scope[];
        texts: null | Record<string, string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    authorizationDetails: Classes.AuthorizationDetail[]

    An array of AuthorizationDetail objects. Each object provides granular details about specific data or actions the application wants to perform, potentially related to Rich Authorization Requests (RAR) or other fine-grained permission models. This list should be displayed to the user for their review.

    captcha: null | Classes.CaptchaContext
    captchaImage: null | string
    captchaProvider: null | string
    captchaSiteKey: null | string
    data:
        | null
        | Record<
            string,
            | string
            | boolean
            | Classes.PasskeyCreate
            | string[]
            | Record<string, string[]>
            | Classes.PhonePrefix[],
        >

    Screen-specific data.

    isCaptchaAvailable: boolean
    links: null | Record<string, string>
    name: string
    scopes: Classes.Scope[]

    An array of Scope objects detailing each permission (scope) being requested. These are typically high-level permissions like 'read:profile' or 'openid'. This list should be displayed to the user for their review.

    texts: null | Record<string, string>