Pagination metadata returned with list responses to help navigate through large result sets.
Model
current
integerThe current page number (1-based).
next
integer | nullThe next page number, or null if this is the last page.
prev
integer | nullThe previous page number, or null if this is the first page.
count
integerThe total number of items across all pages.
pages
integerThe total number of pages available.
Example
{
"current": 2,
"next": 3,
"prev": 1,
"count": 127,
"pages": 7
}