> ## 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.

# MfaPhoneChallengeContinueOptions

ContinueOptions
MFA の電話番号チャレンジプロセスを続行するために必要なオプションを定義します。
通常は、確認コードの受信方法 (SMS または音声) を選択します。

```ts Example theme={null}
export interface ContinueOptions extends CustomOptions {
  /**
   * 実行するチャレンジの種類。
   * 'sms': テキストメッセージでcodeを送信する。
   * 'voice': 音声通話でcodeを送信する。
   * @default 'sms'
   */
  type: 'sms' | 'voice';
}
```

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

<ParamField body="type" type="&#x22;sms&#x22; | &#x22;voice&#x22;">
  実行するチャレンジの種類です。

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