> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt
> Use this file to discover all available pages before exploring further.

# ScreenMembersOnMfaVoiceChallenge

MFA音声チャレンジ画面用に拡張された Screen Members インターフェース。

```ts Example theme={null}
export interface ScreenMembersOnMfaVoiceChallenge extends ScreenMembers {
  /**
   * MFA音声チャレンジに固有の追加画面データ。
   */
  data: {
    /**
     * 音声コードの送信先電話番号。
     */
    phoneNumber?: string;

    /**
     * デバイスを記憶するオプションを表示するかどうか。
     */
    showRememberDevice?: boolean;

    /**
     * SMS認証への切り替えリンクを表示するかどうか。
     */
    showLinkSms?: boolean;
  } | null;
}
```

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

<ParamField body="captcha" type={<span><a href="/docs/ja-jp/libraries/acul/js-sdk/Screens/interfaces/CaptchaContext">CaptchaContext</a></span>} />

<ParamField body="captchaImage" type="string" />

<ParamField body="captchaProvider" type="string" />

<ParamField body="captchaSiteKey" type="string" />

<ParamField body="data" type="phoneNumber?">
  MFA音声チャレンジに固有の追加の画面データです。

  <h4 id="type-declaration">
    型宣言
  </h4>

  \{ `phoneNumber?`: `string`; `showLinkSms?`: `boolean`; `showRememberDevice?`: `boolean`; }

  <h4 id="phonenumber">
    phoneNumber?
  </h4>

  音声コードの送信先の電話番号です。

  <h4 id="showlinksms">
    showLinkSms?
  </h4>

  SMS認証に切り替えるリンクを表示するかどうか。

  <h4 id="showrememberdevice">
    showRememberDevice?
  </h4>

  デバイスを記憶するオプションを表示するかどうか。

  `null`
</ParamField>

<ParamField body="isCaptchaAvailable" type="boolean" />

<ParamField body="links" type="Record" />

<ParamField body="name" type="string" />

<ParamField body="texts" type="Record" />
