PageableData
Pagination wrapper returned as data by paginated list endpoints.
totalPagesint32
Total number of pages.
Example:
5currentPageint32
Current page, 1-based.
Example:
1totalElementsint64
Total number of matching elements.
Example:
87dataundefined[]
The page of items (the row DTO documented per endpoint).
PageableData
{
"totalPages": 5,
"currentPage": 1,
"totalElements": 87,
"data": [
null
]
}