Skip to main content

PageableData

Pagination wrapper returned as data by paginated list endpoints.

totalPagesint32

Total number of pages.

Example: 5
currentPageint32

Current page, 1-based.

Example: 1
totalElementsint64

Total number of matching elements.

Example: 87
dataundefined[]

The page of items (the row DTO documented per endpoint).

PageableData
{
"totalPages": 5,
"currentPage": 1,
"totalElements": 87,
"data": [
null
]
}