Skip to main content
ScreenMembersOnMfaRecoveryCodeChallengeNewCode
Example
export interface ScreenMembersOnMfaRecoveryCodeChallengeNewCode extends ScreenMembers {
  /**
   * @property {object | null} data - Screen-specific data.
   * @property {string} data.textCode - The newly generated recovery code that the user must save.
   */
  data: {
    /**
     * The newly generated recovery code to display to the user.
     * It is crucial that the user saves this code securely as it will be needed for future logins if other MFA factors are unavailable.
     */
    textCode: string;
  } | null;
}

Properties

captcha
captchaImage
string
captchaProvider
string
captchaSiteKey
string
data
textCode

Type Declaration

{ textCode: string; }

textCode

The newly generated recovery code to display to the user. It is crucial that the user saves this code securely as it will be needed for future logins if other MFA factors are unavailable.null
isCaptchaAvailable
boolean
name
string
texts
Record