@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230519.1 → 1.20230617.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
|
@@ -0,0 +1,668 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
17
|
+
import { Configuration } from '../configuration';
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { ClaimBatchLog } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { ClaimBatchLogListVBAResponse } from '../models';
|
|
27
|
+
// @ts-ignore
|
|
28
|
+
import { ClaimBatchLogVBAResponse } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
import { MultiCodeResponseListVBAResponse } from '../models';
|
|
31
|
+
/**
|
|
32
|
+
* ClaimBatchLogsApi - axios parameter creator
|
|
33
|
+
* @export
|
|
34
|
+
*/
|
|
35
|
+
export const ClaimBatchLogsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
|
+
return {
|
|
37
|
+
/**
|
|
38
|
+
* Creates a new ClaimBatchLog
|
|
39
|
+
* @summary Create ClaimBatchLog
|
|
40
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
42
|
+
* @param {*} [options] Override http request option.
|
|
43
|
+
* @throws {RequiredError}
|
|
44
|
+
*/
|
|
45
|
+
createClaimBatchLog: async (vbasoftwareDatabase: string, claimBatchLog: ClaimBatchLog, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
46
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
47
|
+
assertParamExists('createClaimBatchLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
48
|
+
// verify required parameter 'claimBatchLog' is not null or undefined
|
|
49
|
+
assertParamExists('createClaimBatchLog', 'claimBatchLog', claimBatchLog)
|
|
50
|
+
const localVarPath = `/claim-batch-logs`;
|
|
51
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
53
|
+
let baseOptions;
|
|
54
|
+
if (configuration) {
|
|
55
|
+
baseOptions = configuration.baseOptions;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
59
|
+
const localVarHeaderParameter = {} as any;
|
|
60
|
+
const localVarQueryParameter = {} as any;
|
|
61
|
+
|
|
62
|
+
// authentication apiKeyAuth required
|
|
63
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
64
|
+
|
|
65
|
+
// authentication bearerAuth required
|
|
66
|
+
// http bearer authentication required
|
|
67
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
68
|
+
|
|
69
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
70
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
76
|
+
|
|
77
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
78
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
79
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
80
|
+
localVarRequestOptions.data = serializeDataIfNeeded(claimBatchLog, localVarRequestOptions, configuration)
|
|
81
|
+
|
|
82
|
+
return {
|
|
83
|
+
url: toPathString(localVarUrlObj),
|
|
84
|
+
options: localVarRequestOptions,
|
|
85
|
+
};
|
|
86
|
+
},
|
|
87
|
+
/**
|
|
88
|
+
* Deletes an ClaimBatchLog
|
|
89
|
+
* @summary Delete ClaimBatchLog
|
|
90
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
91
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
92
|
+
* @param {*} [options] Override http request option.
|
|
93
|
+
* @throws {RequiredError}
|
|
94
|
+
*/
|
|
95
|
+
deleteClaimBatchLog: async (vbasoftwareDatabase: string, claimBatchLogKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
96
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
97
|
+
assertParamExists('deleteClaimBatchLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
98
|
+
// verify required parameter 'claimBatchLogKey' is not null or undefined
|
|
99
|
+
assertParamExists('deleteClaimBatchLog', 'claimBatchLogKey', claimBatchLogKey)
|
|
100
|
+
const localVarPath = `/claim-batch-logs/{claimBatchLogKey}`
|
|
101
|
+
.replace(`{${"claimBatchLogKey"}}`, encodeURIComponent(String(claimBatchLogKey)));
|
|
102
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
104
|
+
let baseOptions;
|
|
105
|
+
if (configuration) {
|
|
106
|
+
baseOptions = configuration.baseOptions;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
110
|
+
const localVarHeaderParameter = {} as any;
|
|
111
|
+
const localVarQueryParameter = {} as any;
|
|
112
|
+
|
|
113
|
+
// authentication apiKeyAuth required
|
|
114
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
115
|
+
|
|
116
|
+
// authentication bearerAuth required
|
|
117
|
+
// http bearer authentication required
|
|
118
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
119
|
+
|
|
120
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
121
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
127
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
128
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
129
|
+
|
|
130
|
+
return {
|
|
131
|
+
url: toPathString(localVarUrlObj),
|
|
132
|
+
options: localVarRequestOptions,
|
|
133
|
+
};
|
|
134
|
+
},
|
|
135
|
+
/**
|
|
136
|
+
* Gets ClaimBatchLog
|
|
137
|
+
* @summary Get ClaimBatchLog
|
|
138
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
139
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
140
|
+
* @param {*} [options] Override http request option.
|
|
141
|
+
* @throws {RequiredError}
|
|
142
|
+
*/
|
|
143
|
+
getClaimBatchLog: async (vbasoftwareDatabase: string, claimBatchLogKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
144
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
145
|
+
assertParamExists('getClaimBatchLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
146
|
+
// verify required parameter 'claimBatchLogKey' is not null or undefined
|
|
147
|
+
assertParamExists('getClaimBatchLog', 'claimBatchLogKey', claimBatchLogKey)
|
|
148
|
+
const localVarPath = `/claim-batch-logs/{claimBatchLogKey}`
|
|
149
|
+
.replace(`{${"claimBatchLogKey"}}`, encodeURIComponent(String(claimBatchLogKey)));
|
|
150
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
151
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
152
|
+
let baseOptions;
|
|
153
|
+
if (configuration) {
|
|
154
|
+
baseOptions = configuration.baseOptions;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
158
|
+
const localVarHeaderParameter = {} as any;
|
|
159
|
+
const localVarQueryParameter = {} as any;
|
|
160
|
+
|
|
161
|
+
// authentication apiKeyAuth required
|
|
162
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
163
|
+
|
|
164
|
+
// authentication bearerAuth required
|
|
165
|
+
// http bearer authentication required
|
|
166
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
167
|
+
|
|
168
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
169
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
175
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
176
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
177
|
+
|
|
178
|
+
return {
|
|
179
|
+
url: toPathString(localVarUrlObj),
|
|
180
|
+
options: localVarRequestOptions,
|
|
181
|
+
};
|
|
182
|
+
},
|
|
183
|
+
/**
|
|
184
|
+
* Lists all ClaimBatchLog
|
|
185
|
+
* @summary List ClaimBatchLog
|
|
186
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
187
|
+
* @param {number} [page] Page
|
|
188
|
+
* @param {number} [pageSize] Page Size
|
|
189
|
+
* @param {*} [options] Override http request option.
|
|
190
|
+
* @throws {RequiredError}
|
|
191
|
+
*/
|
|
192
|
+
listClaimBatchLog: async (vbasoftwareDatabase: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
193
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
194
|
+
assertParamExists('listClaimBatchLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
195
|
+
const localVarPath = `/claim-batch-logs`;
|
|
196
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
197
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
198
|
+
let baseOptions;
|
|
199
|
+
if (configuration) {
|
|
200
|
+
baseOptions = configuration.baseOptions;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
204
|
+
const localVarHeaderParameter = {} as any;
|
|
205
|
+
const localVarQueryParameter = {} as any;
|
|
206
|
+
|
|
207
|
+
// authentication apiKeyAuth required
|
|
208
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
209
|
+
|
|
210
|
+
// authentication bearerAuth required
|
|
211
|
+
// http bearer authentication required
|
|
212
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
213
|
+
|
|
214
|
+
if (page !== undefined) {
|
|
215
|
+
localVarQueryParameter['page'] = page;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
if (pageSize !== undefined) {
|
|
219
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
223
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
229
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
230
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
231
|
+
|
|
232
|
+
return {
|
|
233
|
+
url: toPathString(localVarUrlObj),
|
|
234
|
+
options: localVarRequestOptions,
|
|
235
|
+
};
|
|
236
|
+
},
|
|
237
|
+
/**
|
|
238
|
+
* Create or Update multiple ClaimBatchLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
239
|
+
* @summary Create or Update Batch ClaimBatchLog
|
|
240
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
241
|
+
* @param {Array<ClaimBatchLog>} claimBatchLog
|
|
242
|
+
* @param {*} [options] Override http request option.
|
|
243
|
+
* @throws {RequiredError}
|
|
244
|
+
*/
|
|
245
|
+
updateBatchClaimBatchLog: async (vbasoftwareDatabase: string, claimBatchLog: Array<ClaimBatchLog>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
246
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
247
|
+
assertParamExists('updateBatchClaimBatchLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
248
|
+
// verify required parameter 'claimBatchLog' is not null or undefined
|
|
249
|
+
assertParamExists('updateBatchClaimBatchLog', 'claimBatchLog', claimBatchLog)
|
|
250
|
+
const localVarPath = `/claim-batch-logs-batch`;
|
|
251
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
252
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
253
|
+
let baseOptions;
|
|
254
|
+
if (configuration) {
|
|
255
|
+
baseOptions = configuration.baseOptions;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
259
|
+
const localVarHeaderParameter = {} as any;
|
|
260
|
+
const localVarQueryParameter = {} as any;
|
|
261
|
+
|
|
262
|
+
// authentication apiKeyAuth required
|
|
263
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
264
|
+
|
|
265
|
+
// authentication bearerAuth required
|
|
266
|
+
// http bearer authentication required
|
|
267
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
268
|
+
|
|
269
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
270
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
276
|
+
|
|
277
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
278
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
279
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
280
|
+
localVarRequestOptions.data = serializeDataIfNeeded(claimBatchLog, localVarRequestOptions, configuration)
|
|
281
|
+
|
|
282
|
+
return {
|
|
283
|
+
url: toPathString(localVarUrlObj),
|
|
284
|
+
options: localVarRequestOptions,
|
|
285
|
+
};
|
|
286
|
+
},
|
|
287
|
+
/**
|
|
288
|
+
* Updates a specific ClaimBatchLog.
|
|
289
|
+
* @summary Update ClaimBatchLog
|
|
290
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
291
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
292
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
293
|
+
* @param {*} [options] Override http request option.
|
|
294
|
+
* @throws {RequiredError}
|
|
295
|
+
*/
|
|
296
|
+
updateClaimBatchLog: async (vbasoftwareDatabase: string, claimBatchLogKey: number, claimBatchLog: ClaimBatchLog, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
297
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
298
|
+
assertParamExists('updateClaimBatchLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
299
|
+
// verify required parameter 'claimBatchLogKey' is not null or undefined
|
|
300
|
+
assertParamExists('updateClaimBatchLog', 'claimBatchLogKey', claimBatchLogKey)
|
|
301
|
+
// verify required parameter 'claimBatchLog' is not null or undefined
|
|
302
|
+
assertParamExists('updateClaimBatchLog', 'claimBatchLog', claimBatchLog)
|
|
303
|
+
const localVarPath = `/claim-batch-logs/{claimBatchLogKey}`
|
|
304
|
+
.replace(`{${"claimBatchLogKey"}}`, encodeURIComponent(String(claimBatchLogKey)));
|
|
305
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
306
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
307
|
+
let baseOptions;
|
|
308
|
+
if (configuration) {
|
|
309
|
+
baseOptions = configuration.baseOptions;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
313
|
+
const localVarHeaderParameter = {} as any;
|
|
314
|
+
const localVarQueryParameter = {} as any;
|
|
315
|
+
|
|
316
|
+
// authentication apiKeyAuth required
|
|
317
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
318
|
+
|
|
319
|
+
// authentication bearerAuth required
|
|
320
|
+
// http bearer authentication required
|
|
321
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
322
|
+
|
|
323
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
324
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
330
|
+
|
|
331
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
332
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
333
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
334
|
+
localVarRequestOptions.data = serializeDataIfNeeded(claimBatchLog, localVarRequestOptions, configuration)
|
|
335
|
+
|
|
336
|
+
return {
|
|
337
|
+
url: toPathString(localVarUrlObj),
|
|
338
|
+
options: localVarRequestOptions,
|
|
339
|
+
};
|
|
340
|
+
},
|
|
341
|
+
}
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* ClaimBatchLogsApi - functional programming interface
|
|
346
|
+
* @export
|
|
347
|
+
*/
|
|
348
|
+
export const ClaimBatchLogsApiFp = function(configuration?: Configuration) {
|
|
349
|
+
const localVarAxiosParamCreator = ClaimBatchLogsApiAxiosParamCreator(configuration)
|
|
350
|
+
return {
|
|
351
|
+
/**
|
|
352
|
+
* Creates a new ClaimBatchLog
|
|
353
|
+
* @summary Create ClaimBatchLog
|
|
354
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
355
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
356
|
+
* @param {*} [options] Override http request option.
|
|
357
|
+
* @throws {RequiredError}
|
|
358
|
+
*/
|
|
359
|
+
async createClaimBatchLog(vbasoftwareDatabase: string, claimBatchLog: ClaimBatchLog, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchLogVBAResponse>> {
|
|
360
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimBatchLog(vbasoftwareDatabase, claimBatchLog, options);
|
|
361
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
362
|
+
},
|
|
363
|
+
/**
|
|
364
|
+
* Deletes an ClaimBatchLog
|
|
365
|
+
* @summary Delete ClaimBatchLog
|
|
366
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
367
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
368
|
+
* @param {*} [options] Override http request option.
|
|
369
|
+
* @throws {RequiredError}
|
|
370
|
+
*/
|
|
371
|
+
async deleteClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
372
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, options);
|
|
373
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
374
|
+
},
|
|
375
|
+
/**
|
|
376
|
+
* Gets ClaimBatchLog
|
|
377
|
+
* @summary Get ClaimBatchLog
|
|
378
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
379
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
380
|
+
* @param {*} [options] Override http request option.
|
|
381
|
+
* @throws {RequiredError}
|
|
382
|
+
*/
|
|
383
|
+
async getClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchLogVBAResponse>> {
|
|
384
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, options);
|
|
385
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
386
|
+
},
|
|
387
|
+
/**
|
|
388
|
+
* Lists all ClaimBatchLog
|
|
389
|
+
* @summary List ClaimBatchLog
|
|
390
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
391
|
+
* @param {number} [page] Page
|
|
392
|
+
* @param {number} [pageSize] Page Size
|
|
393
|
+
* @param {*} [options] Override http request option.
|
|
394
|
+
* @throws {RequiredError}
|
|
395
|
+
*/
|
|
396
|
+
async listClaimBatchLog(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchLogListVBAResponse>> {
|
|
397
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimBatchLog(vbasoftwareDatabase, page, pageSize, options);
|
|
398
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
399
|
+
},
|
|
400
|
+
/**
|
|
401
|
+
* Create or Update multiple ClaimBatchLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
402
|
+
* @summary Create or Update Batch ClaimBatchLog
|
|
403
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
404
|
+
* @param {Array<ClaimBatchLog>} claimBatchLog
|
|
405
|
+
* @param {*} [options] Override http request option.
|
|
406
|
+
* @throws {RequiredError}
|
|
407
|
+
*/
|
|
408
|
+
async updateBatchClaimBatchLog(vbasoftwareDatabase: string, claimBatchLog: Array<ClaimBatchLog>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
409
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchClaimBatchLog(vbasoftwareDatabase, claimBatchLog, options);
|
|
410
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
411
|
+
},
|
|
412
|
+
/**
|
|
413
|
+
* Updates a specific ClaimBatchLog.
|
|
414
|
+
* @summary Update ClaimBatchLog
|
|
415
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
416
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
417
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
418
|
+
* @param {*} [options] Override http request option.
|
|
419
|
+
* @throws {RequiredError}
|
|
420
|
+
*/
|
|
421
|
+
async updateClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, claimBatchLog: ClaimBatchLog, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimBatchLogVBAResponse>> {
|
|
422
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, claimBatchLog, options);
|
|
423
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
424
|
+
},
|
|
425
|
+
}
|
|
426
|
+
};
|
|
427
|
+
|
|
428
|
+
/**
|
|
429
|
+
* ClaimBatchLogsApi - factory interface
|
|
430
|
+
* @export
|
|
431
|
+
*/
|
|
432
|
+
export const ClaimBatchLogsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
433
|
+
const localVarFp = ClaimBatchLogsApiFp(configuration)
|
|
434
|
+
return {
|
|
435
|
+
/**
|
|
436
|
+
* Creates a new ClaimBatchLog
|
|
437
|
+
* @summary Create ClaimBatchLog
|
|
438
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
439
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
440
|
+
* @param {*} [options] Override http request option.
|
|
441
|
+
* @throws {RequiredError}
|
|
442
|
+
*/
|
|
443
|
+
createClaimBatchLog(vbasoftwareDatabase: string, claimBatchLog: ClaimBatchLog, options?: any): AxiosPromise<ClaimBatchLogVBAResponse> {
|
|
444
|
+
return localVarFp.createClaimBatchLog(vbasoftwareDatabase, claimBatchLog, options).then((request) => request(axios, basePath));
|
|
445
|
+
},
|
|
446
|
+
/**
|
|
447
|
+
* Deletes an ClaimBatchLog
|
|
448
|
+
* @summary Delete ClaimBatchLog
|
|
449
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
450
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
451
|
+
* @param {*} [options] Override http request option.
|
|
452
|
+
* @throws {RequiredError}
|
|
453
|
+
*/
|
|
454
|
+
deleteClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, options?: any): AxiosPromise<void> {
|
|
455
|
+
return localVarFp.deleteClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, options).then((request) => request(axios, basePath));
|
|
456
|
+
},
|
|
457
|
+
/**
|
|
458
|
+
* Gets ClaimBatchLog
|
|
459
|
+
* @summary Get ClaimBatchLog
|
|
460
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
461
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
462
|
+
* @param {*} [options] Override http request option.
|
|
463
|
+
* @throws {RequiredError}
|
|
464
|
+
*/
|
|
465
|
+
getClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, options?: any): AxiosPromise<ClaimBatchLogVBAResponse> {
|
|
466
|
+
return localVarFp.getClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, options).then((request) => request(axios, basePath));
|
|
467
|
+
},
|
|
468
|
+
/**
|
|
469
|
+
* Lists all ClaimBatchLog
|
|
470
|
+
* @summary List ClaimBatchLog
|
|
471
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
472
|
+
* @param {number} [page] Page
|
|
473
|
+
* @param {number} [pageSize] Page Size
|
|
474
|
+
* @param {*} [options] Override http request option.
|
|
475
|
+
* @throws {RequiredError}
|
|
476
|
+
*/
|
|
477
|
+
listClaimBatchLog(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ClaimBatchLogListVBAResponse> {
|
|
478
|
+
return localVarFp.listClaimBatchLog(vbasoftwareDatabase, page, pageSize, options).then((request) => request(axios, basePath));
|
|
479
|
+
},
|
|
480
|
+
/**
|
|
481
|
+
* Create or Update multiple ClaimBatchLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
482
|
+
* @summary Create or Update Batch ClaimBatchLog
|
|
483
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
484
|
+
* @param {Array<ClaimBatchLog>} claimBatchLog
|
|
485
|
+
* @param {*} [options] Override http request option.
|
|
486
|
+
* @throws {RequiredError}
|
|
487
|
+
*/
|
|
488
|
+
updateBatchClaimBatchLog(vbasoftwareDatabase: string, claimBatchLog: Array<ClaimBatchLog>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
489
|
+
return localVarFp.updateBatchClaimBatchLog(vbasoftwareDatabase, claimBatchLog, options).then((request) => request(axios, basePath));
|
|
490
|
+
},
|
|
491
|
+
/**
|
|
492
|
+
* Updates a specific ClaimBatchLog.
|
|
493
|
+
* @summary Update ClaimBatchLog
|
|
494
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
495
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
496
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
497
|
+
* @param {*} [options] Override http request option.
|
|
498
|
+
* @throws {RequiredError}
|
|
499
|
+
*/
|
|
500
|
+
updateClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, claimBatchLog: ClaimBatchLog, options?: any): AxiosPromise<ClaimBatchLogVBAResponse> {
|
|
501
|
+
return localVarFp.updateClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, claimBatchLog, options).then((request) => request(axios, basePath));
|
|
502
|
+
},
|
|
503
|
+
};
|
|
504
|
+
};
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* ClaimBatchLogsApi - interface
|
|
508
|
+
* @export
|
|
509
|
+
* @interface ClaimBatchLogsApi
|
|
510
|
+
*/
|
|
511
|
+
export interface ClaimBatchLogsApiInterface {
|
|
512
|
+
/**
|
|
513
|
+
* Creates a new ClaimBatchLog
|
|
514
|
+
* @summary Create ClaimBatchLog
|
|
515
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
516
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
517
|
+
* @param {*} [options] Override http request option.
|
|
518
|
+
* @throws {RequiredError}
|
|
519
|
+
* @memberof ClaimBatchLogsApiInterface
|
|
520
|
+
*/
|
|
521
|
+
createClaimBatchLog(vbasoftwareDatabase: string, claimBatchLog: ClaimBatchLog, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchLogVBAResponse>;
|
|
522
|
+
|
|
523
|
+
/**
|
|
524
|
+
* Deletes an ClaimBatchLog
|
|
525
|
+
* @summary Delete ClaimBatchLog
|
|
526
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
527
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
528
|
+
* @param {*} [options] Override http request option.
|
|
529
|
+
* @throws {RequiredError}
|
|
530
|
+
* @memberof ClaimBatchLogsApiInterface
|
|
531
|
+
*/
|
|
532
|
+
deleteClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* Gets ClaimBatchLog
|
|
536
|
+
* @summary Get ClaimBatchLog
|
|
537
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
538
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
539
|
+
* @param {*} [options] Override http request option.
|
|
540
|
+
* @throws {RequiredError}
|
|
541
|
+
* @memberof ClaimBatchLogsApiInterface
|
|
542
|
+
*/
|
|
543
|
+
getClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchLogVBAResponse>;
|
|
544
|
+
|
|
545
|
+
/**
|
|
546
|
+
* Lists all ClaimBatchLog
|
|
547
|
+
* @summary List ClaimBatchLog
|
|
548
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
549
|
+
* @param {number} [page] Page
|
|
550
|
+
* @param {number} [pageSize] Page Size
|
|
551
|
+
* @param {*} [options] Override http request option.
|
|
552
|
+
* @throws {RequiredError}
|
|
553
|
+
* @memberof ClaimBatchLogsApiInterface
|
|
554
|
+
*/
|
|
555
|
+
listClaimBatchLog(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchLogListVBAResponse>;
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* Create or Update multiple ClaimBatchLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
559
|
+
* @summary Create or Update Batch ClaimBatchLog
|
|
560
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
561
|
+
* @param {Array<ClaimBatchLog>} claimBatchLog
|
|
562
|
+
* @param {*} [options] Override http request option.
|
|
563
|
+
* @throws {RequiredError}
|
|
564
|
+
* @memberof ClaimBatchLogsApiInterface
|
|
565
|
+
*/
|
|
566
|
+
updateBatchClaimBatchLog(vbasoftwareDatabase: string, claimBatchLog: Array<ClaimBatchLog>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
567
|
+
|
|
568
|
+
/**
|
|
569
|
+
* Updates a specific ClaimBatchLog.
|
|
570
|
+
* @summary Update ClaimBatchLog
|
|
571
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
572
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
573
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
574
|
+
* @param {*} [options] Override http request option.
|
|
575
|
+
* @throws {RequiredError}
|
|
576
|
+
* @memberof ClaimBatchLogsApiInterface
|
|
577
|
+
*/
|
|
578
|
+
updateClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, claimBatchLog: ClaimBatchLog, options?: AxiosRequestConfig): AxiosPromise<ClaimBatchLogVBAResponse>;
|
|
579
|
+
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* ClaimBatchLogsApi - object-oriented interface
|
|
584
|
+
* @export
|
|
585
|
+
* @class ClaimBatchLogsApi
|
|
586
|
+
* @extends {BaseAPI}
|
|
587
|
+
*/
|
|
588
|
+
export class ClaimBatchLogsApi extends BaseAPI implements ClaimBatchLogsApiInterface {
|
|
589
|
+
/**
|
|
590
|
+
* Creates a new ClaimBatchLog
|
|
591
|
+
* @summary Create ClaimBatchLog
|
|
592
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
593
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
594
|
+
* @param {*} [options] Override http request option.
|
|
595
|
+
* @throws {RequiredError}
|
|
596
|
+
* @memberof ClaimBatchLogsApi
|
|
597
|
+
*/
|
|
598
|
+
public createClaimBatchLog(vbasoftwareDatabase: string, claimBatchLog: ClaimBatchLog, options?: AxiosRequestConfig) {
|
|
599
|
+
return ClaimBatchLogsApiFp(this.configuration).createClaimBatchLog(vbasoftwareDatabase, claimBatchLog, options).then((request) => request(this.axios, this.basePath));
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* Deletes an ClaimBatchLog
|
|
604
|
+
* @summary Delete ClaimBatchLog
|
|
605
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
606
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
607
|
+
* @param {*} [options] Override http request option.
|
|
608
|
+
* @throws {RequiredError}
|
|
609
|
+
* @memberof ClaimBatchLogsApi
|
|
610
|
+
*/
|
|
611
|
+
public deleteClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, options?: AxiosRequestConfig) {
|
|
612
|
+
return ClaimBatchLogsApiFp(this.configuration).deleteClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, options).then((request) => request(this.axios, this.basePath));
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
/**
|
|
616
|
+
* Gets ClaimBatchLog
|
|
617
|
+
* @summary Get ClaimBatchLog
|
|
618
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
619
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
620
|
+
* @param {*} [options] Override http request option.
|
|
621
|
+
* @throws {RequiredError}
|
|
622
|
+
* @memberof ClaimBatchLogsApi
|
|
623
|
+
*/
|
|
624
|
+
public getClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, options?: AxiosRequestConfig) {
|
|
625
|
+
return ClaimBatchLogsApiFp(this.configuration).getClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, options).then((request) => request(this.axios, this.basePath));
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* Lists all ClaimBatchLog
|
|
630
|
+
* @summary List ClaimBatchLog
|
|
631
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
632
|
+
* @param {number} [page] Page
|
|
633
|
+
* @param {number} [pageSize] Page Size
|
|
634
|
+
* @param {*} [options] Override http request option.
|
|
635
|
+
* @throws {RequiredError}
|
|
636
|
+
* @memberof ClaimBatchLogsApi
|
|
637
|
+
*/
|
|
638
|
+
public listClaimBatchLog(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
639
|
+
return ClaimBatchLogsApiFp(this.configuration).listClaimBatchLog(vbasoftwareDatabase, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
/**
|
|
643
|
+
* Create or Update multiple ClaimBatchLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
644
|
+
* @summary Create or Update Batch ClaimBatchLog
|
|
645
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
646
|
+
* @param {Array<ClaimBatchLog>} claimBatchLog
|
|
647
|
+
* @param {*} [options] Override http request option.
|
|
648
|
+
* @throws {RequiredError}
|
|
649
|
+
* @memberof ClaimBatchLogsApi
|
|
650
|
+
*/
|
|
651
|
+
public updateBatchClaimBatchLog(vbasoftwareDatabase: string, claimBatchLog: Array<ClaimBatchLog>, options?: AxiosRequestConfig) {
|
|
652
|
+
return ClaimBatchLogsApiFp(this.configuration).updateBatchClaimBatchLog(vbasoftwareDatabase, claimBatchLog, options).then((request) => request(this.axios, this.basePath));
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
/**
|
|
656
|
+
* Updates a specific ClaimBatchLog.
|
|
657
|
+
* @summary Update ClaimBatchLog
|
|
658
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
659
|
+
* @param {number} claimBatchLogKey ClaimBatchLog Key
|
|
660
|
+
* @param {ClaimBatchLog} claimBatchLog
|
|
661
|
+
* @param {*} [options] Override http request option.
|
|
662
|
+
* @throws {RequiredError}
|
|
663
|
+
* @memberof ClaimBatchLogsApi
|
|
664
|
+
*/
|
|
665
|
+
public updateClaimBatchLog(vbasoftwareDatabase: string, claimBatchLogKey: number, claimBatchLog: ClaimBatchLog, options?: AxiosRequestConfig) {
|
|
666
|
+
return ClaimBatchLogsApiFp(this.configuration).updateClaimBatchLog(vbasoftwareDatabase, claimBatchLogKey, claimBatchLog, options).then((request) => request(this.axios, this.basePath));
|
|
667
|
+
}
|
|
668
|
+
}
|