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

    Interface ScreenMembersOnResetPasswordMfaVoiceChallenge

    Interface for the screen data specific to reset-password-mfa-voice-challenge screen.

    interface ScreenMembersOnResetPasswordMfaVoiceChallenge {
        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; showLinkSms?: 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; showLinkSms?: boolean } | null

    Type Declaration

    • { phoneNumber: string; showLinkSms?: boolean }
      • phoneNumber: string

        The phone number to send the voice call to.

      • OptionalshowLinkSms?: boolean

        Whether to show the link to switch to SMS verification.

    • null