@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.
Files changed (51) hide show
  1. package/.openapi-generator/FILES +27 -1
  2. package/api/claim-batch-logs-api.ts +668 -0
  3. package/api/claim-batch-references-api.ts +764 -0
  4. package/api/claim-batches-api.ts +17 -8
  5. package/api/error-category-api.ts +668 -0
  6. package/api/error-category-types-api.ts +725 -0
  7. package/api/error-severity-api.ts +668 -0
  8. package/api/error-type-api.ts +668 -0
  9. package/api/{fee-schedule-anesthesia-api.ts → fee-schedule-anesthesias-api.ts} +94 -133
  10. package/api/fee-schedule-details-api.ts +68 -107
  11. package/api/fee-schedule-modifier-discounts-api.ts +68 -107
  12. package/api/fee-schedule-modifier-excludes-api.ts +68 -107
  13. package/api/fee-schedule-procedure-group-adjustments-api.ts +68 -107
  14. package/api/fee-schedule-provider-type-discounts-api.ts +68 -107
  15. package/api/funding-request-claims-api.ts +8 -26
  16. package/api/member-account-plans-api.ts +10 -10
  17. package/api/payor-accounts-api.ts +105 -0
  18. package/api/user-api.ts +98 -0
  19. package/api.ts +7 -1
  20. package/models/claim-batch-log-list-vbaresponse.ts +45 -0
  21. package/models/claim-batch-log-vbaresponse.ts +45 -0
  22. package/models/claim-batch-log.ts +96 -0
  23. package/models/claim-batch-reference-list-vbaresponse.ts +45 -0
  24. package/models/claim-batch-reference-vbaresponse.ts +45 -0
  25. package/models/claim-batch-reference.ts +84 -0
  26. package/models/company-data.ts +24 -0
  27. package/models/error-category-list-vbaresponse.ts +45 -0
  28. package/models/error-category-type-list-vbaresponse.ts +45 -0
  29. package/models/error-category-type-vbaresponse.ts +45 -0
  30. package/models/error-category-type.ts +78 -0
  31. package/models/error-category-vbaresponse.ts +45 -0
  32. package/models/error-category.ts +60 -0
  33. package/models/error-severity-list-vbaresponse.ts +45 -0
  34. package/models/error-severity-vbaresponse.ts +45 -0
  35. package/models/error-severity.ts +60 -0
  36. package/models/error-type-list-vbaresponse.ts +45 -0
  37. package/models/error-type-vbaresponse.ts +45 -0
  38. package/models/error-type.ts +60 -0
  39. package/models/fee-sched-anesthesia.ts +25 -1
  40. package/models/fee-sched-detail.ts +28 -4
  41. package/models/fee-sched-modifier-discount.ts +27 -3
  42. package/models/fee-sched-modifier-exclude.ts +25 -1
  43. package/models/fee-sched-procedure-group-adjust.ts +30 -6
  44. package/models/fee-sched-provider-type-discount.ts +27 -3
  45. package/models/idcode-value.ts +25 -1
  46. package/models/index.ts +20 -0
  47. package/models/prem-payment-file-format.ts +14 -8
  48. package/models/sub-enrollment-plan.ts +6 -0
  49. package/models/vbafunding-account-claim-info-list-vbaresponse.ts +45 -0
  50. package/models/vbafunding-account-claim-info.ts +276 -0
  51. package/package.json +1 -1
