Interface ScreenMembersOnMfaPushChallengePush

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

interface ScreenMembersOnMfaPushChallengePush {
    captcha: null | CaptchaContext;
    captchaImage: null | string;
    captchaProvider: null | string;
    captchaSiteKey: null | string;
    data: null | {
        deviceName: string;
        rememberDevice?: 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 | {
    deviceName: string;
    rememberDevice?: boolean;
}

Type declaration

  • deviceName: string

    The name of the device receiving the push notification

  • OptionalrememberDevice?: boolean

    Whether to remember this device for future authentications

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