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

MFA OTP の登録コードで続行するためのオプション。

```ts Example theme={null}
export interface ContinueOptions {
  /**
   * ユーザーが入力したOTPコード。
   */
  code: string;

  /**
   * 追加のカスタムオプション。
   */
  [key: string]: string | number | boolean | undefined;
}
```

<div id="properties">
  ## プロパティ
</div>

<ParamField body="code" type="string">
  ユーザーが入力したOTPコードです。
</ParamField>