@@ -38,20 +38,16 @@ export const FeeScheduleModifierExcludesApiAxiosParamCreator = function (configu
38
38
  * Creates a new FeeSchedModifierExclude
39
39
  * @summary Create FeeSchedModifierExclude
40
40
  * @param {string} vbasoftwareDatabase Target database
41
- * @param {string} feeSched Fee Sched
42
41
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
43
42
  * @param {*} [options] Override http request option.
44
43
  * @throws {RequiredError}
45
44
  */
46
- createFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: FeeSchedModifierExclude, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
45
+ createFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSchedModifierExclude: FeeSchedModifierExclude, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
47
46
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
48
47
  assertParamExists('createFeeSchedModifierExclude', 'vbasoftwareDatabase', vbasoftwareDatabase)
49
- // verify required parameter 'feeSched' is not null or undefined
50
- assertParamExists('createFeeSchedModifierExclude', 'feeSched', feeSched)
51
48
  // verify required parameter 'feeSchedModifierExclude' is not null or undefined
52
49
  assertParamExists('createFeeSchedModifierExclude', 'feeSchedModifierExclude', feeSchedModifierExclude)
53
- const localVarPath = `/fee-schedules/{feeSched}/modifier-excludes`
54
- .replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
50
+ const localVarPath = `/fee-schedule-modifier-excludes`;
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 FeeScheduleModifierExcludesApiAxiosParamCreator = function (configu
92
88
  * Deletes an FeeSchedModifierExclude
93
89
  * @summary Delete FeeSchedModifierExclude
94
90
  * @param {string} vbasoftwareDatabase Target database
95
- * @param {string} feeSched Fee Sched
96
91
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
97
92
  * @param {*} [options] Override http request option.
98
93
  * @throws {RequiredError}
99
94
  */
100
- deleteFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
95
+ deleteFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
101
96
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
102
97
  assertParamExists('deleteFeeSchedModifierExclude', 'vbasoftwareDatabase', vbasoftwareDatabase)
103
- // verify required parameter 'feeSched' is not null or undefined
104
- assertParamExists('deleteFeeSchedModifierExclude', 'feeSched', feeSched)
105
98
  // verify required parameter 'feeSchedModifierExcludeKey' is not null or undefined
106
99
  assertParamExists('deleteFeeSchedModifierExclude', 'feeSchedModifierExcludeKey', feeSchedModifierExcludeKey)
107
- const localVarPath = `/fee-schedules/{feeSched}/modifier-excludes/{feeSchedModifierExcludeKey}`
108
- .replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
100
+ const localVarPath = `/fee-schedule-modifier-excludes/{feeSchedModifierExcludeKey}`
109
101
  .replace(`{${"feeSchedModifierExcludeKey"}}`, encodeURIComponent(String(feeSchedModifierExcludeKey)));
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 FeeScheduleModifierExcludesApiAxiosParamCreator = function (configu
144
136
  * Gets FeeSchedModifierExclude
145
137
  * @summary Get FeeSchedModifierExclude
146
138
  * @param {string} vbasoftwareDatabase Target database
147
- * @param {string} feeSched Fee Sched
148
139
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
149
140
  * @param {*} [options] Override http request option.
150
141
  * @throws {RequiredError}
151
142
  */
152
- getFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
143
+ getFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
153
144
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
154
145
  assertParamExists('getFeeSchedModifierExclude', 'vbasoftwareDatabase', vbasoftwareDatabase)
155
- // verify required parameter 'feeSched' is not null or undefined
156
- assertParamExists('getFeeSchedModifierExclude', 'feeSched', feeSched)
157
146
  // verify required parameter 'feeSchedModifierExcludeKey' is not null or undefined
158
147
  assertParamExists('getFeeSchedModifierExclude', 'feeSchedModifierExcludeKey', feeSchedModifierExcludeKey)
159
- const localVarPath = `/fee-schedules/{feeSched}/modifier-excludes/{feeSchedModifierExcludeKey}`
160
- .replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
148
+ const localVarPath = `/fee-schedule-modifier-excludes/{feeSchedModifierExcludeKey}`
161
149
  .replace(`{${"feeSchedModifierExcludeKey"}}`, encodeURIComponent(String(feeSchedModifierExcludeKey)));
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 FeeScheduleModifierExcludesApiAxiosParamCreator = function (configu
193
181
  };
194
182
  },
195
183
  /**
196
- * Lists all FeeSchedModifierExclude for the given feeSched
184
+ * Lists all FeeSchedModifierExclude
197
185
  * @summary List FeeSchedModifierExclude
198
186
  * @param {string} vbasoftwareDatabase Target database
199
- * @param {string} feeSched Fee Sched
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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
- listFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSched: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
193
+ listFeeSchedModifierExclude: 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('listFeeSchedModifierExclude', 'vbasoftwareDatabase', vbasoftwareDatabase)
208
- // verify required parameter 'feeSched' is not null or undefined
209
- assertParamExists('listFeeSchedModifierExclude', 'feeSched', feeSched)
210
- const localVarPath = `/fee-schedules/{feeSched}/modifier-excludes`
211
- .replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
196
+ const localVarPath = `/fee-schedule-modifier-excludes`;
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 FeeScheduleModifierExcludesApiAxiosParamCreator = function (configu
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 FeeScheduleModifierExcludesApiAxiosParamCreator = function (configu
254
243
  * Create or Update multiple FeeSchedModifierExclude 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 FeeSchedModifierExclude
256
245
  * @param {string} vbasoftwareDatabase Target database
257
- * @param {string} feeSched Fee Sched
258
246
  * @param {Array<FeeSchedModifierExclude>} feeSchedModifierExclude
259
247
  * @param {*} [options] Override http request option.
260
248
  * @throws {RequiredError}
261
249
  */
262
- updateBatchFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
250
+ updateBatchFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
263
251
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
264
252
  assertParamExists('updateBatchFeeSchedModifierExclude', 'vbasoftwareDatabase', vbasoftwareDatabase)
265
- // verify required parameter 'feeSched' is not null or undefined
266
- assertParamExists('updateBatchFeeSchedModifierExclude', 'feeSched', feeSched)
267
253
  // verify required parameter 'feeSchedModifierExclude' is not null or undefined
268
254
  assertParamExists('updateBatchFeeSchedModifierExclude', 'feeSchedModifierExclude', feeSchedModifierExclude)
269
- const localVarPath = `/fee-schedules/{feeSched}/modifier-excludes-batch`
270
- .replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)));
255
+ const localVarPath = `/fee-schedule-modifier-excludes-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 FeeScheduleModifierExcludesApiAxiosParamCreator = function (configu
308
293
  * Updates a specific FeeSchedModifierExclude.
309
294
  * @summary Update FeeSchedModifierExclude
310
295
  * @param {string} vbasoftwareDatabase Target database
311
- * @param {string} feeSched Fee Sched
312
296
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
313
297
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
314
298
  * @param {*} [options] Override http request option.
315
299
  * @throws {RequiredError}
316
300
  */
317
- updateFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
301
+ updateFeeSchedModifierExclude: async (vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
318
302
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
319
303
  assertParamExists('updateFeeSchedModifierExclude', 'vbasoftwareDatabase', vbasoftwareDatabase)
320
- // verify required parameter 'feeSched' is not null or undefined
321
- assertParamExists('updateFeeSchedModifierExclude', 'feeSched', feeSched)
322
304
  // verify required parameter 'feeSchedModifierExcludeKey' is not null or undefined
323
305
  assertParamExists('updateFeeSchedModifierExclude', 'feeSchedModifierExcludeKey', feeSchedModifierExcludeKey)
324
306
  // verify required parameter 'feeSchedModifierExclude' is not null or undefined
325
307
  assertParamExists('updateFeeSchedModifierExclude', 'feeSchedModifierExclude', feeSchedModifierExclude)
326
- const localVarPath = `/fee-schedules/{feeSched}/modifier-excludes/{feeSchedModifierExcludeKey}`
327
- .replace(`{${"feeSched"}}`, encodeURIComponent(String(feeSched)))
308
+ const localVarPath = `/fee-schedule-modifier-excludes/{feeSchedModifierExcludeKey}`
328
309
  .replace(`{${"feeSchedModifierExcludeKey"}}`, encodeURIComponent(String(feeSchedModifierExcludeKey)));
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 FeeScheduleModifierExcludesApiFp = function(configuration?: Configu
376
357
  * Creates a new FeeSchedModifierExclude
377
358
  * @summary Create FeeSchedModifierExclude
378
359
  * @param {string} vbasoftwareDatabase Target database
379
- * @param {string} feeSched Fee Sched
380
360
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
381
361
  * @param {*} [options] Override http request option.
382
362
  * @throws {RequiredError}
383
363
  */
384
- async createFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierExcludeVBAResponse>> {
385
- const localVarAxiosArgs = await localVarAxiosParamCreator.createFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExclude, options);
364
+ async createFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierExcludeVBAResponse>> {
365
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExclude, options);
386
366
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
387
367
  },
388
368
  /**
389
369
  * Deletes an FeeSchedModifierExclude
390
370
  * @summary Delete FeeSchedModifierExclude
391
371
  * @param {string} vbasoftwareDatabase Target database
392
- * @param {string} feeSched Fee Sched
393
372
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
394
373
  * @param {*} [options] Override http request option.
395
374
  * @throws {RequiredError}
396
375
  */
397
- async deleteFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
398
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, options);
376
+ async deleteFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
377
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, options);
399
378
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
400
379
  },
401
380
  /**
402
381
  * Gets FeeSchedModifierExclude
403
382
  * @summary Get FeeSchedModifierExclude
404
383
  * @param {string} vbasoftwareDatabase Target database
405
- * @param {string} feeSched Fee Sched
406
384
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
407
385
  * @param {*} [options] Override http request option.
408
386
  * @throws {RequiredError}
409
387
  */
410
- async getFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierExcludeVBAResponse>> {
411
- const localVarAxiosArgs = await localVarAxiosParamCreator.getFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, options);
388
+ async getFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierExcludeVBAResponse>> {
389
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, options);
412
390
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
413
391
  },
414
392
  /**
415
- * Lists all FeeSchedModifierExclude for the given feeSched
393
+ * Lists all FeeSchedModifierExclude
416
394
  * @summary List FeeSchedModifierExclude
417
395
  * @param {string} vbasoftwareDatabase Target database
418
- * @param {string} feeSched Fee Sched
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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 listFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierExcludeListVBAResponse>> {
425
- const localVarAxiosArgs = await localVarAxiosParamCreator.listFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, page, pageSize, options);
402
+ async listFeeSchedModifierExclude(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierExcludeListVBAResponse>> {
403
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listFeeSchedModifierExclude(vbasoftwareDatabase, sortBy, page, pageSize, options);
426
404
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
427
405
  },
428
406
  /**
429
407
  * Create or Update multiple FeeSchedModifierExclude 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 FeeSchedModifierExclude
431
409
  * @param {string} vbasoftwareDatabase Target database
432
- * @param {string} feeSched Fee Sched
433
410
  * @param {Array<FeeSchedModifierExclude>} feeSchedModifierExclude
434
411
  * @param {*} [options] Override http request option.
435
412
  * @throws {RequiredError}
436
413
  */
437
- async updateBatchFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
438
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExclude, options);
414
+ async updateBatchFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
415
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExclude, options);
439
416
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
440
417
  },
441
418
  /**
442
419
  * Updates a specific FeeSchedModifierExclude.
443
420
  * @summary Update FeeSchedModifierExclude
444
421
  * @param {string} vbasoftwareDatabase Target database
445
- * @param {string} feeSched Fee Sched
446
422
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
447
423
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
448
424
  * @param {*} [options] Override http request option.
449
425
  * @throws {RequiredError}
450
426
  */
451
- async updateFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierExcludeVBAResponse>> {
452
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, feeSchedModifierExclude, options);
427
+ async updateFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeeSchedModifierExcludeVBAResponse>> {
428
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, feeSchedModifierExclude, options);
453
429
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
454
430
  },
455
431
  }
@@ -466,75 +442,70 @@ export const FeeScheduleModifierExcludesApiFactory = function (configuration?: C
466
442
  * Creates a new FeeSchedModifierExclude
467
443
  * @summary Create FeeSchedModifierExclude
468
444
  * @param {string} vbasoftwareDatabase Target database
469
- * @param {string} feeSched Fee Sched
470
445
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
471
446
  * @param {*} [options] Override http request option.
472
447
  * @throws {RequiredError}
473
448
  */
474
- createFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: FeeSchedModifierExclude, options?: any): AxiosPromise<FeeSchedModifierExcludeVBAResponse> {
475
- return localVarFp.createFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExclude, options).then((request) => request(axios, basePath));
449
+ createFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExclude: FeeSchedModifierExclude, options?: any): AxiosPromise<FeeSchedModifierExcludeVBAResponse> {
450
+ return localVarFp.createFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExclude, options).then((request) => request(axios, basePath));
476
451
  },
477
452
  /**
478
453
  * Deletes an FeeSchedModifierExclude
479
454
  * @summary Delete FeeSchedModifierExclude
480
455
  * @param {string} vbasoftwareDatabase Target database
481
- * @param {string} feeSched Fee Sched
482
456
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
483
457
  * @param {*} [options] Override http request option.
484
458
  * @throws {RequiredError}
485
459
  */
486
- deleteFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options?: any): AxiosPromise<void> {
487
- return localVarFp.deleteFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, options).then((request) => request(axios, basePath));
460
+ deleteFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options?: any): AxiosPromise<void> {
461
+ return localVarFp.deleteFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, options).then((request) => request(axios, basePath));
488
462
  },
489
463
  /**
490
464
  * Gets FeeSchedModifierExclude
491
465
  * @summary Get FeeSchedModifierExclude
492
466
  * @param {string} vbasoftwareDatabase Target database
493
- * @param {string} feeSched Fee Sched
494
467
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
495
468
  * @param {*} [options] Override http request option.
496
469
  * @throws {RequiredError}
497
470
  */
498
- getFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options?: any): AxiosPromise<FeeSchedModifierExcludeVBAResponse> {
499
- return localVarFp.getFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, options).then((request) => request(axios, basePath));
471
+ getFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options?: any): AxiosPromise<FeeSchedModifierExcludeVBAResponse> {
472
+ return localVarFp.getFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, options).then((request) => request(axios, basePath));
500
473
  },
501
474
  /**
502
- * Lists all FeeSchedModifierExclude for the given feeSched
475
+ * Lists all FeeSchedModifierExclude
503
476
  * @summary List FeeSchedModifierExclude
504
477
  * @param {string} vbasoftwareDatabase Target database
505
- * @param {string} feeSched Fee Sched
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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
- listFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, page?: number, pageSize?: number, options?: any): AxiosPromise<FeeSchedModifierExcludeListVBAResponse> {
512
- return localVarFp.listFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, page, pageSize, options).then((request) => request(axios, basePath));
484
+ listFeeSchedModifierExclude(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<FeeSchedModifierExcludeListVBAResponse> {
485
+ return localVarFp.listFeeSchedModifierExclude(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
513
486
  },
514
487
  /**
515
488
  * Create or Update multiple FeeSchedModifierExclude 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 FeeSchedModifierExclude
517
490
  * @param {string} vbasoftwareDatabase Target database
518
- * @param {string} feeSched Fee Sched
519
491
  * @param {Array<FeeSchedModifierExclude>} feeSchedModifierExclude
520
492
  * @param {*} [options] Override http request option.
521
493
  * @throws {RequiredError}
522
494
  */
523
- updateBatchFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
524
- return localVarFp.updateBatchFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExclude, options).then((request) => request(axios, basePath));
495
+ updateBatchFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
496
+ return localVarFp.updateBatchFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExclude, options).then((request) => request(axios, basePath));
525
497
  },
526
498
  /**
527
499
  * Updates a specific FeeSchedModifierExclude.
528
500
  * @summary Update FeeSchedModifierExclude
529
501
  * @param {string} vbasoftwareDatabase Target database
530
- * @param {string} feeSched Fee Sched
531
502
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
532
503
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
533
504
  * @param {*} [options] Override http request option.
534
505
  * @throws {RequiredError}
535
506
  */
536
- updateFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options?: any): AxiosPromise<FeeSchedModifierExcludeVBAResponse> {
537
- return localVarFp.updateFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, feeSchedModifierExclude, options).then((request) => request(axios, basePath));
507
+ updateFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options?: any): AxiosPromise<FeeSchedModifierExcludeVBAResponse> {
508
+ return localVarFp.updateFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, feeSchedModifierExclude, options).then((request) => request(axios, basePath));
538
509
  },
539
510
  };
540
511
  };
@@ -549,75 +520,70 @@ export interface FeeScheduleModifierExcludesApiInterface {
549
520
  * Creates a new FeeSchedModifierExclude
550
521
  * @summary Create FeeSchedModifierExclude
551
522
  * @param {string} vbasoftwareDatabase Target database
552
- * @param {string} feeSched Fee Sched
553
523
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
554
524
  * @param {*} [options] Override http request option.
555
525
  * @throws {RequiredError}
556
526
  * @memberof FeeScheduleModifierExcludesApiInterface
557
527
  */
558
- createFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierExcludeVBAResponse>;
528
+ createFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierExcludeVBAResponse>;
559
529
 
560
530
  /**
561
531
  * Deletes an FeeSchedModifierExclude
562
532
  * @summary Delete FeeSchedModifierExclude
563
533
  * @param {string} vbasoftwareDatabase Target database
564
- * @param {string} feeSched Fee Sched
565
534
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
566
535
  * @param {*} [options] Override http request option.
567
536
  * @throws {RequiredError}
568
537
  * @memberof FeeScheduleModifierExcludesApiInterface
569
538
  */
570
- deleteFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
539
+ deleteFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
571
540
 
572
541
  /**
573
542
  * Gets FeeSchedModifierExclude
574
543
  * @summary Get FeeSchedModifierExclude
575
544
  * @param {string} vbasoftwareDatabase Target database
576
- * @param {string} feeSched Fee Sched
577
545
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
578
546
  * @param {*} [options] Override http request option.
579
547
  * @throws {RequiredError}
580
548
  * @memberof FeeScheduleModifierExcludesApiInterface
581
549
  */
582
- getFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierExcludeVBAResponse>;
550
+ getFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierExcludeVBAResponse>;
583
551
 
584
552
  /**
585
- * Lists all FeeSchedModifierExclude for the given feeSched
553
+ * Lists all FeeSchedModifierExclude
586
554
  * @summary List FeeSchedModifierExclude
587
555
  * @param {string} vbasoftwareDatabase Target database
588
- * @param {string} feeSched Fee Sched
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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 FeeScheduleModifierExcludesApiInterface
594
562
  */
595
- listFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierExcludeListVBAResponse>;
563
+ listFeeSchedModifierExclude(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierExcludeListVBAResponse>;
596
564
 
597
565
  /**
598
566
  * Create or Update multiple FeeSchedModifierExclude 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 FeeSchedModifierExclude
600
568
  * @param {string} vbasoftwareDatabase Target database
601
- * @param {string} feeSched Fee Sched
602
569
  * @param {Array<FeeSchedModifierExclude>} feeSchedModifierExclude
603
570
  * @param {*} [options] Override http request option.
604
571
  * @throws {RequiredError}
605
572
  * @memberof FeeScheduleModifierExcludesApiInterface
606
573
  */
607
- updateBatchFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
574
+ updateBatchFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
608
575
 
609
576
  /**
610
577
  * Updates a specific FeeSchedModifierExclude.
611
578
  * @summary Update FeeSchedModifierExclude
612
579
  * @param {string} vbasoftwareDatabase Target database
613
- * @param {string} feeSched Fee Sched
614
580
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
615
581
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
616
582
  * @param {*} [options] Override http request option.
617
583
  * @throws {RequiredError}
618
584
  * @memberof FeeScheduleModifierExcludesApiInterface
619
585
  */
620
- updateFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierExcludeVBAResponse>;
586
+ updateFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig): AxiosPromise<FeeSchedModifierExcludeVBAResponse>;
621
587
 
622
588
  }
623
589
 
@@ -632,85 +598,80 @@ export class FeeScheduleModifierExcludesApi extends BaseAPI implements FeeSchedu
632
598
  * Creates a new FeeSchedModifierExclude
633
599
  * @summary Create FeeSchedModifierExclude
634
600
  * @param {string} vbasoftwareDatabase Target database
635
- * @param {string} feeSched Fee Sched
636
601
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
637
602
  * @param {*} [options] Override http request option.
638
603
  * @throws {RequiredError}
639
604
  * @memberof FeeScheduleModifierExcludesApi
640
605
  */
641
- public createFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig) {
642
- return FeeScheduleModifierExcludesApiFp(this.configuration).createFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExclude, options).then((request) => request(this.axios, this.basePath));
606
+ public createFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig) {
607
+ return FeeScheduleModifierExcludesApiFp(this.configuration).createFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExclude, options).then((request) => request(this.axios, this.basePath));
643
608
  }
644
609
 
645
610
  /**
646
611
  * Deletes an FeeSchedModifierExclude
647
612
  * @summary Delete FeeSchedModifierExclude
648
613
  * @param {string} vbasoftwareDatabase Target database
649
- * @param {string} feeSched Fee Sched
650
614
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
651
615
  * @param {*} [options] Override http request option.
652
616
  * @throws {RequiredError}
653
617
  * @memberof FeeScheduleModifierExcludesApi
654
618
  */
655
- public deleteFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig) {
656
- return FeeScheduleModifierExcludesApiFp(this.configuration).deleteFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, options).then((request) => request(this.axios, this.basePath));
619
+ public deleteFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig) {
620
+ return FeeScheduleModifierExcludesApiFp(this.configuration).deleteFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, options).then((request) => request(this.axios, this.basePath));
657
621
  }
658
622
 
659
623
  /**
660
624
  * Gets FeeSchedModifierExclude
661
625
  * @summary Get FeeSchedModifierExclude
662
626
  * @param {string} vbasoftwareDatabase Target database
663
- * @param {string} feeSched Fee Sched
664
627
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
665
628
  * @param {*} [options] Override http request option.
666
629
  * @throws {RequiredError}
667
630
  * @memberof FeeScheduleModifierExcludesApi
668
631
  */
669
- public getFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig) {
670
- return FeeScheduleModifierExcludesApiFp(this.configuration).getFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, options).then((request) => request(this.axios, this.basePath));
632
+ public getFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, options?: AxiosRequestConfig) {
633
+ return FeeScheduleModifierExcludesApiFp(this.configuration).getFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, options).then((request) => request(this.axios, this.basePath));
671
634
  }
672
635
 
673
636
  /**
674
- * Lists all FeeSchedModifierExclude for the given feeSched
637
+ * Lists all FeeSchedModifierExclude
675
638
  * @summary List FeeSchedModifierExclude
676
639
  * @param {string} vbasoftwareDatabase Target database
677
- * @param {string} feeSched Fee Sched
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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 FeeScheduleModifierExcludesApi
683
646
  */
684
- public listFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
685
- return FeeScheduleModifierExcludesApiFp(this.configuration).listFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, page, pageSize, options).then((request) => request(this.axios, this.basePath));
647
+ public listFeeSchedModifierExclude(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
648
+ return FeeScheduleModifierExcludesApiFp(this.configuration).listFeeSchedModifierExclude(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
686
649
  }
687
650
 
688
651
  /**
689
652
  * Create or Update multiple FeeSchedModifierExclude 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 FeeSchedModifierExclude
691
654
  * @param {string} vbasoftwareDatabase Target database
692
- * @param {string} feeSched Fee Sched
693
655
  * @param {Array<FeeSchedModifierExclude>} feeSchedModifierExclude
694
656
  * @param {*} [options] Override http request option.
695
657
  * @throws {RequiredError}
696
658
  * @memberof FeeScheduleModifierExcludesApi
697
659
  */
698
- public updateBatchFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options?: AxiosRequestConfig) {
699
- return FeeScheduleModifierExcludesApiFp(this.configuration).updateBatchFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExclude, options).then((request) => request(this.axios, this.basePath));
660
+ public updateBatchFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExclude: Array<FeeSchedModifierExclude>, options?: AxiosRequestConfig) {
661
+ return FeeScheduleModifierExcludesApiFp(this.configuration).updateBatchFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExclude, options).then((request) => request(this.axios, this.basePath));
700
662
  }
701
663
 
702
664
  /**
703
665
  * Updates a specific FeeSchedModifierExclude.
704
666
  * @summary Update FeeSchedModifierExclude
705
667
  * @param {string} vbasoftwareDatabase Target database
706
- * @param {string} feeSched Fee Sched
707
668
  * @param {number} feeSchedModifierExcludeKey FeeSchedModifierExclude Key
708
669
  * @param {FeeSchedModifierExclude} feeSchedModifierExclude
709
670
  * @param {*} [options] Override http request option.
710
671
  * @throws {RequiredError}
711
672
  * @memberof FeeScheduleModifierExcludesApi
712
673
  */
713
- public updateFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSched: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig) {
714
- return FeeScheduleModifierExcludesApiFp(this.configuration).updateFeeSchedModifierExclude(vbasoftwareDatabase, feeSched, feeSchedModifierExcludeKey, feeSchedModifierExclude, options).then((request) => request(this.axios, this.basePath));
674
+ public updateFeeSchedModifierExclude(vbasoftwareDatabase: string, feeSchedModifierExcludeKey: number, feeSchedModifierExclude: FeeSchedModifierExclude, options?: AxiosRequestConfig) {
675
+ return FeeScheduleModifierExcludesApiFp(this.configuration).updateFeeSchedModifierExclude(vbasoftwareDatabase, feeSchedModifierExcludeKey, feeSchedModifierExclude, options).then((request) => request(this.axios, this.basePath));
715
676
  }
716
677
  }