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

# MfaVoiceChallengeContinueOptions

音声チャレンジコードの送信オプション。

```ts Example theme={null}
export interface MfaVoiceChallengeContinueOptions {
  /**
   * 音声通話で受信した確認コード。
   */
  code: string;

  /**
   * デバイスを30日間記憶し、今後のMFAチャレンジをスキップするためのオプションフラグ。
   */
  rememberDevice?: boolean;

  /**
   * リクエストに渡す追加のカスタムオプション。
   */
  [key: string]: string | number | boolean | undefined;
}
```

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

<ParamField body="code" type="string">
  音声通話で受信した確認コード。
</ParamField>

<ParamField body="rememberDevice?" type="boolean">
  今後30日間このデバイスを記憶し、以降のMFAチャレンジを省略するための任意のフラグ。
</ParamField>
