Pagination
Pagination model including all necessary information for pagination.
interface Pagination {
count?: number;
current_page?: number;
links?: PaginationLinks;
per_page?: number;
total_pages?: number;
total?: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
count | Optional | number | Total number of items in the collection response. |
current_page | Optional | number | The page you are currently on within the collection. |
links | Optional | PaginationLinks | Pagination links for the previous and next parts of the whole collection. |
per_page | Optional | number | The amount of items returned in the collection per page, controlled by the limit parameter. |
total_pages | Optional | number | The total number of pages in the collection. |
total | Optional | number | Total number of items in the result set. |