@arrowsphere/api-client 1.0.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/UPGRADING.md +43 -0
- package/build/licenses/entities/filterFindResult.d.ts +2 -2
- package/build/licenses/entities/findResult.d.ts +17 -9
- package/build/licenses/entities/findResult.js +4 -4
- package/build/licenses/entities/license/activeSeatsFindResult.d.ts +29 -0
- package/build/licenses/entities/license/activeSeatsFindResult.js +47 -0
- package/build/licenses/entities/license/configFindResult.d.ts +37 -0
- package/build/licenses/entities/license/configFindResult.js +59 -0
- package/build/licenses/entities/license/licenseFindResult.d.ts +266 -13
- package/build/licenses/entities/license/licenseFindResult.js +324 -13
- package/build/licenses/entities/license/priceFindResult.d.ts +54 -0
- package/build/licenses/entities/license/priceFindResult.js +76 -0
- package/build/licenses/entities/license/warningFindResult.d.ts +33 -0
- package/build/licenses/entities/license/warningFindResult.js +51 -0
- package/build/licenses/entities/offer/actionFlagsFindResult.d.ts +37 -0
- package/build/licenses/entities/offer/actionFlagsFindResult.js +59 -0
- package/build/licenses/entities/offer/offerFindResult.d.ts +63 -0
- package/build/licenses/entities/offer/offerFindResult.js +109 -0
- package/build/licenses/entities/offer/priceBandFindResult.d.ts +72 -0
- package/build/licenses/entities/offer/priceBandFindResult.js +131 -0
- package/build/licenses/entities/offer/priceband/billingFindResult.d.ts +37 -0
- package/build/licenses/entities/offer/priceband/billingFindResult.js +59 -0
- package/build/licenses/entities/offer/priceband/identifiers/arrowsphereFindResult.d.ts +25 -0
- package/build/licenses/entities/offer/priceband/identifiers/arrowsphereFindResult.js +43 -0
- package/build/licenses/entities/offer/priceband/identifiersFindResult.d.ts +25 -0
- package/build/licenses/entities/offer/priceband/identifiersFindResult.js +47 -0
- package/build/licenses/entities/offer/priceband/priceBandActionFlagsFindResult.d.ts +49 -0
- package/build/licenses/entities/offer/priceband/priceBandActionFlagsFindResult.js +80 -0
- package/build/licenses/entities/offer/priceband/priceBandPriceFindResult.d.ts +37 -0
- package/build/licenses/entities/offer/priceband/priceBandPriceFindResult.js +59 -0
- package/build/licenses/entities/offer/priceband/saleConstraintsFindResult.d.ts +29 -0
- package/build/licenses/entities/offer/priceband/saleConstraintsFindResult.js +47 -0
- package/build/licenses/index.d.ts +14 -3
- package/build/licenses/index.js +14 -3
- package/build/licenses/licensesClient.d.ts +48 -28
- package/build/licenses/licensesClient.js +28 -0
- package/build/publicApiClient.js +3 -1
- package/package.json +2 -2
- package/build/licenses/entities/license/abstractLicense.d.ts +0 -177
- package/build/licenses/entities/license/abstractLicense.js +0 -363
- package/build/licenses/entities/offer/licenseOfferFindResult.d.ts +0 -108
- package/build/licenses/entities/offer/licenseOfferFindResult.js +0 -232
|
@@ -1,34 +1,287 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
1
|
+
import { ActiveSeatsFindresultData, ActiveSeatsFindResultDataKeywords, ActiveSeatsFindResultDataSortParameters, ActiveSeatsFindResult, ActiveSeatsFindResultDataFiltersParameters } from './activeSeatsFindResult';
|
|
2
|
+
import { AbstractEntity } from '../../../abstractEntity';
|
|
3
|
+
import { Rules } from 'validatorjs';
|
|
4
|
+
import { ConfigFindResultData, ConfigFindResultDataFiltersParameters, ConfigFindResultDataKeywords, ConfigFindResultDataSortParameters } from './configFindResult';
|
|
5
|
+
import { DataKeywords, FiltersParameters, SortParameters } from '../../licensesClient';
|
|
6
|
+
import { WarningFindResultData, WarningFindResultDataFiltersParameters, WarningFindResultDataKeywords, WarningFindResultDataSortParameters } from './warningFindResult';
|
|
7
|
+
import { PriceFindResult, PriceFindResultData, PriceFindResultDataFiltersParameters, PriceFindResultDataKeywords, PriceFindResutDataSortParameters } from './priceFindResult';
|
|
8
8
|
/**
|
|
9
9
|
* Highlight response object.
|
|
10
10
|
*/
|
|
11
11
|
export declare type Highlight = {
|
|
12
|
-
[key in
|
|
12
|
+
[key in LicenseFindResultFields]?: string[];
|
|
13
13
|
};
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Fields that can be present in License response and request data.
|
|
16
16
|
*/
|
|
17
|
-
export declare
|
|
17
|
+
export declare enum LicenseFindResultFields {
|
|
18
|
+
COLUMN_ACCEPT_EULA = "accept_eula",
|
|
19
|
+
COLUMN_ACTIVE_SEATS = "active_seats",
|
|
20
|
+
COLUMN_AUTO_RENEW = "auto_renew",
|
|
21
|
+
COLUMN_BASE_SEAT = "base_seat",
|
|
22
|
+
COLUMN_CATEGORY = "category",
|
|
23
|
+
COLUMN_CLOUD_TYPE = "cloud_type",
|
|
24
|
+
COLUMN_CONFIGS = "configs",
|
|
25
|
+
COLUMN_WARNINGS = "warnings",
|
|
26
|
+
COLUMN_CUSTOMER_NAME = "customer_name",
|
|
27
|
+
COLUMN_CUSTOMER_REF = "customer_ref",
|
|
28
|
+
COLUMN_END_DATE = "end_date",
|
|
29
|
+
COLUMN_FRIENDLY_NAME = "friendly_name",
|
|
30
|
+
COLUMN_ID = "id",
|
|
31
|
+
COLUMN_IS_ENABLED = "isEnabled",
|
|
32
|
+
COLUMN_LAST_UPDATE = "lastUpdate",
|
|
33
|
+
COLUMN_MARKETPLACE = "marketplace",
|
|
34
|
+
COLUMN_MESSAGE = "message",
|
|
35
|
+
COLUMN_OFFER = "offer",
|
|
36
|
+
COLUMN_PARENT_LINE_ID = "parent_line_id",
|
|
37
|
+
COLUMN_PARENT_ORDER_REF = "parent_order_ref",
|
|
38
|
+
COLUMN_PARTNER_REF = "partner_ref",
|
|
39
|
+
COLUMN_PERIODICITY = "periodicity",
|
|
40
|
+
COLUMN_PRICE = "price",
|
|
41
|
+
COLUMN_RESELLER_NAME = "reseller_name",
|
|
42
|
+
COLUMN_RESELLER_REF = "reseller_ref",
|
|
43
|
+
COLUMN_SEAT = "seat",
|
|
44
|
+
COLUMN_SERVICE_REF = "service_ref",
|
|
45
|
+
COLUMN_SKU = "sku",
|
|
46
|
+
COLUMN_START_DATE = "start_date",
|
|
47
|
+
COLUMN_STATUS_CODE = "status_code",
|
|
48
|
+
COLUMN_STATUS_LABEL = "status_label",
|
|
49
|
+
COLUMN_SUBSCRIPTION_ID = "subscription_id",
|
|
50
|
+
COLUMN_SUBSIDIARY_NAME = "subsidiary_name",
|
|
51
|
+
COLUMN_TERM = "term",
|
|
52
|
+
COLUMN_TRIAL = "trial",
|
|
53
|
+
COLUMN_TYPE = "type",
|
|
54
|
+
COLUMN_UOM = "uom",
|
|
55
|
+
COLUMN_VENDOR_CODE = "vendor_code",
|
|
56
|
+
COLUMN_VENDOR_NAME = "vendor_name",
|
|
57
|
+
COLUMN_VENDOR_SUBSCRIPTION_ID = "vendor_subscription_id",
|
|
58
|
+
COLUMN_HIGHLIGHT = "highlight"
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* License data fields and their corresponding types
|
|
62
|
+
*/
|
|
63
|
+
export declare type LicenseFindResultData = {
|
|
64
|
+
[LicenseFindResultFields.COLUMN_ACCEPT_EULA]: boolean;
|
|
65
|
+
[LicenseFindResultFields.COLUMN_ACTIVE_SEATS]: ActiveSeatsFindresultData;
|
|
66
|
+
[LicenseFindResultFields.COLUMN_AUTO_RENEW]: boolean;
|
|
67
|
+
[LicenseFindResultFields.COLUMN_BASE_SEAT]: number;
|
|
68
|
+
[LicenseFindResultFields.COLUMN_CATEGORY]: string;
|
|
69
|
+
[LicenseFindResultFields.COLUMN_CLOUD_TYPE]: string;
|
|
70
|
+
[LicenseFindResultFields.COLUMN_CONFIGS]: Array<ConfigFindResultData> | null | undefined;
|
|
71
|
+
[LicenseFindResultFields.COLUMN_WARNINGS]: Array<WarningFindResultData> | null | undefined;
|
|
72
|
+
[LicenseFindResultFields.COLUMN_CUSTOMER_NAME]: string;
|
|
73
|
+
[LicenseFindResultFields.COLUMN_CUSTOMER_REF]: string;
|
|
74
|
+
[LicenseFindResultFields.COLUMN_END_DATE]: string;
|
|
75
|
+
[LicenseFindResultFields.COLUMN_FRIENDLY_NAME]: string | null;
|
|
76
|
+
[LicenseFindResultFields.COLUMN_ID]: number;
|
|
77
|
+
[LicenseFindResultFields.COLUMN_IS_ENABLED]: boolean;
|
|
78
|
+
[LicenseFindResultFields.COLUMN_LAST_UPDATE]: string | null;
|
|
79
|
+
[LicenseFindResultFields.COLUMN_MARKETPLACE]: string;
|
|
80
|
+
[LicenseFindResultFields.COLUMN_MESSAGE]: string;
|
|
81
|
+
[LicenseFindResultFields.COLUMN_OFFER]: string;
|
|
82
|
+
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]: number | null;
|
|
83
|
+
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]: string | null;
|
|
84
|
+
[LicenseFindResultFields.COLUMN_PARTNER_REF]: string;
|
|
85
|
+
[LicenseFindResultFields.COLUMN_PERIODICITY]: number;
|
|
86
|
+
[LicenseFindResultFields.COLUMN_PRICE]: PriceFindResultData;
|
|
87
|
+
[LicenseFindResultFields.COLUMN_RESELLER_NAME]: string;
|
|
88
|
+
[LicenseFindResultFields.COLUMN_RESELLER_REF]: string;
|
|
89
|
+
[LicenseFindResultFields.COLUMN_SEAT]: number;
|
|
90
|
+
[LicenseFindResultFields.COLUMN_SERVICE_REF]: string;
|
|
91
|
+
[LicenseFindResultFields.COLUMN_SKU]: string;
|
|
92
|
+
[LicenseFindResultFields.COLUMN_START_DATE]: string;
|
|
93
|
+
[LicenseFindResultFields.COLUMN_STATUS_CODE]: number;
|
|
94
|
+
[LicenseFindResultFields.COLUMN_STATUS_LABEL]: string;
|
|
95
|
+
[LicenseFindResultFields.COLUMN_SUBSCRIPTION_ID]: string;
|
|
96
|
+
[LicenseFindResultFields.COLUMN_SUBSIDIARY_NAME]: string;
|
|
97
|
+
[LicenseFindResultFields.COLUMN_TERM]: number;
|
|
98
|
+
[LicenseFindResultFields.COLUMN_TRIAL]: boolean;
|
|
99
|
+
[LicenseFindResultFields.COLUMN_TYPE]: string;
|
|
100
|
+
[LicenseFindResultFields.COLUMN_UOM]: string;
|
|
101
|
+
[LicenseFindResultFields.COLUMN_VENDOR_CODE]: string;
|
|
102
|
+
[LicenseFindResultFields.COLUMN_VENDOR_NAME]: string;
|
|
103
|
+
[LicenseFindResultFields.COLUMN_VENDOR_SUBSCRIPTION_ID]: string | null;
|
|
18
104
|
[LicenseFindResultFields.COLUMN_HIGHLIGHT]?: Highlight;
|
|
19
105
|
};
|
|
20
|
-
export declare
|
|
106
|
+
export declare type LicenceFindDataKeywords = {
|
|
107
|
+
[LicenseFindResultFields.COLUMN_ACCEPT_EULA]?: DataKeywords;
|
|
108
|
+
[LicenseFindResultFields.COLUMN_ACTIVE_SEATS]?: ActiveSeatsFindResultDataKeywords;
|
|
109
|
+
[LicenseFindResultFields.COLUMN_AUTO_RENEW]?: DataKeywords;
|
|
110
|
+
[LicenseFindResultFields.COLUMN_BASE_SEAT]?: DataKeywords;
|
|
111
|
+
[LicenseFindResultFields.COLUMN_CATEGORY]?: DataKeywords;
|
|
112
|
+
[LicenseFindResultFields.COLUMN_CLOUD_TYPE]?: DataKeywords;
|
|
113
|
+
[LicenseFindResultFields.COLUMN_CONFIGS]?: ConfigFindResultDataKeywords;
|
|
114
|
+
[LicenseFindResultFields.COLUMN_WARNINGS]?: WarningFindResultDataKeywords;
|
|
115
|
+
[LicenseFindResultFields.COLUMN_CUSTOMER_NAME]?: DataKeywords;
|
|
116
|
+
[LicenseFindResultFields.COLUMN_CUSTOMER_REF]?: DataKeywords;
|
|
117
|
+
[LicenseFindResultFields.COLUMN_END_DATE]?: DataKeywords;
|
|
118
|
+
[LicenseFindResultFields.COLUMN_FRIENDLY_NAME]?: DataKeywords;
|
|
119
|
+
[LicenseFindResultFields.COLUMN_ID]?: DataKeywords;
|
|
120
|
+
[LicenseFindResultFields.COLUMN_IS_ENABLED]?: DataKeywords;
|
|
121
|
+
[LicenseFindResultFields.COLUMN_LAST_UPDATE]?: DataKeywords;
|
|
122
|
+
[LicenseFindResultFields.COLUMN_MARKETPLACE]?: DataKeywords;
|
|
123
|
+
[LicenseFindResultFields.COLUMN_MESSAGE]?: DataKeywords;
|
|
124
|
+
[LicenseFindResultFields.COLUMN_OFFER]?: DataKeywords;
|
|
125
|
+
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]?: DataKeywords;
|
|
126
|
+
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]?: DataKeywords;
|
|
127
|
+
[LicenseFindResultFields.COLUMN_PARTNER_REF]?: DataKeywords;
|
|
128
|
+
[LicenseFindResultFields.COLUMN_PERIODICITY]?: DataKeywords;
|
|
129
|
+
[LicenseFindResultFields.COLUMN_PRICE]?: PriceFindResultDataKeywords;
|
|
130
|
+
[LicenseFindResultFields.COLUMN_RESELLER_NAME]?: DataKeywords;
|
|
131
|
+
[LicenseFindResultFields.COLUMN_RESELLER_REF]?: DataKeywords;
|
|
132
|
+
[LicenseFindResultFields.COLUMN_SEAT]?: DataKeywords;
|
|
133
|
+
[LicenseFindResultFields.COLUMN_SERVICE_REF]?: DataKeywords;
|
|
134
|
+
[LicenseFindResultFields.COLUMN_SKU]?: DataKeywords;
|
|
135
|
+
[LicenseFindResultFields.COLUMN_START_DATE]?: DataKeywords;
|
|
136
|
+
[LicenseFindResultFields.COLUMN_STATUS_CODE]?: DataKeywords;
|
|
137
|
+
[LicenseFindResultFields.COLUMN_STATUS_LABEL]?: DataKeywords;
|
|
138
|
+
[LicenseFindResultFields.COLUMN_SUBSCRIPTION_ID]?: DataKeywords;
|
|
139
|
+
[LicenseFindResultFields.COLUMN_SUBSIDIARY_NAME]?: DataKeywords;
|
|
140
|
+
[LicenseFindResultFields.COLUMN_TERM]?: DataKeywords;
|
|
141
|
+
[LicenseFindResultFields.COLUMN_TRIAL]?: DataKeywords;
|
|
142
|
+
[LicenseFindResultFields.COLUMN_TYPE]?: DataKeywords;
|
|
143
|
+
[LicenseFindResultFields.COLUMN_UOM]?: DataKeywords;
|
|
144
|
+
[LicenseFindResultFields.COLUMN_VENDOR_CODE]?: DataKeywords;
|
|
145
|
+
[LicenseFindResultFields.COLUMN_VENDOR_NAME]?: DataKeywords;
|
|
146
|
+
[LicenseFindResultFields.COLUMN_VENDOR_SUBSCRIPTION_ID]?: DataKeywords;
|
|
147
|
+
};
|
|
148
|
+
export declare type LicenceFindDataSortParameters = {
|
|
149
|
+
[LicenseFindResultFields.COLUMN_ACCEPT_EULA]?: SortParameters;
|
|
150
|
+
[LicenseFindResultFields.COLUMN_ACTIVE_SEATS]?: ActiveSeatsFindResultDataSortParameters;
|
|
151
|
+
[LicenseFindResultFields.COLUMN_AUTO_RENEW]?: SortParameters;
|
|
152
|
+
[LicenseFindResultFields.COLUMN_BASE_SEAT]?: SortParameters;
|
|
153
|
+
[LicenseFindResultFields.COLUMN_CATEGORY]?: SortParameters;
|
|
154
|
+
[LicenseFindResultFields.COLUMN_CLOUD_TYPE]?: SortParameters;
|
|
155
|
+
[LicenseFindResultFields.COLUMN_CONFIGS]?: ConfigFindResultDataSortParameters;
|
|
156
|
+
[LicenseFindResultFields.COLUMN_WARNINGS]?: WarningFindResultDataSortParameters;
|
|
157
|
+
[LicenseFindResultFields.COLUMN_CUSTOMER_NAME]?: SortParameters;
|
|
158
|
+
[LicenseFindResultFields.COLUMN_CUSTOMER_REF]?: SortParameters;
|
|
159
|
+
[LicenseFindResultFields.COLUMN_END_DATE]?: SortParameters;
|
|
160
|
+
[LicenseFindResultFields.COLUMN_FRIENDLY_NAME]?: SortParameters;
|
|
161
|
+
[LicenseFindResultFields.COLUMN_ID]?: SortParameters;
|
|
162
|
+
[LicenseFindResultFields.COLUMN_IS_ENABLED]?: SortParameters;
|
|
163
|
+
[LicenseFindResultFields.COLUMN_LAST_UPDATE]?: SortParameters;
|
|
164
|
+
[LicenseFindResultFields.COLUMN_MARKETPLACE]?: SortParameters;
|
|
165
|
+
[LicenseFindResultFields.COLUMN_MESSAGE]?: SortParameters;
|
|
166
|
+
[LicenseFindResultFields.COLUMN_OFFER]?: SortParameters;
|
|
167
|
+
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]?: SortParameters;
|
|
168
|
+
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]?: SortParameters;
|
|
169
|
+
[LicenseFindResultFields.COLUMN_PARTNER_REF]?: SortParameters;
|
|
170
|
+
[LicenseFindResultFields.COLUMN_PERIODICITY]?: SortParameters;
|
|
171
|
+
[LicenseFindResultFields.COLUMN_PRICE]?: PriceFindResutDataSortParameters;
|
|
172
|
+
[LicenseFindResultFields.COLUMN_RESELLER_NAME]?: SortParameters;
|
|
173
|
+
[LicenseFindResultFields.COLUMN_RESELLER_REF]?: SortParameters;
|
|
174
|
+
[LicenseFindResultFields.COLUMN_SEAT]?: SortParameters;
|
|
175
|
+
[LicenseFindResultFields.COLUMN_SERVICE_REF]?: SortParameters;
|
|
176
|
+
[LicenseFindResultFields.COLUMN_SKU]?: SortParameters;
|
|
177
|
+
[LicenseFindResultFields.COLUMN_START_DATE]?: SortParameters;
|
|
178
|
+
[LicenseFindResultFields.COLUMN_STATUS_CODE]?: SortParameters;
|
|
179
|
+
[LicenseFindResultFields.COLUMN_STATUS_LABEL]?: SortParameters;
|
|
180
|
+
[LicenseFindResultFields.COLUMN_SUBSCRIPTION_ID]?: SortParameters;
|
|
181
|
+
[LicenseFindResultFields.COLUMN_SUBSIDIARY_NAME]?: SortParameters;
|
|
182
|
+
[LicenseFindResultFields.COLUMN_TERM]?: SortParameters;
|
|
183
|
+
[LicenseFindResultFields.COLUMN_TRIAL]?: SortParameters;
|
|
184
|
+
[LicenseFindResultFields.COLUMN_TYPE]?: SortParameters;
|
|
185
|
+
[LicenseFindResultFields.COLUMN_UOM]?: SortParameters;
|
|
186
|
+
[LicenseFindResultFields.COLUMN_VENDOR_CODE]?: SortParameters;
|
|
187
|
+
[LicenseFindResultFields.COLUMN_VENDOR_NAME]?: SortParameters;
|
|
188
|
+
[LicenseFindResultFields.COLUMN_VENDOR_SUBSCRIPTION_ID]?: SortParameters;
|
|
189
|
+
};
|
|
190
|
+
export declare type LicenceFindDataFiltersParameters = {
|
|
191
|
+
[LicenseFindResultFields.COLUMN_ACCEPT_EULA]?: FiltersParameters;
|
|
192
|
+
[LicenseFindResultFields.COLUMN_ACTIVE_SEATS]?: ActiveSeatsFindResultDataFiltersParameters;
|
|
193
|
+
[LicenseFindResultFields.COLUMN_AUTO_RENEW]?: FiltersParameters;
|
|
194
|
+
[LicenseFindResultFields.COLUMN_BASE_SEAT]?: FiltersParameters;
|
|
195
|
+
[LicenseFindResultFields.COLUMN_CATEGORY]?: FiltersParameters;
|
|
196
|
+
[LicenseFindResultFields.COLUMN_CLOUD_TYPE]?: FiltersParameters;
|
|
197
|
+
[LicenseFindResultFields.COLUMN_CONFIGS]?: ConfigFindResultDataFiltersParameters;
|
|
198
|
+
[LicenseFindResultFields.COLUMN_WARNINGS]?: WarningFindResultDataFiltersParameters;
|
|
199
|
+
[LicenseFindResultFields.COLUMN_CUSTOMER_NAME]?: FiltersParameters;
|
|
200
|
+
[LicenseFindResultFields.COLUMN_CUSTOMER_REF]?: FiltersParameters;
|
|
201
|
+
[LicenseFindResultFields.COLUMN_END_DATE]?: FiltersParameters;
|
|
202
|
+
[LicenseFindResultFields.COLUMN_FRIENDLY_NAME]?: FiltersParameters;
|
|
203
|
+
[LicenseFindResultFields.COLUMN_ID]?: FiltersParameters;
|
|
204
|
+
[LicenseFindResultFields.COLUMN_IS_ENABLED]?: FiltersParameters;
|
|
205
|
+
[LicenseFindResultFields.COLUMN_LAST_UPDATE]?: FiltersParameters;
|
|
206
|
+
[LicenseFindResultFields.COLUMN_MARKETPLACE]?: FiltersParameters;
|
|
207
|
+
[LicenseFindResultFields.COLUMN_MESSAGE]?: FiltersParameters;
|
|
208
|
+
[LicenseFindResultFields.COLUMN_OFFER]?: FiltersParameters;
|
|
209
|
+
[LicenseFindResultFields.COLUMN_PARENT_LINE_ID]?: FiltersParameters;
|
|
210
|
+
[LicenseFindResultFields.COLUMN_PARENT_ORDER_REF]?: FiltersParameters;
|
|
211
|
+
[LicenseFindResultFields.COLUMN_PARTNER_REF]?: FiltersParameters;
|
|
212
|
+
[LicenseFindResultFields.COLUMN_PERIODICITY]?: FiltersParameters;
|
|
213
|
+
[LicenseFindResultFields.COLUMN_PRICE]?: PriceFindResultDataFiltersParameters;
|
|
214
|
+
[LicenseFindResultFields.COLUMN_RESELLER_NAME]?: FiltersParameters;
|
|
215
|
+
[LicenseFindResultFields.COLUMN_RESELLER_REF]?: FiltersParameters;
|
|
216
|
+
[LicenseFindResultFields.COLUMN_SEAT]?: FiltersParameters;
|
|
217
|
+
[LicenseFindResultFields.COLUMN_SERVICE_REF]?: FiltersParameters;
|
|
218
|
+
[LicenseFindResultFields.COLUMN_SKU]?: FiltersParameters;
|
|
219
|
+
[LicenseFindResultFields.COLUMN_START_DATE]?: FiltersParameters;
|
|
220
|
+
[LicenseFindResultFields.COLUMN_STATUS_CODE]?: FiltersParameters;
|
|
221
|
+
[LicenseFindResultFields.COLUMN_STATUS_LABEL]?: FiltersParameters;
|
|
222
|
+
[LicenseFindResultFields.COLUMN_SUBSCRIPTION_ID]?: FiltersParameters;
|
|
223
|
+
[LicenseFindResultFields.COLUMN_SUBSIDIARY_NAME]?: FiltersParameters;
|
|
224
|
+
[LicenseFindResultFields.COLUMN_TERM]?: FiltersParameters;
|
|
225
|
+
[LicenseFindResultFields.COLUMN_TRIAL]?: FiltersParameters;
|
|
226
|
+
[LicenseFindResultFields.COLUMN_TYPE]?: FiltersParameters;
|
|
227
|
+
[LicenseFindResultFields.COLUMN_UOM]?: FiltersParameters;
|
|
228
|
+
[LicenseFindResultFields.COLUMN_VENDOR_CODE]?: FiltersParameters;
|
|
229
|
+
[LicenseFindResultFields.COLUMN_VENDOR_NAME]?: FiltersParameters;
|
|
230
|
+
[LicenseFindResultFields.COLUMN_VENDOR_SUBSCRIPTION_ID]?: FiltersParameters;
|
|
231
|
+
};
|
|
232
|
+
export declare class LicenseFindResult extends AbstractEntity<LicenseFindResultData> {
|
|
21
233
|
#private;
|
|
234
|
+
protected VALIDATION_RULES: Rules;
|
|
22
235
|
/**
|
|
23
236
|
* LicenseFindResult constructor.
|
|
24
237
|
*
|
|
25
238
|
* @param data - License find result data from the response.
|
|
26
239
|
*/
|
|
27
240
|
constructor(data: LicenseFindResultData);
|
|
241
|
+
get id(): number;
|
|
242
|
+
get acceptEula(): boolean;
|
|
243
|
+
get activeSeats(): ActiveSeatsFindResult;
|
|
244
|
+
get autoRenew(): boolean;
|
|
245
|
+
get baseSeat(): number;
|
|
246
|
+
get category(): string;
|
|
247
|
+
get classification(): string;
|
|
248
|
+
get configs(): Array<ConfigFindResultData> | null | undefined;
|
|
249
|
+
get warnings(): Array<WarningFindResultData> | null | undefined;
|
|
250
|
+
get customerName(): string;
|
|
251
|
+
get customerRef(): string;
|
|
252
|
+
get endDate(): string;
|
|
253
|
+
get friendlyName(): string | null;
|
|
254
|
+
get enabled(): boolean;
|
|
255
|
+
get lastUpdate(): string | null;
|
|
256
|
+
get marketplace(): string;
|
|
257
|
+
get message(): string;
|
|
258
|
+
get offer(): string;
|
|
259
|
+
get parentLineId(): number | null;
|
|
260
|
+
get parentOrderRef(): string | null;
|
|
261
|
+
get partnerRef(): string;
|
|
262
|
+
get periodicity(): number;
|
|
263
|
+
get price(): PriceFindResult;
|
|
264
|
+
get resellerName(): string;
|
|
265
|
+
get resellerRef(): string;
|
|
266
|
+
get seat(): number;
|
|
267
|
+
get serviceRef(): string;
|
|
268
|
+
get sku(): string;
|
|
269
|
+
get startDate(): string;
|
|
270
|
+
get statusCode(): number;
|
|
271
|
+
get statusLabel(): string;
|
|
272
|
+
get subscriptionId(): string;
|
|
273
|
+
get subsidiaryName(): string;
|
|
274
|
+
get term(): number;
|
|
275
|
+
isTrial(): boolean;
|
|
276
|
+
get type(): string;
|
|
277
|
+
get uom(): string;
|
|
278
|
+
get vendorCode(): string;
|
|
279
|
+
get vendorName(): string;
|
|
280
|
+
get vendorSubscriptionId(): string | null;
|
|
28
281
|
get highlight(): Highlight;
|
|
29
282
|
/**
|
|
30
|
-
* Plain JSON object representation of the
|
|
31
|
-
* @returns {@link
|
|
283
|
+
* Plain JSON object representation of the license entity.
|
|
284
|
+
* @returns {@link LicenseData}
|
|
32
285
|
*/
|
|
33
286
|
toJSON(): LicenseFindResultData;
|
|
34
287
|
}
|