> ## Documentation Index
> Fetch the complete documentation index at: https://translations.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# MfaOtpContinueOptions

Options pour poursuivre l’inscription à la MFA avec le code OTP.

```ts Example theme={null}
export interface ContinueOptions {
  /**
   * Le code OTP saisi par l'utilisateur.
   */
  code: string;

  /**
   * Toutes les options personnalisées supplémentaires.
   */
  [key: string]: string | number | boolean | undefined;
}
```

<div id="properties">
  ## Propriétés
</div>

<ParamField body="code" type="string">
  Le code OTP saisi par l'utilisateur.
</ParamField>
