Use this file to discover all available pages before exploring further.
Interface describing the members of the Mfa Recovery Code Challenge screen.
Example
export interface MfaRecoveryCodeChallengeMembers extends BaseMembers { client: ClientMembers; organization: OrganizationMembers; prompt: PromptMembers; screen: ScreenMembers; transaction: TransactionMembers; /** * Continues with the provided recovery code. * @param payload - The continue options containing the recovery code and optional custom options. * @returns A promise that resolves when the continuation is successful. */ continue(payload: ContinueOptions): Promise<void>; /** * Navigates to the screen where the user can pick another MFA method. * @param payload Optional payload. * @returns A promise that resolves when the navigation is complete. */ tryAnotherMethod(payload?: CustomOptions): Promise<void>;}