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

# ContinueOTPOptions

OTP チャレンジを続行するためのオプション

```ts Example theme={null}
export interface ContinueOptions {
  /** ユーザーが入力したcode */
  code: string;
  /** ブラウザを記憶するかどうかを示す */
  rememberDevice?: boolean;
  /** 追加のカスタムオプション */
  [key: string]: string | number | boolean | undefined;
}
```

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

<ParamField body="code" type="string">
  ユーザーが入力した認証コード
</ParamField>

<ParamField body="rememberDevice?" type="boolean">
  このブラウザーを記憶するかどうかを示します
</ParamField>
