Interface ScreenMembersOnMfaVoiceChallenge

Extended screen members interface for the MFA Voice Challenge screen.

interface ScreenMembersOnMfaVoiceChallenge {
    captcha: null | CaptchaContext;
    captchaImage: null | string;
    captchaProvider: null | string;
    captchaSiteKey: null | string;
    data: null | {
        phoneNumber?: string;
        showLinkSms?: 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;
    showLinkSms?: boolean;
    showRememberDevice?: boolean;
}

Additional screen data specific to MFA voice challenge.

Type declaration

  • OptionalphoneNumber?: string

    The phone number where the voice code was sent.

  • OptionalshowLinkSms?: boolean

    Whether to show the link to switch to SMS verification.

  • OptionalshowRememberDevice?: boolean

    Whether to show the remember device option.

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