> ## Documentation Index
> Fetch the complete documentation index at: https://generaltranslation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# PaginatedResponse

ページネーション対応レスポンス用インターフェース

X API から返されるページネーション対応 API レスポンスの構造を表します。

<div id="type-parameters">
  ## 型パラメーター
</div>

| 名前  | 説明                   |
| :-- | :------------------- |
| `T` | レスポンスに含まれる各アイテムのtype |

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

<ResponseField name="data" type="T[]" required>
  現在のページに含まれるアイテムの配列
</ResponseField>

<ResponseField name="meta" type="Object">
  ページネーションに関するメタデータ

  <Expandable title="properties">
    <ResponseField name="Name" type="Type | Description" required />

    <ResponseField name="resultCount" type="number | Number of results in the current page" />

    <ResponseField name="nextToken" type="string | Token for fetching the next page" />

    <ResponseField name="previousToken" type="string | Token for fetching the previous page" />
  </Expandable>
</ResponseField>

<ResponseField name="includes" type="Record<string, any>">
  追加のオブジェクト（ユーザー、ツイートなど）
</ResponseField>

<ResponseField name="errors" type="any[]">
  レスポンス内のエラー一覧
</ResponseField>
