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 MfaRecoveryCodeChallengeMembers extends BaseMembers { client: ClientMembers; organization: OrganizationMembers; prompt: PromptMembers; screen: ScreenMembers; transaction: TransactionMembers; /** * 指定されたリカバリーコードで続行します。 * @param payload - リカバリーコードとオプションのカスタムオプションを含む続行オプション。 * @returns 続行が成功したときに解決されるPromise。 */ continue(payload: ContinueOptions): Promise<void>; /** * ユーザーが別のMFA方式を選択できる画面に移動します。 * @param payload オプションのペイロード。 * @returns ナビゲーションが完了したときに解決されるPromise。 */ tryAnotherMethod(payload?: CustomOptions): Promise<void>; }
Show パラメーター