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 ResetPasswordMfaEmailChallengeMembers extends BaseMembers { screen: ScreenMembersOnResetPasswordMfaEmailChallenge; /** * 指定されたコードを使用してメールチャレンジを続行します。 * @param payload コードとrememberDeviceフラグを含むオプション。 */ continue(payload: ContinueOptions): Promise<void>; /** * メールコードを再送します。 * @param payload リクエストに含めるカスタムオプション(任意)。 */ resendCode(payload?: ResendCodeOptions): Promise<void>; /** * ユーザーが別のMFA方式を試せるようにします。 * @param payload リクエストに含めるカスタムオプション(任意)。 */ tryAnotherMethod(payload?: TryAnotherMethodOptions): Promise<void>; /** * この画面の再送機能とタイムアウト管理を取得します * @param options 再送機能の設定オプション */ resendManager(options?: StartResendOptions): ResendControl; }
Show パラメーター
rememberDevice