> ## Documentation Index
> Fetch the complete documentation index at: https://translations.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ResetPasswordMfaPhoneChallengeContinueOptions

ContinueOptions

```ts Example theme={null}
export interface ContinueOptions extends CustomOptions {
  /**
   * ユーザーが確認コードの受信方法として選択した配信方法。
   * - `sms`: テキストメッセージでcodeを送信する。
   * - `voice`: 音声通話でcodeを送信する。
   * @type {'sms' | 'voice'}
   */
  type: 'sms' | 'voice';
}
```

<div id="properties">
  ## プロパティ
</div>

<ParamField body="type" type="&#x22;sms&#x22; | &#x22;voice&#x22;">
  ユーザーが確認コードの受信に選択した配信方法。

  * `sms`: テキストメッセージで code を送信します。
  * `voice`: 音声通話で code を送信します。
</ParamField>
