Skip to content

Interface: PaginatedResponse<T>

Defined in: api/PaginatedResponse.ts:4

Response data which is paginated and includes the data and a token to get the next page.

Type Parameters

T

T = unknown

Properties

data

data: T[]

Defined in: api/PaginatedResponse.ts:8

The page of data returned by the request


paginationToken?

optional paginationToken: string

Defined in: api/PaginatedResponse.ts:13

The pagination token to get the next page of data in a subsequent request

Released under the GPL-3.0 License.