PageContractSubscriptionDto¶
Example Json Object
1{
2 "totalPages": 1,
3 "totalElements": 76,
4 "numberOfElements": 76,
5 "size": 100,
6 "content": [
7 {
8 "id": 10000001,
9 "topic": {
10 "enCaption": "Lease Component Updated",
11 "frCaption": "Composant de bail mis à jour",
12 "name": "LEASE_COMPONENT_UPDATED",
13 "priority": "HIGH"
14 },
15 "username": "super.admin@nakisa.com",
16 "contractId": 10000001,
17 "contractDisplayId": "CT-100000000",
18 "targetId": "CT-100000000",
19 "targetType": "CONTRACT"
20 }
21 ],
22 "number": 0,
23 "sort": {
24 "unsorted": false,
25 "sorted": true,
26 "empty": false
27 },
28 "pageable": {
29 "unpaged": false,
30 "pageSize": 100,
31 "paged": true,
32 "offset": 0,
33 "sort": {
34 "unsorted": false,
35 "sorted": true,
36 "empty": false
37 },
38 "pageNumber": 0
39 },
40 "first": true,
41 "last": true,
42 "empty": false
43}
📄 Description: Represents a paginated response containing Contract Subscription data, including pagination metadata and content.
Properties
Name |
Type |
Required |
Restrictions |
Description |
|---|---|---|---|---|
totalPages |
integer(int32) |
false |
none |
Total number of available pages. |
totalElements |
integer(int64) |
false |
none |
Total number of elements across all pages. |
numberOfElements |
integer(int32) |
false |
none |
Number of elements in the current page. |
size |
integer(int32) |
false |
none |
The size of each page (number of elements per page). |
content |
false |
none |
List of Contracts objects contained in the current page. |
|
number |
integer(int32) |
false |
none |
Current page number (0-based). |
sort |
false |
none |
Represents sorting metadata applied to a pageable request, including whether sorting is enabled and its state. |
|
pageable |
false |
none |
Represents pagination metadata describing the requested page, including offsets, sizes, and sorting information. |
|
first |
boolean |
false |
none |
Indicates whether the current page is the first page. |
last |
boolean |
false |
none |
Indicates whether the current page is the last page. |
empty |
boolean |
false |
none |
Indicates whether the page is empty (no content). |