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

# ResetPasswordMfaPhoneChallengeContinueOptions

ContinueOptions

```ts Example theme={null}
export interface ContinueOptions extends CustomOptions {
  /**
   * The delivery method selected by the user for receiving the verification code.
   * - `sms`: Send the code via text message.
   * - `voice`: Send the code via a voice call.
   * @type {'sms' | 'voice'}
   */
  type: 'sms' | 'voice';
}
```

## Properties

<ParamField body="type" type="&#x22;sms&#x22; | &#x22;voice&#x22;">
  The delivery method selected by the user for receiving the verification code.

  * `sms`: Send the code via text message.
  * `voice`: Send the code via a voice call.
</ParamField>
