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

# ScreenMembersOnResetPasswordMfaWebAuthnPlatformChallenge

ScreenMembersOnResetPasswordMfaWebAuthnPlatformChallenge

```ts Example theme={null}
export interface ScreenMembersOnResetPasswordMfaWebAuthnPlatformChallenge extends ScreenMembers {
  /**
   * Convenience getter for the public key credential request options (challenge) needed for WebAuthn.
   * This is derived from `screen.data.passkey.public_key`.
   * If `screen.data.passkey` or `screen.data.passkey.public_key` is not available, this will be `null`.
   * @type {PasskeyRead['public_key'] | null}
   */
  publicKey: PasskeyRead['public_key'] | null;

  /**
   * Convenience getter for whether the "Remember this device" option should be shown.
   * Derived from `screen.data.show_remember_device`. Defaults to `false` if not specified.
   * @type {boolean}
   */
  showRememberDevice: boolean;
}
```

## 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={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/PasskeyCreate">PasskeyCreate</a></span>}>
  Screen-specific data.
</ParamField>

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

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

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

<ParamField body="publicKey" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/AllowCredential">AllowCredential</a></span>}>
  A convenience accessor for `data.passkey.public_key`.
  Provides the challenge and other parameters for the
  WebAuthn `navigator.credentials.get()` API call.
</ParamField>

<ParamField body="showRememberDevice" type="boolean">
  A convenience accessor for `data.show_remember_device`.
  Indicates if the "Remember this device" option should be displayed.
  Defaults to `false` if not present in the context.
</ParamField>

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