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

# ContinueOptions

メールチャレンジを続行するためのオプション。

```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">
  ユーザーが入力した code。
</ParamField>

<ParamField body="rememberDevice?" type="boolean">
  デバイスを記憶するかどうかを示します。
</ParamField>
