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

# PaginatedResponse

> X API SDK の PaginatedResponse TypeScript インターフェースのリファレンス。X API からのページネーションされた API レスポンスの構造を表します。

ページネーションされたレスポンスのインターフェース

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

## 型パラメータ

| 名前  | 説明            |
| :-- | :------------ |
| `T` | レスポンス内のアイテムの型 |

## プロパティ

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

<ResponseField name="meta" type="Object">
  ページネーションのメタデータ

  <Expandable title="properties">
    <ResponseField name="Name" type="型 | 説明" required />

    <ResponseField name="resultCount" type="number | 現在のページの結果件数" />

    <ResponseField name="nextToken" type="string | 次ページを取得するためのトークン" />

    <ResponseField name="previousToken" type="string | 前ページを取得するためのトークン" />
  </Expandable>
</ResponseField>

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

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