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