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

# 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;
}
```

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