@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240913.2 → 1.20241220.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 +77 -2
- package/api/accounting-api.ts +101 -0
- package/api/adv-accounting-api.ts +199 -0
- package/api/adv-billing-api.ts +926 -57
- package/api/adv-capitation-api.ts +99 -0
- package/api/adv-claim-api.ts +529 -0
- package/api/adv-enrollment-api.ts +204 -4
- package/api/adv-reinsurance-api.ts +97 -0
- package/api/billing-api.ts +198 -0
- package/api/capitations-api.ts +99 -0
- package/api/care-case-clinical-facts-api.ts +71 -167
- package/api/check-batches-api.ts +87 -0
- package/api/checks-api.ts +292 -0
- package/api/claim-invoice-adjustment-reasons-api.ts +677 -0
- package/api/claim-invoice-adjustment-received-api.ts +685 -0
- package/api/claim-invoice-adjustments-api.ts +693 -0
- package/api/claim-invoice-api.ts +677 -0
- package/api/claim-invoice-details-api.ts +741 -0
- package/api/claim-invoice-payments-api.ts +725 -0
- package/api/claim-invoice-received-api.ts +693 -0
- package/api/claim-payments-api.ts +677 -0
- package/api/enrollment-accumulators-api.ts +909 -0
- package/api/events-api.ts +87 -0
- package/api/members-api.ts +206 -0
- package/api/prem-invoice-api.ts +171 -0
- package/api/premium-invoices-api.ts +95 -0
- package/api/premium-payments-api.ts +133 -0
- package/api/premium-rates-api.ts +223 -39
- package/api/reinsurance-contracts-api.ts +97 -0
- package/api/security-area-user-groups-api.ts +118 -5
- package/api/subscribers-api.ts +5 -5
- package/api/vbagateway-messaging-api.ts +379 -0
- package/api/vbareports-api.ts +112 -15
- package/api.ts +10 -0
- package/models/accounting-withhold-check-config.ts +36 -0
- package/models/accumulator-added-accum-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-added-accum-detail-result.ts +378 -0
- package/models/accumulator-all-benefit-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-all-benefit-detail-result.ts +420 -0
- package/models/{prem-invoice-generate-inv-list-result-list-vbaresponse.ts → accumulator-benefit-detail-result-list-vbaresponse.ts} +8 -8
- package/models/accumulator-benefit-detail-result.ts +414 -0
- package/models/accumulator-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-detail-result.ts +402 -0
- package/models/benefit-codes.ts +18 -18
- package/models/billing-add-rate-from-template-config.ts +42 -0
- package/models/billing-apply-payment-config.ts +74 -0
- package/models/billing-auto-apply-config.ts +84 -0
- package/models/billing-rate-modify-config.ts +140 -0
- package/models/capitation-generate.ts +12 -0
- package/models/care-case-clinical-fact.ts +1 -1
- package/models/claim-batch-claim-batch-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason.ts +60 -0
- package/models/claim-invoice-adjustment-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received.ts +78 -0
- package/models/claim-invoice-adjustment-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment.ts +90 -0
- package/models/claim-invoice-config.ts +37 -0
- package/models/claim-invoice-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail.ts +66 -0
- package/models/claim-invoice-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment.ts +72 -0
- package/models/claim-invoice-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-received.ts +78 -0
- package/models/claim-invoice-vbaresponse.ts +45 -0
- package/models/claim-invoice.ts +90 -0
- package/models/claim-payment-list-vbaresponse.ts +45 -0
- package/models/claim-payment-vbaresponse.ts +45 -0
- package/models/claim-payment.ts +96 -0
- package/models/commission-adjustment.ts +12 -0
- package/models/company-data.ts +24 -0
- package/models/covered-benefit.ts +49 -0
- package/models/elig-detail.ts +114 -0
- package/models/email-report-dto.ts +0 -6
- package/models/enrollment-disenroll-adjustment-list-vbaresponse.ts +45 -0
- package/models/enrollment-disenroll-adjustment.ts +138 -0
- package/models/fax-report-dto.ts +0 -6
- package/models/file-detail.ts +4 -4
- package/models/fundaccountbalancelist.ts +114 -0
- package/models/get-plan-max-claim-detail-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-claim-detail-result.ts +180 -0
- package/models/get-plan-max-summary-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-summary-result.ts +114 -0
- package/models/get-subscriber-disenroll-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-subscriber-disenroll-adjustments-result.ts +144 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result.ts +132 -0
- package/models/idcard-request-report-series-config.ts +30 -0
- package/models/index.ts +67 -2
- package/models/json-node-options.ts +1 -7
- package/models/member-detail.ts +102 -0
- package/models/message-thread-vbaresponse.ts +45 -0
- package/models/message-thread.ts +60 -0
- package/models/messages-vbaresponse.ts +45 -0
- package/models/messages.ts +66 -0
- package/models/prem-apply-payment-category-result-list-vbaresponse.ts +45 -0
- package/models/prem-apply-payment-category-result.ts +102 -0
- package/models/search-request.ts +12 -0
- package/models/security-area-user-group.ts +26 -2
- package/models/subscriber-detail.ts +144 -0
- package/models/vbaapp-info.ts +12 -6
- package/models/vbabenefit-inquiry-request.ts +96 -0
- package/models/vbabenefit-inquiry-vbaresponse.ts +45 -0
- package/models/vbabenefit-inquiry.ts +122 -0
- package/models/vbadisability-advisor-deduction.ts +72 -0
- package/models/vbadisability-advisor.ts +571 -0
- package/models/vbareport-vbaresponse.ts +45 -0
- package/models/vbareport.ts +7 -7
- package/package.json +1 -1
- package/models/prem-invoice-generate-inv-list-result.ts +0 -138
|
@@ -0,0 +1,379 @@
|
|
|
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 { MessageThread } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { MessageThreadVBAResponse } from '../models';
|
|
27
|
+
// @ts-ignore
|
|
28
|
+
import { Messages } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
import { MessagesVBAResponse } from '../models';
|
|
31
|
+
/**
|
|
32
|
+
* VBAGatewayMessagingApi - axios parameter creator
|
|
33
|
+
* @export
|
|
34
|
+
*/
|
|
35
|
+
export const VBAGatewayMessagingApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
|
+
return {
|
|
37
|
+
/**
|
|
38
|
+
* Create a Message wihtin a VBAGateway MessageThread. This operation will insert the new message into the VBAGateway database that is paired with this VBASoftwre database.
|
|
39
|
+
* @summary Create a Message wihtin a VBAGateway MessageThread
|
|
40
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
42
|
+
* @param {Messages} messages
|
|
43
|
+
* @param {*} [options] Override http request option.
|
|
44
|
+
* @throws {RequiredError}
|
|
45
|
+
*/
|
|
46
|
+
createVBAGatewayMessage: async (vbasoftwareDatabase: string, messageThreadKey: number, messages: Messages, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
|
+
assertParamExists('createVBAGatewayMessage', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
+
// verify required parameter 'messageThreadKey' is not null or undefined
|
|
50
|
+
assertParamExists('createVBAGatewayMessage', 'messageThreadKey', messageThreadKey)
|
|
51
|
+
// verify required parameter 'messages' is not null or undefined
|
|
52
|
+
assertParamExists('createVBAGatewayMessage', 'messages', messages)
|
|
53
|
+
const localVarPath = `/vbagateway-message-threads/{MessageThread_Key}/messages`
|
|
54
|
+
.replace(`{${"MessageThread_Key"}}`, encodeURIComponent(String(messageThreadKey)));
|
|
55
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
57
|
+
let baseOptions;
|
|
58
|
+
if (configuration) {
|
|
59
|
+
baseOptions = configuration.baseOptions;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
63
|
+
const localVarHeaderParameter = {} as any;
|
|
64
|
+
const localVarQueryParameter = {} as any;
|
|
65
|
+
|
|
66
|
+
// authentication apiKeyAuth required
|
|
67
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
68
|
+
|
|
69
|
+
// authentication bearerAuth required
|
|
70
|
+
// http bearer authentication required
|
|
71
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
72
|
+
|
|
73
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
74
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
80
|
+
|
|
81
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
82
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
83
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
84
|
+
localVarRequestOptions.data = serializeDataIfNeeded(messages, localVarRequestOptions, configuration)
|
|
85
|
+
|
|
86
|
+
return {
|
|
87
|
+
url: toPathString(localVarUrlObj),
|
|
88
|
+
options: localVarRequestOptions,
|
|
89
|
+
};
|
|
90
|
+
},
|
|
91
|
+
/**
|
|
92
|
+
* Gets VBAGateway MessageThread by key
|
|
93
|
+
* @summary Get VBAGateway MessageThread
|
|
94
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
95
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
96
|
+
* @param {*} [options] Override http request option.
|
|
97
|
+
* @throws {RequiredError}
|
|
98
|
+
*/
|
|
99
|
+
getVBAGatewayMessageThread: async (vbasoftwareDatabase: string, messageThreadKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
100
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
101
|
+
assertParamExists('getVBAGatewayMessageThread', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
102
|
+
// verify required parameter 'messageThreadKey' is not null or undefined
|
|
103
|
+
assertParamExists('getVBAGatewayMessageThread', 'messageThreadKey', messageThreadKey)
|
|
104
|
+
const localVarPath = `/vbagateway-message-threads/{MessageThread_Key}`
|
|
105
|
+
.replace(`{${"MessageThread_Key"}}`, encodeURIComponent(String(messageThreadKey)));
|
|
106
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
107
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
108
|
+
let baseOptions;
|
|
109
|
+
if (configuration) {
|
|
110
|
+
baseOptions = configuration.baseOptions;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
114
|
+
const localVarHeaderParameter = {} as any;
|
|
115
|
+
const localVarQueryParameter = {} as any;
|
|
116
|
+
|
|
117
|
+
// authentication apiKeyAuth required
|
|
118
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
119
|
+
|
|
120
|
+
// authentication bearerAuth required
|
|
121
|
+
// http bearer authentication required
|
|
122
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
123
|
+
|
|
124
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
125
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
131
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
132
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
133
|
+
|
|
134
|
+
return {
|
|
135
|
+
url: toPathString(localVarUrlObj),
|
|
136
|
+
options: localVarRequestOptions,
|
|
137
|
+
};
|
|
138
|
+
},
|
|
139
|
+
/**
|
|
140
|
+
* Update VBAGateway MessageThread by key
|
|
141
|
+
* @summary Update VBAGateway MessageThread
|
|
142
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
143
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
144
|
+
* @param {MessageThread} messageThread
|
|
145
|
+
* @param {*} [options] Override http request option.
|
|
146
|
+
* @throws {RequiredError}
|
|
147
|
+
*/
|
|
148
|
+
updateVBAGatewayMessageThread: async (vbasoftwareDatabase: string, messageThreadKey: number, messageThread: MessageThread, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
149
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
150
|
+
assertParamExists('updateVBAGatewayMessageThread', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
151
|
+
// verify required parameter 'messageThreadKey' is not null or undefined
|
|
152
|
+
assertParamExists('updateVBAGatewayMessageThread', 'messageThreadKey', messageThreadKey)
|
|
153
|
+
// verify required parameter 'messageThread' is not null or undefined
|
|
154
|
+
assertParamExists('updateVBAGatewayMessageThread', 'messageThread', messageThread)
|
|
155
|
+
const localVarPath = `/vbagateway-message-threads/{MessageThread_Key}`
|
|
156
|
+
.replace(`{${"MessageThread_Key"}}`, encodeURIComponent(String(messageThreadKey)));
|
|
157
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
158
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
159
|
+
let baseOptions;
|
|
160
|
+
if (configuration) {
|
|
161
|
+
baseOptions = configuration.baseOptions;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
165
|
+
const localVarHeaderParameter = {} as any;
|
|
166
|
+
const localVarQueryParameter = {} as any;
|
|
167
|
+
|
|
168
|
+
// authentication apiKeyAuth required
|
|
169
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
170
|
+
|
|
171
|
+
// authentication bearerAuth required
|
|
172
|
+
// http bearer authentication required
|
|
173
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
174
|
+
|
|
175
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
176
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
182
|
+
|
|
183
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
184
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
185
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
186
|
+
localVarRequestOptions.data = serializeDataIfNeeded(messageThread, localVarRequestOptions, configuration)
|
|
187
|
+
|
|
188
|
+
return {
|
|
189
|
+
url: toPathString(localVarUrlObj),
|
|
190
|
+
options: localVarRequestOptions,
|
|
191
|
+
};
|
|
192
|
+
},
|
|
193
|
+
}
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* VBAGatewayMessagingApi - functional programming interface
|
|
198
|
+
* @export
|
|
199
|
+
*/
|
|
200
|
+
export const VBAGatewayMessagingApiFp = function(configuration?: Configuration) {
|
|
201
|
+
const localVarAxiosParamCreator = VBAGatewayMessagingApiAxiosParamCreator(configuration)
|
|
202
|
+
return {
|
|
203
|
+
/**
|
|
204
|
+
* Create a Message wihtin a VBAGateway MessageThread. This operation will insert the new message into the VBAGateway database that is paired with this VBASoftwre database.
|
|
205
|
+
* @summary Create a Message wihtin a VBAGateway MessageThread
|
|
206
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
207
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
208
|
+
* @param {Messages} messages
|
|
209
|
+
* @param {*} [options] Override http request option.
|
|
210
|
+
* @throws {RequiredError}
|
|
211
|
+
*/
|
|
212
|
+
async createVBAGatewayMessage(vbasoftwareDatabase: string, messageThreadKey: number, messages: Messages, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessagesVBAResponse>> {
|
|
213
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createVBAGatewayMessage(vbasoftwareDatabase, messageThreadKey, messages, options);
|
|
214
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
215
|
+
},
|
|
216
|
+
/**
|
|
217
|
+
* Gets VBAGateway MessageThread by key
|
|
218
|
+
* @summary Get VBAGateway MessageThread
|
|
219
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
220
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
221
|
+
* @param {*} [options] Override http request option.
|
|
222
|
+
* @throws {RequiredError}
|
|
223
|
+
*/
|
|
224
|
+
async getVBAGatewayMessageThread(vbasoftwareDatabase: string, messageThreadKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessageThreadVBAResponse>> {
|
|
225
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVBAGatewayMessageThread(vbasoftwareDatabase, messageThreadKey, options);
|
|
226
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
227
|
+
},
|
|
228
|
+
/**
|
|
229
|
+
* Update VBAGateway MessageThread by key
|
|
230
|
+
* @summary Update VBAGateway MessageThread
|
|
231
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
232
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
233
|
+
* @param {MessageThread} messageThread
|
|
234
|
+
* @param {*} [options] Override http request option.
|
|
235
|
+
* @throws {RequiredError}
|
|
236
|
+
*/
|
|
237
|
+
async updateVBAGatewayMessageThread(vbasoftwareDatabase: string, messageThreadKey: number, messageThread: MessageThread, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MessageThreadVBAResponse>> {
|
|
238
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateVBAGatewayMessageThread(vbasoftwareDatabase, messageThreadKey, messageThread, options);
|
|
239
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
240
|
+
},
|
|
241
|
+
}
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* VBAGatewayMessagingApi - factory interface
|
|
246
|
+
* @export
|
|
247
|
+
*/
|
|
248
|
+
export const VBAGatewayMessagingApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
249
|
+
const localVarFp = VBAGatewayMessagingApiFp(configuration)
|
|
250
|
+
return {
|
|
251
|
+
/**
|
|
252
|
+
* Create a Message wihtin a VBAGateway MessageThread. This operation will insert the new message into the VBAGateway database that is paired with this VBASoftwre database.
|
|
253
|
+
* @summary Create a Message wihtin a VBAGateway MessageThread
|
|
254
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
255
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
256
|
+
* @param {Messages} messages
|
|
257
|
+
* @param {*} [options] Override http request option.
|
|
258
|
+
* @throws {RequiredError}
|
|
259
|
+
*/
|
|
260
|
+
createVBAGatewayMessage(vbasoftwareDatabase: string, messageThreadKey: number, messages: Messages, options?: any): AxiosPromise<MessagesVBAResponse> {
|
|
261
|
+
return localVarFp.createVBAGatewayMessage(vbasoftwareDatabase, messageThreadKey, messages, options).then((request) => request(axios, basePath));
|
|
262
|
+
},
|
|
263
|
+
/**
|
|
264
|
+
* Gets VBAGateway MessageThread by key
|
|
265
|
+
* @summary Get VBAGateway MessageThread
|
|
266
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
267
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
268
|
+
* @param {*} [options] Override http request option.
|
|
269
|
+
* @throws {RequiredError}
|
|
270
|
+
*/
|
|
271
|
+
getVBAGatewayMessageThread(vbasoftwareDatabase: string, messageThreadKey: number, options?: any): AxiosPromise<MessageThreadVBAResponse> {
|
|
272
|
+
return localVarFp.getVBAGatewayMessageThread(vbasoftwareDatabase, messageThreadKey, options).then((request) => request(axios, basePath));
|
|
273
|
+
},
|
|
274
|
+
/**
|
|
275
|
+
* Update VBAGateway MessageThread by key
|
|
276
|
+
* @summary Update VBAGateway MessageThread
|
|
277
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
278
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
279
|
+
* @param {MessageThread} messageThread
|
|
280
|
+
* @param {*} [options] Override http request option.
|
|
281
|
+
* @throws {RequiredError}
|
|
282
|
+
*/
|
|
283
|
+
updateVBAGatewayMessageThread(vbasoftwareDatabase: string, messageThreadKey: number, messageThread: MessageThread, options?: any): AxiosPromise<MessageThreadVBAResponse> {
|
|
284
|
+
return localVarFp.updateVBAGatewayMessageThread(vbasoftwareDatabase, messageThreadKey, messageThread, options).then((request) => request(axios, basePath));
|
|
285
|
+
},
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* VBAGatewayMessagingApi - interface
|
|
291
|
+
* @export
|
|
292
|
+
* @interface VBAGatewayMessagingApi
|
|
293
|
+
*/
|
|
294
|
+
export interface VBAGatewayMessagingApiInterface {
|
|
295
|
+
/**
|
|
296
|
+
* Create a Message wihtin a VBAGateway MessageThread. This operation will insert the new message into the VBAGateway database that is paired with this VBASoftwre database.
|
|
297
|
+
* @summary Create a Message wihtin a VBAGateway MessageThread
|
|
298
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
299
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
300
|
+
* @param {Messages} messages
|
|
301
|
+
* @param {*} [options] Override http request option.
|
|
302
|
+
* @throws {RequiredError}
|
|
303
|
+
* @memberof VBAGatewayMessagingApiInterface
|
|
304
|
+
*/
|
|
305
|
+
createVBAGatewayMessage(vbasoftwareDatabase: string, messageThreadKey: number, messages: Messages, options?: AxiosRequestConfig): AxiosPromise<MessagesVBAResponse>;
|
|
306
|
+
|
|
307
|
+
/**
|
|
308
|
+
* Gets VBAGateway MessageThread by key
|
|
309
|
+
* @summary Get VBAGateway MessageThread
|
|
310
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
311
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
312
|
+
* @param {*} [options] Override http request option.
|
|
313
|
+
* @throws {RequiredError}
|
|
314
|
+
* @memberof VBAGatewayMessagingApiInterface
|
|
315
|
+
*/
|
|
316
|
+
getVBAGatewayMessageThread(vbasoftwareDatabase: string, messageThreadKey: number, options?: AxiosRequestConfig): AxiosPromise<MessageThreadVBAResponse>;
|
|
317
|
+
|
|
318
|
+
/**
|
|
319
|
+
* Update VBAGateway MessageThread by key
|
|
320
|
+
* @summary Update VBAGateway MessageThread
|
|
321
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
322
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
323
|
+
* @param {MessageThread} messageThread
|
|
324
|
+
* @param {*} [options] Override http request option.
|
|
325
|
+
* @throws {RequiredError}
|
|
326
|
+
* @memberof VBAGatewayMessagingApiInterface
|
|
327
|
+
*/
|
|
328
|
+
updateVBAGatewayMessageThread(vbasoftwareDatabase: string, messageThreadKey: number, messageThread: MessageThread, options?: AxiosRequestConfig): AxiosPromise<MessageThreadVBAResponse>;
|
|
329
|
+
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* VBAGatewayMessagingApi - object-oriented interface
|
|
334
|
+
* @export
|
|
335
|
+
* @class VBAGatewayMessagingApi
|
|
336
|
+
* @extends {BaseAPI}
|
|
337
|
+
*/
|
|
338
|
+
export class VBAGatewayMessagingApi extends BaseAPI implements VBAGatewayMessagingApiInterface {
|
|
339
|
+
/**
|
|
340
|
+
* Create a Message wihtin a VBAGateway MessageThread. This operation will insert the new message into the VBAGateway database that is paired with this VBASoftwre database.
|
|
341
|
+
* @summary Create a Message wihtin a VBAGateway MessageThread
|
|
342
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
343
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
344
|
+
* @param {Messages} messages
|
|
345
|
+
* @param {*} [options] Override http request option.
|
|
346
|
+
* @throws {RequiredError}
|
|
347
|
+
* @memberof VBAGatewayMessagingApi
|
|
348
|
+
*/
|
|
349
|
+
public createVBAGatewayMessage(vbasoftwareDatabase: string, messageThreadKey: number, messages: Messages, options?: AxiosRequestConfig) {
|
|
350
|
+
return VBAGatewayMessagingApiFp(this.configuration).createVBAGatewayMessage(vbasoftwareDatabase, messageThreadKey, messages, options).then((request) => request(this.axios, this.basePath));
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* Gets VBAGateway MessageThread by key
|
|
355
|
+
* @summary Get VBAGateway MessageThread
|
|
356
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
357
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
358
|
+
* @param {*} [options] Override http request option.
|
|
359
|
+
* @throws {RequiredError}
|
|
360
|
+
* @memberof VBAGatewayMessagingApi
|
|
361
|
+
*/
|
|
362
|
+
public getVBAGatewayMessageThread(vbasoftwareDatabase: string, messageThreadKey: number, options?: AxiosRequestConfig) {
|
|
363
|
+
return VBAGatewayMessagingApiFp(this.configuration).getVBAGatewayMessageThread(vbasoftwareDatabase, messageThreadKey, options).then((request) => request(this.axios, this.basePath));
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* Update VBAGateway MessageThread by key
|
|
368
|
+
* @summary Update VBAGateway MessageThread
|
|
369
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
370
|
+
* @param {number} messageThreadKey MessageThread_Key
|
|
371
|
+
* @param {MessageThread} messageThread
|
|
372
|
+
* @param {*} [options] Override http request option.
|
|
373
|
+
* @throws {RequiredError}
|
|
374
|
+
* @memberof VBAGatewayMessagingApi
|
|
375
|
+
*/
|
|
376
|
+
public updateVBAGatewayMessageThread(vbasoftwareDatabase: string, messageThreadKey: number, messageThread: MessageThread, options?: AxiosRequestConfig) {
|
|
377
|
+
return VBAGatewayMessagingApiFp(this.configuration).updateVBAGatewayMessageThread(vbasoftwareDatabase, messageThreadKey, messageThread, options).then((request) => request(this.axios, this.basePath));
|
|
378
|
+
}
|
|
379
|
+
}
|
package/api/vbareports-api.ts
CHANGED
|
@@ -22,6 +22,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { VBAReportListVBAResponse } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { VBAReportVBAResponse } from '../models';
|
|
25
27
|
/**
|
|
26
28
|
* VBAReportsApi - axios parameter creator
|
|
27
29
|
* @export
|
|
@@ -29,9 +31,57 @@ import { VBAReportListVBAResponse } from '../models';
|
|
|
29
31
|
export const VBAReportsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
32
|
return {
|
|
31
33
|
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary
|
|
34
|
-
* @param {string} vbasoftwareDatabase
|
|
34
|
+
* Retrieves a specific VBA Report by its unique definition key.
|
|
35
|
+
* @summary Retrieve VBA Report
|
|
36
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
37
|
+
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
38
|
+
* @param {*} [options] Override http request option.
|
|
39
|
+
* @throws {RequiredError}
|
|
40
|
+
*/
|
|
41
|
+
getVBAReport: async (vbasoftwareDatabase: string, reportDefinitionKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
42
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
43
|
+
assertParamExists('getVBAReport', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
44
|
+
// verify required parameter 'reportDefinitionKey' is not null or undefined
|
|
45
|
+
assertParamExists('getVBAReport', 'reportDefinitionKey', reportDefinitionKey)
|
|
46
|
+
const localVarPath = `/reports/{reportDefinition_Key}`
|
|
47
|
+
.replace(`{${"reportDefinition_Key"}}`, encodeURIComponent(String(reportDefinitionKey)));
|
|
48
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
49
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
50
|
+
let baseOptions;
|
|
51
|
+
if (configuration) {
|
|
52
|
+
baseOptions = configuration.baseOptions;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
56
|
+
const localVarHeaderParameter = {} as any;
|
|
57
|
+
const localVarQueryParameter = {} as any;
|
|
58
|
+
|
|
59
|
+
// authentication apiKeyAuth required
|
|
60
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
61
|
+
|
|
62
|
+
// authentication bearerAuth required
|
|
63
|
+
// http bearer authentication required
|
|
64
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
65
|
+
|
|
66
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
67
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
73
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
74
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
75
|
+
|
|
76
|
+
return {
|
|
77
|
+
url: toPathString(localVarUrlObj),
|
|
78
|
+
options: localVarRequestOptions,
|
|
79
|
+
};
|
|
80
|
+
},
|
|
81
|
+
/**
|
|
82
|
+
* Retrieves a list of all available VBA Reports.
|
|
83
|
+
* @summary List VBA Reports
|
|
84
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
35
85
|
* @param {*} [options] Override http request option.
|
|
36
86
|
* @throws {RequiredError}
|
|
37
87
|
*/
|
|
@@ -83,9 +133,21 @@ export const VBAReportsApiFp = function(configuration?: Configuration) {
|
|
|
83
133
|
const localVarAxiosParamCreator = VBAReportsApiAxiosParamCreator(configuration)
|
|
84
134
|
return {
|
|
85
135
|
/**
|
|
86
|
-
*
|
|
87
|
-
* @summary
|
|
88
|
-
* @param {string} vbasoftwareDatabase
|
|
136
|
+
* Retrieves a specific VBA Report by its unique definition key.
|
|
137
|
+
* @summary Retrieve VBA Report
|
|
138
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
139
|
+
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
140
|
+
* @param {*} [options] Override http request option.
|
|
141
|
+
* @throws {RequiredError}
|
|
142
|
+
*/
|
|
143
|
+
async getVBAReport(vbasoftwareDatabase: string, reportDefinitionKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAReportVBAResponse>> {
|
|
144
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVBAReport(vbasoftwareDatabase, reportDefinitionKey, options);
|
|
145
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
146
|
+
},
|
|
147
|
+
/**
|
|
148
|
+
* Retrieves a list of all available VBA Reports.
|
|
149
|
+
* @summary List VBA Reports
|
|
150
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
89
151
|
* @param {*} [options] Override http request option.
|
|
90
152
|
* @throws {RequiredError}
|
|
91
153
|
*/
|
|
@@ -104,9 +166,20 @@ export const VBAReportsApiFactory = function (configuration?: Configuration, bas
|
|
|
104
166
|
const localVarFp = VBAReportsApiFp(configuration)
|
|
105
167
|
return {
|
|
106
168
|
/**
|
|
107
|
-
*
|
|
108
|
-
* @summary
|
|
109
|
-
* @param {string} vbasoftwareDatabase
|
|
169
|
+
* Retrieves a specific VBA Report by its unique definition key.
|
|
170
|
+
* @summary Retrieve VBA Report
|
|
171
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
172
|
+
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
173
|
+
* @param {*} [options] Override http request option.
|
|
174
|
+
* @throws {RequiredError}
|
|
175
|
+
*/
|
|
176
|
+
getVBAReport(vbasoftwareDatabase: string, reportDefinitionKey: number, options?: any): AxiosPromise<VBAReportVBAResponse> {
|
|
177
|
+
return localVarFp.getVBAReport(vbasoftwareDatabase, reportDefinitionKey, options).then((request) => request(axios, basePath));
|
|
178
|
+
},
|
|
179
|
+
/**
|
|
180
|
+
* Retrieves a list of all available VBA Reports.
|
|
181
|
+
* @summary List VBA Reports
|
|
182
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
110
183
|
* @param {*} [options] Override http request option.
|
|
111
184
|
* @throws {RequiredError}
|
|
112
185
|
*/
|
|
@@ -123,9 +196,20 @@ export const VBAReportsApiFactory = function (configuration?: Configuration, bas
|
|
|
123
196
|
*/
|
|
124
197
|
export interface VBAReportsApiInterface {
|
|
125
198
|
/**
|
|
126
|
-
*
|
|
127
|
-
* @summary
|
|
128
|
-
* @param {string} vbasoftwareDatabase
|
|
199
|
+
* Retrieves a specific VBA Report by its unique definition key.
|
|
200
|
+
* @summary Retrieve VBA Report
|
|
201
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
202
|
+
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
203
|
+
* @param {*} [options] Override http request option.
|
|
204
|
+
* @throws {RequiredError}
|
|
205
|
+
* @memberof VBAReportsApiInterface
|
|
206
|
+
*/
|
|
207
|
+
getVBAReport(vbasoftwareDatabase: string, reportDefinitionKey: number, options?: AxiosRequestConfig): AxiosPromise<VBAReportVBAResponse>;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Retrieves a list of all available VBA Reports.
|
|
211
|
+
* @summary List VBA Reports
|
|
212
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
129
213
|
* @param {*} [options] Override http request option.
|
|
130
214
|
* @throws {RequiredError}
|
|
131
215
|
* @memberof VBAReportsApiInterface
|
|
@@ -142,9 +226,22 @@ export interface VBAReportsApiInterface {
|
|
|
142
226
|
*/
|
|
143
227
|
export class VBAReportsApi extends BaseAPI implements VBAReportsApiInterface {
|
|
144
228
|
/**
|
|
145
|
-
*
|
|
146
|
-
* @summary
|
|
147
|
-
* @param {string} vbasoftwareDatabase
|
|
229
|
+
* Retrieves a specific VBA Report by its unique definition key.
|
|
230
|
+
* @summary Retrieve VBA Report
|
|
231
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
232
|
+
* @param {number} reportDefinitionKey Unique key for the VBA Report definition.
|
|
233
|
+
* @param {*} [options] Override http request option.
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
* @memberof VBAReportsApi
|
|
236
|
+
*/
|
|
237
|
+
public getVBAReport(vbasoftwareDatabase: string, reportDefinitionKey: number, options?: AxiosRequestConfig) {
|
|
238
|
+
return VBAReportsApiFp(this.configuration).getVBAReport(vbasoftwareDatabase, reportDefinitionKey, options).then((request) => request(this.axios, this.basePath));
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Retrieves a list of all available VBA Reports.
|
|
243
|
+
* @summary List VBA Reports
|
|
244
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
148
245
|
* @param {*} [options] Override http request option.
|
|
149
246
|
* @throws {RequiredError}
|
|
150
247
|
* @memberof VBAReportsApi
|
package/api.ts
CHANGED
|
@@ -197,8 +197,16 @@ export * from './api/claim-disabilities-api';
|
|
|
197
197
|
export * from './api/claim-disability-deductions-api';
|
|
198
198
|
export * from './api/claim-ex-codes-api';
|
|
199
199
|
export * from './api/claim-funded-statuses-api';
|
|
200
|
+
export * from './api/claim-invoice-api';
|
|
201
|
+
export * from './api/claim-invoice-adjustment-reasons-api';
|
|
202
|
+
export * from './api/claim-invoice-adjustment-received-api';
|
|
203
|
+
export * from './api/claim-invoice-adjustments-api';
|
|
204
|
+
export * from './api/claim-invoice-details-api';
|
|
205
|
+
export * from './api/claim-invoice-payments-api';
|
|
206
|
+
export * from './api/claim-invoice-received-api';
|
|
200
207
|
export * from './api/claim-lives-api';
|
|
201
208
|
export * from './api/claim-occurrence-codes-api';
|
|
209
|
+
export * from './api/claim-payments-api';
|
|
202
210
|
export * from './api/claim-pre-batch-details-api';
|
|
203
211
|
export * from './api/claim-pre-batches-api';
|
|
204
212
|
export * from './api/claim-prompt-pays-api';
|
|
@@ -615,6 +623,7 @@ export * from './api/plans-api';
|
|
|
615
623
|
export * from './api/policy-forfeiture-ext-api';
|
|
616
624
|
export * from './api/policy-forfeiture-ext-details-api';
|
|
617
625
|
export * from './api/policy-statuses-api';
|
|
626
|
+
export * from './api/prem-invoice-api';
|
|
618
627
|
export * from './api/prem-invoice-list-api';
|
|
619
628
|
export * from './api/prem-rate-types-api';
|
|
620
629
|
export * from './api/premium-claim-api';
|
|
@@ -842,6 +851,7 @@ export * from './api/user-group-mappings-api';
|
|
|
842
851
|
export * from './api/user-groups-api';
|
|
843
852
|
export * from './api/user-log-types-api';
|
|
844
853
|
export * from './api/user-note-access-api';
|
|
854
|
+
export * from './api/vbagateway-messaging-api';
|
|
845
855
|
export * from './api/vbagateway-subscription-api';
|
|
846
856
|
export * from './api/vbagateway-subscription-detail-api';
|
|
847
857
|
export * from './api/vbainterface-idcodes-api';
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface AccountingWithholdCheckConfig
|
|
21
|
+
*/
|
|
22
|
+
export interface AccountingWithholdCheckConfig {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof AccountingWithholdCheckConfig
|
|
27
|
+
*/
|
|
28
|
+
'payee_ID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<number>}
|
|
32
|
+
* @memberof AccountingWithholdCheckConfig
|
|
33
|
+
*/
|
|
34
|
+
'claimNumbers'?: Array<number> | null;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { AccumulatorAddedAccumDetailResult } from './accumulator-added-accum-detail-result';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface AccumulatorAddedAccumDetailResultListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface AccumulatorAddedAccumDetailResultListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<AccumulatorAddedAccumDetailResult>}
|
|
29
|
+
* @memberof AccumulatorAddedAccumDetailResultListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<AccumulatorAddedAccumDetailResult> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof AccumulatorAddedAccumDetailResultListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof AccumulatorAddedAccumDetailResultListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|