@auth0/auth0-acul-react - v1.0.0
    Preparing search index...

    Interface ScreenMembersOnMfaEnrollResult

    ScreenMembersOnMfaEnrollResult

    interface ScreenMembersOnMfaEnrollResult {
        name: string;
        captchaImage: string | null;
        captchaSiteKey: string | null;
        captchaProvider: string | null;
        isCaptchaAvailable: boolean;
        links: Record<string, string> | null;
        texts: Record<string, string> | null;
        captcha: CaptchaContext | null;
        data: { status: string } | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    name: string
    captchaImage: string | null
    captchaSiteKey: string | null
    captchaProvider: string | null
    isCaptchaAvailable: boolean
    links: Record<string, string> | null
    texts: Record<string, string> | null
    captcha: CaptchaContext | null
    data: { status: string } | null

    Screen-specific data.

    Type Declaration

    • { status: string }
      • status: string

        The status of the MFA enrollment process. Possible values might include "success", "failure", or other specific status codes. This status can be used to display an appropriate message to the user.

    • null