Documentation Index
Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
ScreenMembersOnMfaRecoveryCodeChallengeNewCode
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
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