Interface ScreenMembersOnMfaSmsChallenge

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

interface ScreenMembersOnMfaSmsChallenge {
    captcha: null | CaptchaContext;
    captchaImage: null | string;
    captchaProvider: null | string;
    captchaSiteKey: null | string;
    data: null | {
        phoneNumber?: string;
        showLinkVoice?: boolean;
        showRememberDevice?: boolean;
    };
    isCaptchaAvailable: boolean;
    links: null | Record<string, string>;
    name: string;
    texts: null | Record<string, string>;
}

Hierarchy (view full)

Properties

captcha: null | CaptchaContext
captchaImage: null | string
captchaProvider: null | string
captchaSiteKey: null | string
data: null | {
    phoneNumber?: string;
    showLinkVoice?: boolean;
    showRememberDevice?: boolean;
}

Type declaration

  • OptionalphoneNumber?: string

    The phone number where the SMS was sent

  • OptionalshowLinkVoice?: boolean

    Whether to show the link to switch to voice call verification

  • OptionalshowRememberDevice?: boolean

    Whether to show the remember device option

isCaptchaAvailable: boolean
links: null | Record<string, string>
name: string
texts: null | Record<string, string>