> ## 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="속성">
    <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>">
  추가로 포함된 객체(사용자, Post 등)
</ResponseField>

<ResponseField name="errors" type="any[]">
  응답에 포함된 모든 오류
</ResponseField>
