export interface ScreenMembersOnResetPasswordMfaPhoneChallenge extends ScreenMembers { /** * @property {object | null} data - Screen-specific data. * @property {string} data.phoneNumber - The phone number (often masked for security) associated with this MFA challenge during password reset. */ data: { /** The phone number (often masked) associated with this MFA challenge. */ phoneNumber: string; } | null; }
phoneNumber
string
null
Was this page helpful?