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;}
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