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

# MfaOtpContinueOptions

Options for continuing with the MFA OTP enrollment code.

```ts Example theme={null}
export interface ContinueOptions {
  /**
   * The OTP code entered by the user.
   */
  code: string;

  /**
   * 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 OTP code entered by the user.
</ParamField>
