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

# LoginPayloadOptions

ログインを実行するためのオプション

```ts Example theme={null}
export interface LoginOptions {
  /** ログインに使用するユーザー名またはメールアドレス */
  username: string;
  /** 認証に使用するパスワード */
  password: string;
  /** 必要な場合に使用するオプションのcaptcha値 */
  captcha?: string;
  /** 追加のカスタムオプション */
  [key: string]: string | number | boolean | undefined;
}
```

<div id="indexable">
  ## インデックス可能
</div>

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

その他のカスタムオプション

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

<ParamField body="captcha?" type="string">
  必要な場合に指定する任意のcaptcha値
</ParamField>

<ParamField body="password" type="string">
  認証用のパスワード
</ParamField>

<ParamField body="username" type="string">
  ログインに使用するユーザー名またはメールアドレス
</ParamField>
