> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.com/llms.txt
> Use this file to discover all available pages before exploring further.

# VerifyPlatformAuthenticatorOptions

VerifyPlatformAuthenticatorOptions

```ts Example theme={null}
export interface VerifyPlatformAuthenticatorOptions extends CustomOptions {
  /**
   * Optional. If true and `screen.showRememberDevice` is true, this indicates the user
   * has chosen to remember this device, typically for 30 days, to bypass MFA on subsequent logins.
   * @type {boolean}
   */
  rememberDevice?: boolean;
}
```

## Properties

<ParamField body="rememberDevice?" type="boolean">
  Optional. If true, attempts to remember the browser for future MFA challenges.
  Corresponds to the `rememberBrowser` form field. This is only applicable if `screen.showRememberDevice` is true.
</ParamField>
