PaginationLinks
Pagination links for the previous and next parts of the whole collection.
interface PaginationLinks {
current?: string;
next?: string;
previous?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
current | Optional | string | Link to the current page returned in the response. |
next | Optional | string | Link to the next page returned in the response. |
previous | Optional | string | Link to the previous page returned in the response. |