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

    Interface ScreenMembersOnMfaSmsChallenge

    Interface for the screen data specific to mfa-sms-challenge screen

    interface ScreenMembersOnMfaSmsChallenge {
        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:
            | {
                phoneNumber?: string;
                showRememberDevice?: boolean;
                showLinkVoice?: boolean;
            }
            | 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:
        | {
            phoneNumber?: string;
            showRememberDevice?: boolean;
            showLinkVoice?: boolean;
        }
        | null

    Type Declaration

    • { phoneNumber?: string; showRememberDevice?: boolean; showLinkVoice?: boolean }
      • OptionalphoneNumber?: string

        The phone number where the SMS was sent

      • OptionalshowRememberDevice?: boolean

        Whether to show the remember device option

      • OptionalshowLinkVoice?: boolean

        Whether to show the link to switch to voice call verification

    • null