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

# ScreenMembersOnMfaWebAuthnEnrollmentSuccess

ScreenMembersOnMfaWebAuthnEnrollmentSuccess

```ts Example theme={null}
export interface ScreenMembersOnMfaWebAuthnEnrollmentSuccess extends ScreenMembers {
  /**
   * WebAuthn 登録成功に関する詳細を含む画面固有のデータ。
   * @type {{ nickname: string; webauthnType: WebAuthnType; } | null}
   */
  data: {
    /**
     * 新たに登録された WebAuthn 認証器にユーザー（またはシステム）が割り当てたニックネーム。
     * 後でユーザーが認証器を識別する際に役立ちます。
     * @type {string}
     * @example "YubiKey 5"
     * @example "My Laptop's Touch ID"
     */
    nickname: string;
    /**
     * 正常に登録された WebAuthn 認証器の種類。
     * - `'webauthn-roaming'`: USB セキュリティキーなどのローミング認証器を示します。
     * - `'webauthn-platform'`: Touch ID や Windows Hello などのプラットフォーム認証器を示します。
     * @type {WebAuthnType}
     */
    webauthnType: WebAuthnType;
  } | 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={<span><a href="/ja/docs/libraries/acul/js-sdk/Screens/type-aliases/WebAuthnType">WebAuthnType</a></span>}>
  画面固有のデータです。

  * 型宣言: `{ nickname: string; webauthnType: [WebAuthnType]; }`

  <Expandable title="プロパティ">
    <ParamField body="nickname" type="string">
      新たに登録された WebAuthn 認証器に対して、ユーザー (またはシステム) が割り当てたニックネームです。
      これにより、ユーザーは後でその認証器を識別しやすくなります。

      <CodeGroup>
        ```ts Example 1 theme={null}
        "YubiKey 5"
        ```

        ```ts Example 2 theme={null}
        "My Laptop's Touch ID"
        ```
      </CodeGroup>
    </ParamField>

    <ParamField body="webauthnType" type={<span><a href="/ja/docs/libraries/acul/js-sdk/Screens/type-aliases/WebAuthnType">[WebAuthnType]</a></span>}>
      登録に成功した WebAuthn 認証器の種類です。

      * `'webauthn-roaming'`: USB セキュリティキーのようなローミング認証器を示します。
      * `'webauthn-platform'`: Touch ID や Windows Hello のようなプラットフォーム認証器を示します。

      `null`
    </ParamField>
  </Expandable>
</ParamField>

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

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

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

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