> ## 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">
  今後のMFAチャレンジをスキップするために、デバイスを30日間記憶する省略可能なフラグ。
</ParamField>
