UnitDtoFilter¶
Example Json Object
1{
2 "idIn": [
3 101,
4 102,
5 103
6 ],
7 "idEqual": 101,
8 "idLike": "10*",
9 "createdAtGreaterThanOrEqual": "2024-01-01T00:00:00Z",
10 "createdAtLessThanOrEqual": "2024-12-31T23:59:59Z",
11 "createdByLike": "john*",
12 "createdByEqual": "john.doe",
13 "modifiedAtGreaterThanOrEqual": "2024-02-01T00:00:00Z",
14 "modifiedAtLessThanOrEqual": "2024-06-30T23:59:59Z",
15 "modifiedByLike": "admin*",
16 "modifiedByEqual": "admin.user",
17 "displayIdIn": [
18 "UNIT-001",
19 "UNIT-002"
20 ],
21 "displayIdLike": "UNIT-*",
22 "nameOrDisplayIdLike": "Printer*",
23 "nameLike": "Office*",
24 "assetNumberLike": "A-*",
25 "referenceIdLike": "REF-*",
26 "serialNumberLike": "SN*",
27 "licenseNumberLike": "LIC*",
28 "inventoryNumberLike": "INV*",
29 "shippingDateGreaterThanOrEqual": "2024-01-01",
30 "shippingDateLessThanOrEqual": "2024-12-31",
31 "shippingDateEqual": "2024-06-15",
32 "deliveryDateGreaterThanOrEqual": "2024-01-10",
33 "deliveryDateLessThanOrEqual": "2024-12-10",
34 "deliveryDateEqual": "2024-05-01",
35 "receptionDateGreaterThanOrEqual": "2024-01-15",
36 "receptionDateLessThanOrEqual": "2024-12-15",
37 "receptionDateEqual": "2024-06-20",
38 "activationDateGreaterThanOrEqual": "2024-02-01",
39 "activationDateLessThanOrEqual": "2024-11-01",
40 "activationDateEqual": "2024-04-15",
41 "rouEndDateGreaterThanOrEqual": "2025-01-01",
42 "rouEndDateLessThanOrEqual": "2026-12-31",
43 "rouEndDateEqual": "2026-06-30",
44 "stateIn": {
45 "name": "AG_ACTIVE",
46 "captionKey": "enum.entityStatus.agActive",
47 "caption": "Active"
48 },
49 "taxCalculationTypeIn": [
50 "NET"
51 ],
52 "internalAssetClassIdEqual": 501,
53 "internalAssetClassDisplayIdEqual": "IAC-01",
54 "profitCenterIdEqual": 601,
55 "profitCenterDisplayIdEqual": "PC-01",
56 "workBreakdownStructureIdEqual": 701,
57 "workBreakdownStructureDisplayIdEqual": "WBS-01",
58 "functionalAreaIdEqual": 801,
59 "functionalAreaDisplayIdEqual": "FA-01",
60 "businessAreaIdEqual": 901,
61 "businessAreaDisplayIdEqual": "BA-01",
62 "networkIdEqual": 1001,
63 "networkDisplayIdEqual": "NET-01",
64 "segmentIdEqual": 1101,
65 "segmentDisplayIdEqual": "SEG-01",
66 "internalOrderIdEqual": 1201,
67 "internalOrderDisplayIdEqual": "IO-01",
68 "internalOrderTypeIdEqual": 1301,
69 "internalOrderTypeDisplayIdEqual": "IOT-01",
70 "currencyCodeEqual": 1401,
71 "currencyCodeDisplayIdEqual": "USD",
72 "taxCodeForPrincipalPaymentIdEqual": 1501,
73 "taxCodeForPrincipalPaymentDisplayIdEqual": "TAXP-01",
74 "taxJurisdictionForPrincipalPaymentIdEqual": 1601,
75 "taxJurisdictionForPrincipalPaymentDisplayIdEqual": "TXJ-01",
76 "taxCodeForInterestPaymentIdEqual": 1701,
77 "taxCodeForInterestPaymentDisplayIdEqual": "TAXI-01",
78 "taxJurisdictionForInterestPaymentIdEqual": 1801,
79 "taxJurisdictionForInterestPaymentDisplayIdEqual": "TXI-01",
80 "taxCodeForNonLeasePaymentIdEqual": 1901,
81 "taxCodeForNonLeasePaymentDisplayIdEqual": "TAXN-01",
82 "taxJurisdictionForNonLeasePaymentIdEqual": 2001,
83 "taxJurisdictionForNonLeasePaymentDisplayIdEqual": "TXN-01",
84 "costCenterIdIn": [
85 2101,
86 2102
87 ],
88 "costCenterDisplayIdIn": [
89 "CC-01",
90 "CC-02"
91 ],
92 "taxJurisdictionIdEqual": 2201,
93 "taxJurisdictionDisplayIdEqual": "TXJ-02",
94 "taxCodeIdEqual": 2301,
95 "taxCodeDisplayIdEqual": "TAX-02",
96 "responsibleCostCenterIdEqual": 2401,
97 "responsibleCostCenterDisplayIdEqual": "RCC-01",
98 "plantIdEqual": 2501,
99 "plantDisplayDisplayIdEqual": "PLANT-01",
100 "assetCostCenterIdEqual": 2601,
101 "assetCostCenterDisplayIdEqual": "ACC-01",
102 "assetProfitCenterIdEqual": 2701,
103 "assetProfitCenterDisplayIdEqual": "APC-01",
104 "assetWorkBreakdownStructureIdEqual": 2801,
105 "assetWorkBreakdownStructureDisplayIdEqual": "AWBS-01",
106 "assetTaxJurisdictionIdEqual": 2901,
107 "assetTaxJurisdictionDisplayIdEqual": "ATX-01",
108 "assetBusinessUnitIdEqual": 3001,
109 "assetBusinessUnitDisplayIdEqual": "ABU-01",
110 "assetSegmentIdEqual": 3101,
111 "assetSegmentDisplayIdEqual": "ASEG-01",
112 "activationGroupIdIn": [
113 3201,
114 3202
115 ],
116 "activationGroupDisplayIdIn": [
117 "AG-01",
118 "AG-02"
119 ],
120 "activationGroupDisplayIdLike": "AG-*"
121}
📄 Description: Data transfer object representing filters for querying units within the Nakisa Lease Accounting Suite, facilitating the management of leases, contracts, financial obligations, and accounting entries.
Properties
Name |
Type |
Required |
Restrictions |
Description |
|---|---|---|---|---|
idIn |
[integer] |
false |
none |
Filter by multiple values of id |
idEqual |
integer(int64) |
false |
none |
Filter by exact match of id |
idLike |
string |
false |
none |
Filter by partial match of id |
createdAtGreaterThanOrEqual |
string(date-time) |
false |
none |
Filter where created at is greater than or equal to specified value |
createdAtLessThanOrEqual |
string(date-time) |
false |
none |
Filter where created at is less than or equal to specified value |
createdByLike |
string |
false |
none |
Filter by partial match of created by |
createdByEqual |
string |
false |
none |
Filter by exact match of created by |
modifiedAtGreaterThanOrEqual |
string(date-time) |
false |
none |
Filter where modified at is greater than or equal to specified value |
modifiedAtLessThanOrEqual |
string(date-time) |
false |
none |
Filter where modified at is less than or equal to specified value |
modifiedByLike |
string |
false |
none |
Filter by partial match of modified by |
modifiedByEqual |
string |
false |
none |
Filter by exact match of modified by |
displayIdIn |
[string] |
false |
none |
Filter by multiple values of display id |
displayIdLike |
string |
false |
none |
Filter by partial match of display id |
nameOrDisplayIdLike |
string |
false |
none |
Filter by partial match of name or display id |
nameLike |
string |
false |
none |
Filter by partial match of name |
assetNumberLike |
string |
false |
none |
Filter by partial match of asset number |
referenceIdLike |
string |
false |
none |
Filter by partial match of reference id |
serialNumberLike |
string |
false |
none |
Filter by partial match of serial number |
licenseNumberLike |
string |
false |
none |
Filter by partial match of license number |
inventoryNumberLike |
string |
false |
none |
Filter by partial match of inventory number |
shippingDateGreaterThanOrEqual |
string(date) |
false |
none |
Filter where shipping date is greater than or equal to specified value |
shippingDateLessThanOrEqual |
string(date) |
false |
none |
Filter where shipping date is less than or equal to specified value |
shippingDateEqual |
string(date) |
false |
none |
Filter by exact match of shipping date |
deliveryDateGreaterThanOrEqual |
string(date) |
false |
none |
Filter where delivery date is greater than or equal to specified value |
deliveryDateLessThanOrEqual |
string(date) |
false |
none |
Filter where delivery date is less than or equal to specified value |
deliveryDateEqual |
string(date) |
false |
none |
Filter by exact match of delivery date |
receptionDateGreaterThanOrEqual |
string(date) |
false |
none |
Filter where reception date is greater than or equal to specified value |
receptionDateLessThanOrEqual |
string(date) |
false |
none |
Filter where reception date is less than or equal to specified value |
receptionDateEqual |
string(date) |
false |
none |
Filter by exact match of reception date |
activationDateGreaterThanOrEqual |
string(date) |
false |
none |
Filter where activation date is greater than or equal to specified value |
activationDateLessThanOrEqual |
string(date) |
false |
none |
Filter where activation date is less than or equal to specified value |
activationDateEqual |
string(date) |
false |
none |
Filter by exact match of activation date |
rouEndDateGreaterThanOrEqual |
string(date) |
false |
none |
Filter where rou end date is greater than or equal to specified value |
rouEndDateLessThanOrEqual |
string(date) |
false |
none |
Filter where rou end date is less than or equal to specified value |
rouEndDateEqual |
string(date) |
false |
none |
Filter by exact match of rou end date |
stateIn |
false |
none |
Filter by multiple values of state |
|
taxCalculationTypeIn |
[string] |
false |
none |
Filter by multiple values of tax calculation type |
internalAssetClassIdEqual |
integer(int64) |
false |
none |
Filter by exact match of internal asset class id |
internalAssetClassDisplayIdEqual |
string |
false |
none |
Filter by exact match of internal asset class display id |
profitCenterIdEqual |
integer(int64) |
false |
none |
Filter by exact match of profit center id |
profitCenterDisplayIdEqual |
string |
false |
none |
Filter by exact match of profit center display id |
workBreakdownStructureIdEqual |
integer(int64) |
false |
none |
Filter by exact match of work breakdown structure id |
workBreakdownStructureDisplayIdEqual |
string |
false |
none |
Filter by exact match of work breakdown structure display id |
functionalAreaIdEqual |
integer(int64) |
false |
none |
Filter by exact match of functional area id |
functionalAreaDisplayIdEqual |
string |
false |
none |
Filter by exact match of functional area display id |
businessAreaIdEqual |
integer(int64) |
false |
none |
Filter by exact match of business area id |
businessAreaDisplayIdEqual |
string |
false |
none |
Filter by exact match of business area display id |
networkIdEqual |
integer(int64) |
false |
none |
Filter by exact match of network id |
networkDisplayIdEqual |
string |
false |
none |
Filter by exact match of network display id |
segmentIdEqual |
integer(int64) |
false |
none |
Filter by exact match of segment id |
segmentDisplayIdEqual |
string |
false |
none |
Filter by exact match of segment display id |
internalOrderIdEqual |
integer(int64) |
false |
none |
Filter by exact match of internal order id |
internalOrderDisplayIdEqual |
string |
false |
none |
Filter by exact match of internal order display id |
internalOrderTypeIdEqual |
integer(int64) |
false |
none |
Filter by exact match of internal order type id |
internalOrderTypeDisplayIdEqual |
string |
false |
none |
Filter by exact match of internal order type display id |
currencyCodeEqual |
integer(int64) |
false |
none |
Filter by exact match of currency code |
currencyCodeDisplayIdEqual |
string |
false |
none |
Filter by exact match of currency code display id |
taxCodeForPrincipalPaymentIdEqual |
integer(int64) |
false |
none |
Filter by exact match of tax code for principal payment id |
taxCodeForPrincipalPaymentDisplayIdEqual |
string |
false |
none |
Filter by exact match of tax code for principal payment display id |
taxJurisdictionForPrincipalPaymentIdEqual |
integer(int64) |
false |
none |
Filter by exact match of tax jurisdiction for principal payment id |
taxJurisdictionForPrincipalPaymentDisplayIdEqual |
string |
false |
none |
Filter by exact match of tax jurisdiction for principal payment display id |
taxCodeForInterestPaymentIdEqual |
integer(int64) |
false |
none |
Filter by exact match of tax code for interest payment id |
taxCodeForInterestPaymentDisplayIdEqual |
string |
false |
none |
Filter by exact match of tax code for interest payment display id |
taxJurisdictionForInterestPaymentIdEqual |
integer(int64) |
false |
none |
Filter by exact match of tax jurisdiction for interest payment id |
taxJurisdictionForInterestPaymentDisplayIdEqual |
string |
false |
none |
Filter by exact match of tax jurisdiction for interest payment display id |
taxCodeForNonLeasePaymentIdEqual |
integer(int64) |
false |
none |
Filter by exact match of tax code for non lease payment id |
taxCodeForNonLeasePaymentDisplayIdEqual |
string |
false |
none |
Filter by exact match of tax code for non lease payment display id |
taxJurisdictionForNonLeasePaymentIdEqual |
integer(int64) |
false |
none |
Filter by exact match of tax jurisdiction for non lease payment id |
taxJurisdictionForNonLeasePaymentDisplayIdEqual |
string |
false |
none |
Filter by exact match of tax jurisdiction for non lease payment display id |
costCenterIdIn |
[integer] |
false |
none |
Filter by multiple values of cost center id |
costCenterDisplayIdIn |
[string] |
false |
none |
Filter by multiple values of cost center display id |
taxJurisdictionIdEqual |
integer(int64) |
false |
none |
Filter by exact match of tax jurisdiction id |
taxJurisdictionDisplayIdEqual |
string |
false |
none |
Filter by exact match of tax jurisdiction display id |
taxCodeIdEqual |
integer(int64) |
false |
none |
Filter by exact match of tax code id |
taxCodeDisplayIdEqual |
string |
false |
none |
Filter by exact match of tax code display id |
responsibleCostCenterIdEqual |
integer(int64) |
false |
none |
Filter by exact match of responsible cost center id |
responsibleCostCenterDisplayIdEqual |
string |
false |
none |
Filter by exact match of responsible cost center display id |
plantIdEqual |
integer(int64) |
false |
none |
Filter by exact match of plant id |
plantDisplayDisplayIdEqual |
string |
false |
none |
Filter by exact match of plant display display id |
assetCostCenterIdEqual |
integer(int64) |
false |
none |
Filter by exact match of asset cost center id |
assetCostCenterDisplayIdEqual |
string |
false |
none |
Filter by exact match of asset cost center display id |
assetProfitCenterIdEqual |
integer(int64) |
false |
none |
Filter by exact match of asset profit center id |
assetProfitCenterDisplayIdEqual |
string |
false |
none |
Filter by exact match of asset profit center display id |
assetWorkBreakdownStructureIdEqual |
integer(int64) |
false |
none |
Filter by exact match of asset work breakdown structure id |
assetWorkBreakdownStructureDisplayIdEqual |
string |
false |
none |
Filter by exact match of asset work breakdown structure display id |
assetTaxJurisdictionIdEqual |
integer(int64) |
false |
none |
Filter by exact match of asset tax jurisdiction id |
assetTaxJurisdictionDisplayIdEqual |
string |
false |
none |
Filter by exact match of asset tax jurisdiction display id |
assetBusinessUnitIdEqual |
integer(int64) |
false |
none |
Filter by exact match of asset business unit id |
assetBusinessUnitDisplayIdEqual |
string |
false |
none |
Filter by exact match of asset business unit display id |
assetSegmentIdEqual |
integer(int64) |
false |
none |
Filter by exact match of asset segment id |
assetSegmentDisplayIdEqual |
string |
false |
none |
Filter by exact match of asset segment display id |
activationGroupIdIn |
[integer] |
false |
none |
Filter by multiple values of activation group id |
activationGroupDisplayIdIn |
[string] |
false |
none |
Filter by multiple values of activation group display id |
activationGroupDisplayIdLike |
string |
false |
none |
Filter by partial match of activation group display id |