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

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

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

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