Skip to main content
Extended screen members interface for the MFA Voice Challenge screen.
Example
export interface ScreenMembersOnMfaVoiceChallenge extends ScreenMembers {
  /**
   * Additional screen data specific to MFA voice challenge.
   */
  data: {
    /**
     * The phone number where the voice code was sent.
     */
    phoneNumber?: string;

    /**
     * Whether to show the remember device option.
     */
    showRememberDevice?: boolean;

    /**
     * Whether to show the link to switch to SMS verification.
     */
    showLinkSms?: boolean;
  } | null;
}

Properties

captcha
captchaImage
string
captchaProvider
string
captchaSiteKey
string
data
phoneNumber?
Additional screen data specific to MFA voice challenge.

Type Declaration

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

phoneNumber?

The phone number where the voice code was sent.

showLinkSms?

Whether to show the link to switch to SMS verification.

showRememberDevice?

Whether to show the remember device option.null
isCaptchaAvailable
boolean
name
string
texts
Record