Interface ScreenMembersOnMfaEmailList

Interface for the screen data specific to mfa-email-list screen

interface ScreenMembersOnMfaEmailList {
    captcha: null | CaptchaContext;
    captchaImage: null | string;
    captchaProvider: null | string;
    captchaSiteKey: null | string;
    data: null | {
        enrolled_emails: string[];
    };
    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 | {
    enrolled_emails: string[];
}

Type declaration

  • enrolled_emails: string[]

    List of enrolled email addresses

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