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

# MfaVoiceChallengeContinueOptions

Options for submitting the voice challenge code.

```ts Example theme={null}
export interface MfaVoiceChallengeContinueOptions {
  /**
   * The verification code received via voice call.
   */
  code: string;

  /**
   * Optional flag to remember the device for 30 days, skipping future MFA challenges.
   */
  rememberDevice?: boolean;

  /**
   * Additional custom options to pass with the request.
   */
  [key: string]: string | number | boolean | undefined;
}
```

## Indexable

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

Additional custom options to pass with the request.

## Properties

<ParamField body="code" type="string">
  The verification code received via voice call.
</ParamField>

<ParamField body="rememberDevice?" type="boolean">
  Optional flag to remember the device for 30 days, skipping future MFA challenges.
</ParamField>
