PageableObject¶
Example Json Object
1{
2 "paged": true,
3 "unpaged": true,
4 "pageNumber": 0,
5 "pageSize": 0,
6 "offset": 0,
7 "sort": {
8 "unsorted": true,
9 "sorted": true,
10 "empty": true
11 }
12}
📄 Description: Data transfer object representing a paginated collection of items, enabling efficient retrieval and navigation through large datasets in business applications.
Properties
Name |
Type |
Required |
Restrictions |
Description |
|---|---|---|---|---|
paged |
boolean |
false |
none |
Indicates whether the response should be paginated, allowing for efficient data retrieval and management in large datasets. |
unpaged |
boolean |
false |
none |
Indicates whether the results should be returned without pagination, allowing for the retrieval of all available data in a single response. |
pageNumber |
integer(int32) |
false |
none |
Page number for pagination |
pageSize |
integer(int32) |
false |
none |
Number of items per page |
offset |
integer(int64) |
false |
none |
Number of items to skip |
sort |
false |
none |
Sort order specification |