Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
export interface ResetPasswordMfaRecoveryCodeChallengeMembers extends BaseMembers { client: ClientMembers; organization: OrganizationMembers; prompt: PromptMembers; screen: ScreenMembers; transaction: TransactionMembers; /** * Continues with the provided recovery code. * @param {string} code - The recovery code entered by the user. * @param {CustomOptions} [payload] - Optional payload. * @returns {Promise<void>} */ continue(code: string, payload?: CustomOptions): Promise<void>; /** * Navigates to the screen where the user can pick another MFA method. * @param {CustomOptions} [payload] - Optional payload. * @returns {Promise<void>} */ tryAnotherMethod(payload?: CustomOptions): Promise<void>; }
Show Parameters
string