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

# ContinueWithCodeOptionPayload

ContinueWithCodeOptions
description Login メールアドレス確認画面における `continueWithCode` メソッドのオプション。
この操作は、ユーザーがメールで受信した確認コードを送信し、
認証フローを続行する際に使用します。

```ts Example theme={null}
export interface ContinueWithCodeOptions extends CustomOptions {
  /**
   * ユーザーのメールアドレスに送信された確認コード。通常、ユーザーがフォームに入力する短い数字または英数字の文字列です。
   * @type {string}
   * @example "123456"
   * @example "ABCXYZ"
   */
  code: string;
}
```

<div id="indexable">
  ## Indexable
</div>

\[`key`: `string`]: `string` | `number` | `boolean` | `undefined`

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

<ParamField body="code" type="string">
  ユーザーのメールアドレスに送信される確認コードです。通常は短い数字または英数字の文字列で、
  ユーザーがフォームに入力します。

  <CodeGroup>
    ```ts Example 1 theme={null}
    "123456"
    ```

    ```ts Example 2 theme={null}
    "ABCXYZ"
    ```
  </CodeGroup>
</ParamField>
