> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-actions-triggers-prototype.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ScreenMembersOnMfaWebAuthnChangeKeyNickname

ScreenMembersOnMfaWebAuthnChangeKeyNickname

```ts Example theme={null}
export interface ScreenMembersOnMfaWebAuthnChangeKeyNickname extends ScreenMembers {
  /**
   * Screen-specific data containing the current nickname of the WebAuthn key.
   * @type {{ nickname: string; } | null}
   */
  data: {
    /**
     * The current nickname of the WebAuthn security key that the user is about to change.
     * This value should be displayed to the user for context.
     * @type {string}
     * @example "My YubiKey"
     * @example "Work Security Key"
     */
    nickname: string;
  } | null;
}
```

## Properties

<ParamField body="captcha" type={<span><a href="/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="{ nickname: string; }">
  Screen-specific data.

  * Type Declaration: `{ nickname: string; }`

  <Expandable title="properties">
    <ParamField body="nickname" type="string">
      The current nickname of the WebAuthn security key that the user is about to change.
      This value should be displayed to the user for context.

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

        ```ts Example 2 theme={null}
        "Work Security Key"
        ```

        ```ts Example 3 theme={null}
        null
        ```
      </CodeGroup>
    </ParamField>
  </Expandable>
</ParamField>

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

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

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

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