@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230519.1 → 1.20230616.1
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/.openapi-generator/FILES +27 -1
- package/api/claim-batch-logs-api.ts +668 -0
- package/api/claim-batch-references-api.ts +764 -0
- package/api/claim-batches-api.ts +17 -8
- package/api/error-category-api.ts +668 -0
- package/api/error-category-types-api.ts +725 -0
- package/api/error-severity-api.ts +668 -0
- package/api/error-type-api.ts +668 -0
- package/api/{fee-schedule-anesthesia-api.ts → fee-schedule-anesthesias-api.ts} +94 -133
- package/api/fee-schedule-details-api.ts +68 -107
- package/api/fee-schedule-modifier-discounts-api.ts +68 -107
- package/api/fee-schedule-modifier-excludes-api.ts +68 -107
- package/api/fee-schedule-procedure-group-adjustments-api.ts +68 -107
- package/api/fee-schedule-provider-type-discounts-api.ts +68 -107
- package/api/funding-request-claims-api.ts +8 -26
- package/api/member-account-plans-api.ts +10 -10
- package/api/payor-accounts-api.ts +105 -0
- package/api/user-api.ts +98 -0
- package/api.ts +7 -1
- package/models/claim-batch-log-list-vbaresponse.ts +45 -0
- package/models/claim-batch-log-vbaresponse.ts +45 -0
- package/models/claim-batch-log.ts +96 -0
- package/models/claim-batch-reference-list-vbaresponse.ts +45 -0
- package/models/claim-batch-reference-vbaresponse.ts +45 -0
- package/models/claim-batch-reference.ts +84 -0
- package/models/company-data.ts +24 -0
- package/models/error-category-list-vbaresponse.ts +45 -0
- package/models/error-category-type-list-vbaresponse.ts +45 -0
- package/models/error-category-type-vbaresponse.ts +45 -0
- package/models/error-category-type.ts +78 -0
- package/models/error-category-vbaresponse.ts +45 -0
- package/models/error-category.ts +60 -0
- package/models/error-severity-list-vbaresponse.ts +45 -0
- package/models/error-severity-vbaresponse.ts +45 -0
- package/models/error-severity.ts +60 -0
- package/models/error-type-list-vbaresponse.ts +45 -0
- package/models/error-type-vbaresponse.ts +45 -0
- package/models/error-type.ts +60 -0
- package/models/fee-sched-anesthesia.ts +25 -1
- package/models/fee-sched-detail.ts +28 -4
- package/models/fee-sched-modifier-discount.ts +27 -3
- package/models/fee-sched-modifier-exclude.ts +25 -1
- package/models/fee-sched-procedure-group-adjust.ts +30 -6
- package/models/fee-sched-provider-type-discount.ts +27 -3
- package/models/idcode-value.ts +25 -1
- package/models/index.ts +20 -0
- package/models/prem-payment-file-format.ts +14 -8
- package/models/sub-enrollment-plan.ts +6 -0
- package/models/vbafunding-account-claim-info-list-vbaresponse.ts +45 -0
- package/models/vbafunding-account-claim-info.ts +276 -0
- package/package.json +1 -1
|
@@ -38,20 +38,16 @@ export const FeeScheduleModifierDiscountsApiAxiosParamCreator = function (config
|
|
|
38
38
|
* Creates a new FeeSchedModifierDiscount
|
|
39
39
|
* @summary Create FeeSchedModifierDiscount
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {string} feeSched Fee Sched
|
|
42
41
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
43
42
|
* @param {*} [options] Override http request option.
|
|
44
43
|
* @throws {RequiredError}
|
|
45
44
|
*/
|
|
46
|
-
createFeeSchedModifierDiscount: async (vbasoftwareDatabase: string,
|
|
45
|
+
createFeeSchedModifierDiscount: async (vbasoftwareDatabase: string, feeSchedModifierDiscount: FeeSchedModifierDiscount, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
47
|
assertParamExists('createFeeSchedModifierDiscount', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
50
|
-
assertParamExists('createFeeSchedModifierDiscount', 'feeSched', feeSched)
|
|
51
48
|
// verify required parameter 'feeSchedModifierDiscount' is not null or undefined
|
|
52
49
|
assertParamExists('createFeeSchedModifierDiscount', 'feeSchedModifierDiscount', feeSchedModifierDiscount)
|
|
53
|
-
const localVarPath = `/fee-
|
|
54
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
50
|
+
const localVarPath = `/fee-schedule-modifier-discounts`;
|
|
55
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
57
53
|
let baseOptions;
|
|
@@ -92,20 +88,16 @@ export const FeeScheduleModifierDiscountsApiAxiosParamCreator = function (config
|
|
|
92
88
|
* Deletes an FeeSchedModifierDiscount
|
|
93
89
|
* @summary Delete FeeSchedModifierDiscount
|
|
94
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
95
|
-
* @param {string} feeSched Fee Sched
|
|
96
91
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
97
92
|
* @param {*} [options] Override http request option.
|
|
98
93
|
* @throws {RequiredError}
|
|
99
94
|
*/
|
|
100
|
-
deleteFeeSchedModifierDiscount: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteFeeSchedModifierDiscount: async (vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
101
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
102
97
|
assertParamExists('deleteFeeSchedModifierDiscount', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
103
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
104
|
-
assertParamExists('deleteFeeSchedModifierDiscount', 'feeSched', feeSched)
|
|
105
98
|
// verify required parameter 'feeSchedModifierDiscountKey' is not null or undefined
|
|
106
99
|
assertParamExists('deleteFeeSchedModifierDiscount', 'feeSchedModifierDiscountKey', feeSchedModifierDiscountKey)
|
|
107
|
-
const localVarPath = `/fee-
|
|
108
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
100
|
+
const localVarPath = `/fee-schedule-modifier-discounts/{feeSchedModifierDiscountKey}`
|
|
109
101
|
.replace(`{${"feeSchedModifierDiscountKey"}}`, encodeURIComponent(String(feeSchedModifierDiscountKey)));
|
|
110
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
111
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -144,20 +136,16 @@ export const FeeScheduleModifierDiscountsApiAxiosParamCreator = function (config
|
|
|
144
136
|
* Gets FeeSchedModifierDiscount
|
|
145
137
|
* @summary Get FeeSchedModifierDiscount
|
|
146
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
147
|
-
* @param {string} feeSched Fee Sched
|
|
148
139
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
149
140
|
* @param {*} [options] Override http request option.
|
|
150
141
|
* @throws {RequiredError}
|
|
151
142
|
*/
|
|
152
|
-
getFeeSchedModifierDiscount: async (vbasoftwareDatabase: string,
|
|
143
|
+
getFeeSchedModifierDiscount: async (vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
153
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
154
145
|
assertParamExists('getFeeSchedModifierDiscount', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
155
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
156
|
-
assertParamExists('getFeeSchedModifierDiscount', 'feeSched', feeSched)
|
|
157
146
|
// verify required parameter 'feeSchedModifierDiscountKey' is not null or undefined
|
|
158
147
|
assertParamExists('getFeeSchedModifierDiscount', 'feeSchedModifierDiscountKey', feeSchedModifierDiscountKey)
|
|
159
|
-
const localVarPath = `/fee-
|
|
160
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
148
|
+
const localVarPath = `/fee-schedule-modifier-discounts/{feeSchedModifierDiscountKey}`
|
|
161
149
|
.replace(`{${"feeSchedModifierDiscountKey"}}`, encodeURIComponent(String(feeSchedModifierDiscountKey)));
|
|
162
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
163
151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -193,22 +181,19 @@ export const FeeScheduleModifierDiscountsApiAxiosParamCreator = function (config
|
|
|
193
181
|
};
|
|
194
182
|
},
|
|
195
183
|
/**
|
|
196
|
-
* Lists all FeeSchedModifierDiscount
|
|
184
|
+
* Lists all FeeSchedModifierDiscount
|
|
197
185
|
* @summary List FeeSchedModifierDiscount
|
|
198
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
199
|
-
* @param {string}
|
|
187
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
200
188
|
* @param {number} [page] Page
|
|
201
189
|
* @param {number} [pageSize] Page Size
|
|
202
190
|
* @param {*} [options] Override http request option.
|
|
203
191
|
* @throws {RequiredError}
|
|
204
192
|
*/
|
|
205
|
-
listFeeSchedModifierDiscount: async (vbasoftwareDatabase: string,
|
|
193
|
+
listFeeSchedModifierDiscount: async (vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
206
194
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
207
195
|
assertParamExists('listFeeSchedModifierDiscount', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
208
|
-
|
|
209
|
-
assertParamExists('listFeeSchedModifierDiscount', 'feeSched', feeSched)
|
|
210
|
-
const localVarPath = `/fee-schedules/{feeSched}/modifier-discounts`
|
|
211
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
196
|
+
const localVarPath = `/fee-schedule-modifier-discounts`;
|
|
212
197
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
213
198
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
214
199
|
let baseOptions;
|
|
@@ -227,6 +212,10 @@ export const FeeScheduleModifierDiscountsApiAxiosParamCreator = function (config
|
|
|
227
212
|
// http bearer authentication required
|
|
228
213
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
229
214
|
|
|
215
|
+
if (sortBy !== undefined) {
|
|
216
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
217
|
+
}
|
|
218
|
+
|
|
230
219
|
if (page !== undefined) {
|
|
231
220
|
localVarQueryParameter['page'] = page;
|
|
232
221
|
}
|
|
@@ -254,20 +243,16 @@ export const FeeScheduleModifierDiscountsApiAxiosParamCreator = function (config
|
|
|
254
243
|
* Create or Update multiple FeeSchedModifierDiscount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
255
244
|
* @summary Create or Update Batch FeeSchedModifierDiscount
|
|
256
245
|
* @param {string} vbasoftwareDatabase Target database
|
|
257
|
-
* @param {string} feeSched Fee Sched
|
|
258
246
|
* @param {Array<FeeSchedModifierDiscount>} feeSchedModifierDiscount
|
|
259
247
|
* @param {*} [options] Override http request option.
|
|
260
248
|
* @throws {RequiredError}
|
|
261
249
|
*/
|
|
262
|
-
updateBatchFeeSchedModifierDiscount: async (vbasoftwareDatabase: string,
|
|
250
|
+
updateBatchFeeSchedModifierDiscount: async (vbasoftwareDatabase: string, feeSchedModifierDiscount: Array<FeeSchedModifierDiscount>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
263
251
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
264
252
|
assertParamExists('updateBatchFeeSchedModifierDiscount', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
265
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
266
|
-
assertParamExists('updateBatchFeeSchedModifierDiscount', 'feeSched', feeSched)
|
|
267
253
|
// verify required parameter 'feeSchedModifierDiscount' is not null or undefined
|
|
268
254
|
assertParamExists('updateBatchFeeSchedModifierDiscount', 'feeSchedModifierDiscount', feeSchedModifierDiscount)
|
|
269
|
-
const localVarPath = `/fee-
|
|
270
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
|
|
255
|
+
const localVarPath = `/fee-schedule-modifier-discounts-batch`;
|
|
271
256
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
272
257
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
273
258
|
let baseOptions;
|
|
@@ -308,23 +293,19 @@ export const FeeScheduleModifierDiscountsApiAxiosParamCreator = function (config
|
|
|
308
293
|
* Updates a specific FeeSchedModifierDiscount.
|
|
309
294
|
* @summary Update FeeSchedModifierDiscount
|
|
310
295
|
* @param {string} vbasoftwareDatabase Target database
|
|
311
|
-
* @param {string} feeSched Fee Sched
|
|
312
296
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
313
297
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
314
298
|
* @param {*} [options] Override http request option.
|
|
315
299
|
* @throws {RequiredError}
|
|
316
300
|
*/
|
|
317
|
-
updateFeeSchedModifierDiscount: async (vbasoftwareDatabase: string,
|
|
301
|
+
updateFeeSchedModifierDiscount: async (vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, feeSchedModifierDiscount: FeeSchedModifierDiscount, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
318
302
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
319
303
|
assertParamExists('updateFeeSchedModifierDiscount', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
320
|
-
// verify required parameter 'feeSched' is not null or undefined
|
|
321
|
-
assertParamExists('updateFeeSchedModifierDiscount', 'feeSched', feeSched)
|
|
322
304
|
// verify required parameter 'feeSchedModifierDiscountKey' is not null or undefined
|
|
323
305
|
assertParamExists('updateFeeSchedModifierDiscount', 'feeSchedModifierDiscountKey', feeSchedModifierDiscountKey)
|
|
324
306
|
// verify required parameter 'feeSchedModifierDiscount' is not null or undefined
|
|
325
307
|
assertParamExists('updateFeeSchedModifierDiscount', 'feeSchedModifierDiscount', feeSchedModifierDiscount)
|
|
326
|
-
const localVarPath = `/fee-
|
|
327
|
-
.replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
|
|
308
|
+
const localVarPath = `/fee-schedule-modifier-discounts/{feeSchedModifierDiscountKey}`
|
|
328
309
|
.replace(`{${"feeSchedModifierDiscountKey"}}`, encodeURIComponent(String(feeSchedModifierDiscountKey)));
|
|
329
310
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
330
311
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -376,80 +357,75 @@ export const FeeScheduleModifierDiscountsApiFp = function(configuration?: Config
|
|
|
376
357
|
* Creates a new FeeSchedModifierDiscount
|
|
377
358
|
* @summary Create FeeSchedModifierDiscount
|
|
378
359
|
* @param {string} vbasoftwareDatabase Target database
|
|
379
|
-
* @param {string} feeSched Fee Sched
|
|
380
360
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
381
361
|
* @param {*} [options] Override http request option.
|
|
382
362
|
* @throws {RequiredError}
|
|
383
363
|
*/
|
|
384
|
-
async createFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
385
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
364
|
+
async createFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscount: FeeSchedModifierDiscount, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierDiscountVBAResponse>> {
|
|
365
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscount, options);
|
|
386
366
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
387
367
|
},
|
|
388
368
|
/**
|
|
389
369
|
* Deletes an FeeSchedModifierDiscount
|
|
390
370
|
* @summary Delete FeeSchedModifierDiscount
|
|
391
371
|
* @param {string} vbasoftwareDatabase Target database
|
|
392
|
-
* @param {string} feeSched Fee Sched
|
|
393
372
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
394
373
|
* @param {*} [options] Override http request option.
|
|
395
374
|
* @throws {RequiredError}
|
|
396
375
|
*/
|
|
397
|
-
async deleteFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
398
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
376
|
+
async deleteFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
377
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, options);
|
|
399
378
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
400
379
|
},
|
|
401
380
|
/**
|
|
402
381
|
* Gets FeeSchedModifierDiscount
|
|
403
382
|
* @summary Get FeeSchedModifierDiscount
|
|
404
383
|
* @param {string} vbasoftwareDatabase Target database
|
|
405
|
-
* @param {string} feeSched Fee Sched
|
|
406
384
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
407
385
|
* @param {*} [options] Override http request option.
|
|
408
386
|
* @throws {RequiredError}
|
|
409
387
|
*/
|
|
410
|
-
async getFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
411
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
388
|
+
async getFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierDiscountVBAResponse>> {
|
|
389
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, options);
|
|
412
390
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
413
391
|
},
|
|
414
392
|
/**
|
|
415
|
-
* Lists all FeeSchedModifierDiscount
|
|
393
|
+
* Lists all FeeSchedModifierDiscount
|
|
416
394
|
* @summary List FeeSchedModifierDiscount
|
|
417
395
|
* @param {string} vbasoftwareDatabase Target database
|
|
418
|
-
* @param {string}
|
|
396
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
419
397
|
* @param {number} [page] Page
|
|
420
398
|
* @param {number} [pageSize] Page Size
|
|
421
399
|
* @param {*} [options] Override http request option.
|
|
422
400
|
* @throws {RequiredError}
|
|
423
401
|
*/
|
|
424
|
-
async listFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
425
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
402
|
+
async listFeeSchedModifierDiscount(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierDiscountListVBAResponse>> {
|
|
403
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listFeeSchedModifierDiscount(vbasoftwareDatabase, sortBy, page, pageSize, options);
|
|
426
404
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
427
405
|
},
|
|
428
406
|
/**
|
|
429
407
|
* Create or Update multiple FeeSchedModifierDiscount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
430
408
|
* @summary Create or Update Batch FeeSchedModifierDiscount
|
|
431
409
|
* @param {string} vbasoftwareDatabase Target database
|
|
432
|
-
* @param {string} feeSched Fee Sched
|
|
433
410
|
* @param {Array<FeeSchedModifierDiscount>} feeSchedModifierDiscount
|
|
434
411
|
* @param {*} [options] Override http request option.
|
|
435
412
|
* @throws {RequiredError}
|
|
436
413
|
*/
|
|
437
|
-
async updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
438
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
414
|
+
async updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscount: Array<FeeSchedModifierDiscount>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
415
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscount, options);
|
|
439
416
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
440
417
|
},
|
|
441
418
|
/**
|
|
442
419
|
* Updates a specific FeeSchedModifierDiscount.
|
|
443
420
|
* @summary Update FeeSchedModifierDiscount
|
|
444
421
|
* @param {string} vbasoftwareDatabase Target database
|
|
445
|
-
* @param {string} feeSched Fee Sched
|
|
446
422
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
447
423
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
448
424
|
* @param {*} [options] Override http request option.
|
|
449
425
|
* @throws {RequiredError}
|
|
450
426
|
*/
|
|
451
|
-
async updateFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
452
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
427
|
+
async updateFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, feeSchedModifierDiscount: FeeSchedModifierDiscount, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierDiscountVBAResponse>> {
|
|
428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, feeSchedModifierDiscount, options);
|
|
453
429
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
454
430
|
},
|
|
455
431
|
}
|
|
@@ -466,75 +442,70 @@ export const FeeScheduleModifierDiscountsApiFactory = function (configuration?:
|
|
|
466
442
|
* Creates a new FeeSchedModifierDiscount
|
|
467
443
|
* @summary Create FeeSchedModifierDiscount
|
|
468
444
|
* @param {string} vbasoftwareDatabase Target database
|
|
469
|
-
* @param {string} feeSched Fee Sched
|
|
470
445
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
471
446
|
* @param {*} [options] Override http request option.
|
|
472
447
|
* @throws {RequiredError}
|
|
473
448
|
*/
|
|
474
|
-
createFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
475
|
-
return localVarFp.createFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
449
|
+
createFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscount: FeeSchedModifierDiscount, options?: any): AxiosPromise<FeeSchedModifierDiscountVBAResponse> {
|
|
450
|
+
return localVarFp.createFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscount, options).then((request) => request(axios, basePath));
|
|
476
451
|
},
|
|
477
452
|
/**
|
|
478
453
|
* Deletes an FeeSchedModifierDiscount
|
|
479
454
|
* @summary Delete FeeSchedModifierDiscount
|
|
480
455
|
* @param {string} vbasoftwareDatabase Target database
|
|
481
|
-
* @param {string} feeSched Fee Sched
|
|
482
456
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
483
457
|
* @param {*} [options] Override http request option.
|
|
484
458
|
* @throws {RequiredError}
|
|
485
459
|
*/
|
|
486
|
-
deleteFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
487
|
-
return localVarFp.deleteFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
460
|
+
deleteFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options?: any): AxiosPromise<void> {
|
|
461
|
+
return localVarFp.deleteFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, options).then((request) => request(axios, basePath));
|
|
488
462
|
},
|
|
489
463
|
/**
|
|
490
464
|
* Gets FeeSchedModifierDiscount
|
|
491
465
|
* @summary Get FeeSchedModifierDiscount
|
|
492
466
|
* @param {string} vbasoftwareDatabase Target database
|
|
493
|
-
* @param {string} feeSched Fee Sched
|
|
494
467
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
495
468
|
* @param {*} [options] Override http request option.
|
|
496
469
|
* @throws {RequiredError}
|
|
497
470
|
*/
|
|
498
|
-
getFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
499
|
-
return localVarFp.getFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
471
|
+
getFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options?: any): AxiosPromise<FeeSchedModifierDiscountVBAResponse> {
|
|
472
|
+
return localVarFp.getFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, options).then((request) => request(axios, basePath));
|
|
500
473
|
},
|
|
501
474
|
/**
|
|
502
|
-
* Lists all FeeSchedModifierDiscount
|
|
475
|
+
* Lists all FeeSchedModifierDiscount
|
|
503
476
|
* @summary List FeeSchedModifierDiscount
|
|
504
477
|
* @param {string} vbasoftwareDatabase Target database
|
|
505
|
-
* @param {string}
|
|
478
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
506
479
|
* @param {number} [page] Page
|
|
507
480
|
* @param {number} [pageSize] Page Size
|
|
508
481
|
* @param {*} [options] Override http request option.
|
|
509
482
|
* @throws {RequiredError}
|
|
510
483
|
*/
|
|
511
|
-
listFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
512
|
-
return localVarFp.listFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
484
|
+
listFeeSchedModifierDiscount(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<FeeSchedModifierDiscountListVBAResponse> {
|
|
485
|
+
return localVarFp.listFeeSchedModifierDiscount(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
513
486
|
},
|
|
514
487
|
/**
|
|
515
488
|
* Create or Update multiple FeeSchedModifierDiscount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
516
489
|
* @summary Create or Update Batch FeeSchedModifierDiscount
|
|
517
490
|
* @param {string} vbasoftwareDatabase Target database
|
|
518
|
-
* @param {string} feeSched Fee Sched
|
|
519
491
|
* @param {Array<FeeSchedModifierDiscount>} feeSchedModifierDiscount
|
|
520
492
|
* @param {*} [options] Override http request option.
|
|
521
493
|
* @throws {RequiredError}
|
|
522
494
|
*/
|
|
523
|
-
updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
524
|
-
return localVarFp.updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
495
|
+
updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscount: Array<FeeSchedModifierDiscount>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
496
|
+
return localVarFp.updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscount, options).then((request) => request(axios, basePath));
|
|
525
497
|
},
|
|
526
498
|
/**
|
|
527
499
|
* Updates a specific FeeSchedModifierDiscount.
|
|
528
500
|
* @summary Update FeeSchedModifierDiscount
|
|
529
501
|
* @param {string} vbasoftwareDatabase Target database
|
|
530
|
-
* @param {string} feeSched Fee Sched
|
|
531
502
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
532
503
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
533
504
|
* @param {*} [options] Override http request option.
|
|
534
505
|
* @throws {RequiredError}
|
|
535
506
|
*/
|
|
536
|
-
updateFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
537
|
-
return localVarFp.updateFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
507
|
+
updateFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, feeSchedModifierDiscount: FeeSchedModifierDiscount, options?: any): AxiosPromise<FeeSchedModifierDiscountVBAResponse> {
|
|
508
|
+
return localVarFp.updateFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, feeSchedModifierDiscount, options).then((request) => request(axios, basePath));
|
|
538
509
|
},
|
|
539
510
|
};
|
|
540
511
|
};
|
|
@@ -549,75 +520,70 @@ export interface FeeScheduleModifierDiscountsApiInterface {
|
|
|
549
520
|
* Creates a new FeeSchedModifierDiscount
|
|
550
521
|
* @summary Create FeeSchedModifierDiscount
|
|
551
522
|
* @param {string} vbasoftwareDatabase Target database
|
|
552
|
-
* @param {string} feeSched Fee Sched
|
|
553
523
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
554
524
|
* @param {*} [options] Override http request option.
|
|
555
525
|
* @throws {RequiredError}
|
|
556
526
|
* @memberof FeeScheduleModifierDiscountsApiInterface
|
|
557
527
|
*/
|
|
558
|
-
createFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
528
|
+
createFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscount: FeeSchedModifierDiscount, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierDiscountVBAResponse>;
|
|
559
529
|
|
|
560
530
|
/**
|
|
561
531
|
* Deletes an FeeSchedModifierDiscount
|
|
562
532
|
* @summary Delete FeeSchedModifierDiscount
|
|
563
533
|
* @param {string} vbasoftwareDatabase Target database
|
|
564
|
-
* @param {string} feeSched Fee Sched
|
|
565
534
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
566
535
|
* @param {*} [options] Override http request option.
|
|
567
536
|
* @throws {RequiredError}
|
|
568
537
|
* @memberof FeeScheduleModifierDiscountsApiInterface
|
|
569
538
|
*/
|
|
570
|
-
deleteFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
539
|
+
deleteFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
571
540
|
|
|
572
541
|
/**
|
|
573
542
|
* Gets FeeSchedModifierDiscount
|
|
574
543
|
* @summary Get FeeSchedModifierDiscount
|
|
575
544
|
* @param {string} vbasoftwareDatabase Target database
|
|
576
|
-
* @param {string} feeSched Fee Sched
|
|
577
545
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
578
546
|
* @param {*} [options] Override http request option.
|
|
579
547
|
* @throws {RequiredError}
|
|
580
548
|
* @memberof FeeScheduleModifierDiscountsApiInterface
|
|
581
549
|
*/
|
|
582
|
-
getFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
550
|
+
getFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierDiscountVBAResponse>;
|
|
583
551
|
|
|
584
552
|
/**
|
|
585
|
-
* Lists all FeeSchedModifierDiscount
|
|
553
|
+
* Lists all FeeSchedModifierDiscount
|
|
586
554
|
* @summary List FeeSchedModifierDiscount
|
|
587
555
|
* @param {string} vbasoftwareDatabase Target database
|
|
588
|
-
* @param {string}
|
|
556
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
589
557
|
* @param {number} [page] Page
|
|
590
558
|
* @param {number} [pageSize] Page Size
|
|
591
559
|
* @param {*} [options] Override http request option.
|
|
592
560
|
* @throws {RequiredError}
|
|
593
561
|
* @memberof FeeScheduleModifierDiscountsApiInterface
|
|
594
562
|
*/
|
|
595
|
-
listFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
563
|
+
listFeeSchedModifierDiscount(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierDiscountListVBAResponse>;
|
|
596
564
|
|
|
597
565
|
/**
|
|
598
566
|
* Create or Update multiple FeeSchedModifierDiscount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
599
567
|
* @summary Create or Update Batch FeeSchedModifierDiscount
|
|
600
568
|
* @param {string} vbasoftwareDatabase Target database
|
|
601
|
-
* @param {string} feeSched Fee Sched
|
|
602
569
|
* @param {Array<FeeSchedModifierDiscount>} feeSchedModifierDiscount
|
|
603
570
|
* @param {*} [options] Override http request option.
|
|
604
571
|
* @throws {RequiredError}
|
|
605
572
|
* @memberof FeeScheduleModifierDiscountsApiInterface
|
|
606
573
|
*/
|
|
607
|
-
updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
574
|
+
updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscount: Array<FeeSchedModifierDiscount>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
608
575
|
|
|
609
576
|
/**
|
|
610
577
|
* Updates a specific FeeSchedModifierDiscount.
|
|
611
578
|
* @summary Update FeeSchedModifierDiscount
|
|
612
579
|
* @param {string} vbasoftwareDatabase Target database
|
|
613
|
-
* @param {string} feeSched Fee Sched
|
|
614
580
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
615
581
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
616
582
|
* @param {*} [options] Override http request option.
|
|
617
583
|
* @throws {RequiredError}
|
|
618
584
|
* @memberof FeeScheduleModifierDiscountsApiInterface
|
|
619
585
|
*/
|
|
620
|
-
updateFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
586
|
+
updateFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, feeSchedModifierDiscount: FeeSchedModifierDiscount, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierDiscountVBAResponse>;
|
|
621
587
|
|
|
622
588
|
}
|
|
623
589
|
|
|
@@ -632,85 +598,80 @@ export class FeeScheduleModifierDiscountsApi extends BaseAPI implements FeeSched
|
|
|
632
598
|
* Creates a new FeeSchedModifierDiscount
|
|
633
599
|
* @summary Create FeeSchedModifierDiscount
|
|
634
600
|
* @param {string} vbasoftwareDatabase Target database
|
|
635
|
-
* @param {string} feeSched Fee Sched
|
|
636
601
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
637
602
|
* @param {*} [options] Override http request option.
|
|
638
603
|
* @throws {RequiredError}
|
|
639
604
|
* @memberof FeeScheduleModifierDiscountsApi
|
|
640
605
|
*/
|
|
641
|
-
public createFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
642
|
-
return FeeScheduleModifierDiscountsApiFp(this.configuration).createFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
606
|
+
public createFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscount: FeeSchedModifierDiscount, options?: AxiosRequestConfig) {
|
|
607
|
+
return FeeScheduleModifierDiscountsApiFp(this.configuration).createFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscount, options).then((request) => request(this.axios, this.basePath));
|
|
643
608
|
}
|
|
644
609
|
|
|
645
610
|
/**
|
|
646
611
|
* Deletes an FeeSchedModifierDiscount
|
|
647
612
|
* @summary Delete FeeSchedModifierDiscount
|
|
648
613
|
* @param {string} vbasoftwareDatabase Target database
|
|
649
|
-
* @param {string} feeSched Fee Sched
|
|
650
614
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
651
615
|
* @param {*} [options] Override http request option.
|
|
652
616
|
* @throws {RequiredError}
|
|
653
617
|
* @memberof FeeScheduleModifierDiscountsApi
|
|
654
618
|
*/
|
|
655
|
-
public deleteFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
656
|
-
return FeeScheduleModifierDiscountsApiFp(this.configuration).deleteFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
619
|
+
public deleteFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options?: AxiosRequestConfig) {
|
|
620
|
+
return FeeScheduleModifierDiscountsApiFp(this.configuration).deleteFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, options).then((request) => request(this.axios, this.basePath));
|
|
657
621
|
}
|
|
658
622
|
|
|
659
623
|
/**
|
|
660
624
|
* Gets FeeSchedModifierDiscount
|
|
661
625
|
* @summary Get FeeSchedModifierDiscount
|
|
662
626
|
* @param {string} vbasoftwareDatabase Target database
|
|
663
|
-
* @param {string} feeSched Fee Sched
|
|
664
627
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
665
628
|
* @param {*} [options] Override http request option.
|
|
666
629
|
* @throws {RequiredError}
|
|
667
630
|
* @memberof FeeScheduleModifierDiscountsApi
|
|
668
631
|
*/
|
|
669
|
-
public getFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
670
|
-
return FeeScheduleModifierDiscountsApiFp(this.configuration).getFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
632
|
+
public getFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, options?: AxiosRequestConfig) {
|
|
633
|
+
return FeeScheduleModifierDiscountsApiFp(this.configuration).getFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, options).then((request) => request(this.axios, this.basePath));
|
|
671
634
|
}
|
|
672
635
|
|
|
673
636
|
/**
|
|
674
|
-
* Lists all FeeSchedModifierDiscount
|
|
637
|
+
* Lists all FeeSchedModifierDiscount
|
|
675
638
|
* @summary List FeeSchedModifierDiscount
|
|
676
639
|
* @param {string} vbasoftwareDatabase Target database
|
|
677
|
-
* @param {string}
|
|
640
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
678
641
|
* @param {number} [page] Page
|
|
679
642
|
* @param {number} [pageSize] Page Size
|
|
680
643
|
* @param {*} [options] Override http request option.
|
|
681
644
|
* @throws {RequiredError}
|
|
682
645
|
* @memberof FeeScheduleModifierDiscountsApi
|
|
683
646
|
*/
|
|
684
|
-
public listFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
685
|
-
return FeeScheduleModifierDiscountsApiFp(this.configuration).listFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
647
|
+
public listFeeSchedModifierDiscount(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
648
|
+
return FeeScheduleModifierDiscountsApiFp(this.configuration).listFeeSchedModifierDiscount(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
686
649
|
}
|
|
687
650
|
|
|
688
651
|
/**
|
|
689
652
|
* Create or Update multiple FeeSchedModifierDiscount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
690
653
|
* @summary Create or Update Batch FeeSchedModifierDiscount
|
|
691
654
|
* @param {string} vbasoftwareDatabase Target database
|
|
692
|
-
* @param {string} feeSched Fee Sched
|
|
693
655
|
* @param {Array<FeeSchedModifierDiscount>} feeSchedModifierDiscount
|
|
694
656
|
* @param {*} [options] Override http request option.
|
|
695
657
|
* @throws {RequiredError}
|
|
696
658
|
* @memberof FeeScheduleModifierDiscountsApi
|
|
697
659
|
*/
|
|
698
|
-
public updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
699
|
-
return FeeScheduleModifierDiscountsApiFp(this.configuration).updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
660
|
+
public updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscount: Array<FeeSchedModifierDiscount>, options?: AxiosRequestConfig) {
|
|
661
|
+
return FeeScheduleModifierDiscountsApiFp(this.configuration).updateBatchFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscount, options).then((request) => request(this.axios, this.basePath));
|
|
700
662
|
}
|
|
701
663
|
|
|
702
664
|
/**
|
|
703
665
|
* Updates a specific FeeSchedModifierDiscount.
|
|
704
666
|
* @summary Update FeeSchedModifierDiscount
|
|
705
667
|
* @param {string} vbasoftwareDatabase Target database
|
|
706
|
-
* @param {string} feeSched Fee Sched
|
|
707
668
|
* @param {number} feeSchedModifierDiscountKey FeeSchedModifierDiscount Key
|
|
708
669
|
* @param {FeeSchedModifierDiscount} feeSchedModifierDiscount
|
|
709
670
|
* @param {*} [options] Override http request option.
|
|
710
671
|
* @throws {RequiredError}
|
|
711
672
|
* @memberof FeeScheduleModifierDiscountsApi
|
|
712
673
|
*/
|
|
713
|
-
public updateFeeSchedModifierDiscount(vbasoftwareDatabase: string,
|
|
714
|
-
return FeeScheduleModifierDiscountsApiFp(this.configuration).updateFeeSchedModifierDiscount(vbasoftwareDatabase,
|
|
674
|
+
public updateFeeSchedModifierDiscount(vbasoftwareDatabase: string, feeSchedModifierDiscountKey: number, feeSchedModifierDiscount: FeeSchedModifierDiscount, options?: AxiosRequestConfig) {
|
|
675
|
+
return FeeScheduleModifierDiscountsApiFp(this.configuration).updateFeeSchedModifierDiscount(vbasoftwareDatabase, feeSchedModifierDiscountKey, feeSchedModifierDiscount, options).then((request) => request(this.axios, this.basePath));
|
|
715
676
|
}
|
|
716
677
|
}
|