Skip to main content
ScreenMembersOnMfaEnrollResult
Example
export interface ScreenMembersOnMfaEnrollResult extends ScreenMembers {
  /**
   * Screen-specific data containing the status of the MFA enrollment.
   * @type {{ status: string; } | null}
   */
  data: {
    /**
     * The status of the MFA enrollment process.
     * Possible values might include "success", "failure", or other specific status codes.
     * This status can be used to display an appropriate message to the user.
     * @type {string}
     */
    status: string;
  } | null;
}

Properties

captcha
captchaImage
string
captchaProvider
string
captchaSiteKey
string
data
status
Screen-specific data.

Type Declaration

{ status: string; }

status

The status of the MFA enrollment process. Possible values might include “success”, “failure”, or other specific status codes. This status can be used to display an appropriate message to the user.null
isCaptchaAvailable
boolean
name
string
texts
Record