> ## 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 {
  /**
   * Données propres à l'écran contenant des détails sur l'inscription WebAuthn réussie.
   * @type {{ nickname: string; webauthnType: WebAuthnType; } | null}
   */
  data: {
    /**
     * Le surnom que l'utilisateur (ou le système) a attribué à l'authentificateur WebAuthn nouvellement inscrit.
     * Cela aide l'utilisateur à identifier l'authentificateur par la suite.
     * @type {string}
     * @example "YubiKey 5"
     * @example "My Laptop's Touch ID"
     */
    nickname: string;
    /**
     * Le type d'authentificateur WebAuthn qui a été inscrit avec succès.
     * - `'webauthn-roaming'` : Indique un authentificateur itinérant comme une clé de sécurité USB.
     * - `'webauthn-platform'` : Indique un authentificateur de plateforme comme Touch ID ou Windows Hello.
     * @type {WebAuthnType}
     */
    webauthnType: WebAuthnType;
  } | null;
}
```

<div id="properties">
  ## Propriétés
</div>

<ParamField body="captcha" type={<span><a href="/fr-CA/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="/fr-CA/docs/libraries/acul/js-sdk/Screens/type-aliases/WebAuthnType">WebAuthnType</a></span>}>
  Données propres à l’écran.

  * Déclaration de type : `{ nickname: string; webauthnType: [WebAuthnType]; }`

  <Expandable title="propriétés">
    <ParamField body="nickname" type="string">
      Le surnom que l’utilisateur (ou le système) a attribué à l’authentificateur WebAuthn nouvellement inscrit.
      Cela permet à l’utilisateur de l’identifier plus tard.

      <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="/fr-CA/docs/libraries/acul/js-sdk/Screens/type-aliases/WebAuthnType">[WebAuthnType]</a></span>}>
      Le type d’authentificateur WebAuthn qui a été inscrit avec succès.

      * `'webauthn-roaming'` : Indique un authentificateur itinérant, comme une clé de sécurité USB.
      * `'webauthn-platform'` : Indique un authentificateur de plateforme, comme Touch ID ou 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" />
