> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ContinueOTPOptions

Options for continuing with the OTP challenge

```ts Example theme={null}
export interface ContinueOptions {
  /** The code entered by the user */
  code: string;
  /** Indicates whether to remember the browser */
  rememberDevice?: boolean;
  /** Any additional custom options */
  [key: string]: string | number | boolean | undefined;
}
```

## Indexable

\[`key`: `string`]: `string` | `number` | `boolean` | `undefined`

Any additional custom options

## Properties

<ParamField body="code" type="string">
  The code entered by the user
</ParamField>

<ParamField body="rememberDevice?" type="boolean">
  Indicates whether to remember the browser
</ParamField>
