> ## 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`: テキストメッセージでコードを送信する。
   * - `voice`: 音声通話でコードを送信する。
   * @type {'sms' | 'voice'}
   */
  type: 'sms' | 'voice';
}
```

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

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

  * `sms`: SMSでコードを送信します。
  * `voice`: 音声通話でコードを送信します。
</ParamField>
