Interface for the screen data specific to mfa-sms-challenge screen
Example
Report incorrect code
Copy
Ask AI
export interface ScreenMembersOnMfaSmsChallenge extends ScreenMembers { data: { /** * The phone number where the SMS was sent */ phoneNumber?: string; /** * Whether to show the remember device option */ showRememberDevice?: boolean; /** * Whether to show the link to switch to voice call verification */ showLinkVoice?: boolean; } | null;}