PageCompanyLiteDto¶
Example Json Object
1{
2 "totalElements": 0,
3 "totalPages": 0,
4 "pageable": {
5 "paged": true,
6 "unpaged": true,
7 "pageNumber": 0,
8 "pageSize": 0,
9 "offset": 0,
10 "sort": {
11 "unsorted": true,
12 "sorted": true,
13 "empty": true
14 }
15 },
16 "numberOfElements": 0,
17 "size": 0,
18 "content": [
19 {
20 "id": 0,
21 "displayId": "string",
22 "status": "CREATED",
23 "erpSystemId": 0,
24 "erpSystemDisplayId": "string",
25 "countryId": 0,
26 "countryDisplayId": "string",
27 "name": "string"
28 }
29 ],
30 "number": 0,
31 "sort": {
32 "unsorted": true,
33 "sorted": true,
34 "empty": true
35 },
36 "first": true,
37 "last": true,
38 "empty": true
39}
📄 Description: Data transfer object representing a simplified overview of a company’s essential information, designed to facilitate efficient data exchange in business applications.
Properties
Name |
Type |
Required |
Restrictions |
Description |
|---|---|---|---|---|
totalElements |
integer(int64) |
false |
none |
Total number of items available |
totalPages |
integer(int32) |
false |
none |
Total number of pages available |
pageable |
false |
none |
Indicates the pagination details for retrieving a subset of company data in a structured format. |
|
numberOfElements |
integer(int32) |
false |
none |
Represents the total count of elements within the current page of company data, facilitating efficient data management and navigation. |
size |
integer(int32) |
false |
none |
Number of items per page |
content |
false |
none |
An array of PageCompanyLiteDto objects representing the essential details of multiple companies relevant to the business context. |
|
number |
integer(int32) |
false |
none |
Represents the numerical identifier associated with the company within the system. |
sort |
false |
none |
Sort order specification |
|
first |
boolean |
false |
none |
Whether this is the first page |
last |
boolean |
false |
none |
Whether this is the last page |
empty |
boolean |
false |
none |
Whether the result set is empty |