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

# ScreenMembersOnMfaVoiceChallenge

MFA 音声チャレンジ画面向けの拡張 ScreenMembers インターフェース。

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

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

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

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

<ParamField body="captcha" type={<span><a href="/ja/docs/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 の音声チャレンジに固有の追加の画面データです。

  #### 型宣言

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

  #### phoneNumber?

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

  #### showLinkSms?

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

  #### showRememberDevice?

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

  `null`
</ParamField>

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

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

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

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