@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250115.9 → 1.20250124.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.
@@ -0,0 +1,166 @@
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 type { Configuration } from '../configuration';
17
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
18
+ import globalAxios from 'axios';
19
+ // Some imports not used depending on template conditions
20
+ // @ts-ignore
21
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
22
+ // @ts-ignore
23
+ import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
24
+ // @ts-ignore
25
+ import type { VBAUserStatusVBAResponse } from '../models';
26
+ /**
27
+ * UserStatusApi - axios parameter creator
28
+ * @export
29
+ */
30
+ export const UserStatusApiAxiosParamCreator = function (configuration?: Configuration) {
31
+ return {
32
+ /**
33
+ * Retrieves the current status of the user, including reminders and login status.
34
+ * @summary Get User Status
35
+ * @param {string} vbasoftwareDatabase Target database
36
+ * @param {string} userId User ID
37
+ * @param {*} [options] Override http request option.
38
+ * @throws {RequiredError}
39
+ */
40
+ getUserStatus: async (vbasoftwareDatabase: string, userId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
41
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
42
+ assertParamExists('getUserStatus', 'vbasoftwareDatabase', vbasoftwareDatabase)
43
+ // verify required parameter 'userId' is not null or undefined
44
+ assertParamExists('getUserStatus', 'userId', userId)
45
+ const localVarPath = `/users/{userId}/status`
46
+ .replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
47
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
48
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
49
+ let baseOptions;
50
+ if (configuration) {
51
+ baseOptions = configuration.baseOptions;
52
+ }
53
+
54
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
55
+ const localVarHeaderParameter = {} as any;
56
+ const localVarQueryParameter = {} as any;
57
+
58
+ // authentication apiKeyAuth required
59
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
60
+
61
+ // authentication bearerAuth required
62
+ // http bearer authentication required
63
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
64
+
65
+
66
+
67
+ if (vbasoftwareDatabase != null) {
68
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
69
+ }
70
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
71
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
72
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
73
+
74
+ return {
75
+ url: toPathString(localVarUrlObj),
76
+ options: localVarRequestOptions,
77
+ };
78
+ },
79
+ }
80
+ };
81
+
82
+ /**
83
+ * UserStatusApi - functional programming interface
84
+ * @export
85
+ */
86
+ export const UserStatusApiFp = function(configuration?: Configuration) {
87
+ const localVarAxiosParamCreator = UserStatusApiAxiosParamCreator(configuration)
88
+ return {
89
+ /**
90
+ * Retrieves the current status of the user, including reminders and login status.
91
+ * @summary Get User Status
92
+ * @param {string} vbasoftwareDatabase Target database
93
+ * @param {string} userId User ID
94
+ * @param {*} [options] Override http request option.
95
+ * @throws {RequiredError}
96
+ */
97
+ async getUserStatus(vbasoftwareDatabase: string, userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAUserStatusVBAResponse>> {
98
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getUserStatus(vbasoftwareDatabase, userId, options);
99
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
100
+ const localVarOperationServerBasePath = operationServerMap['UserStatusApi.getUserStatus']?.[localVarOperationServerIndex]?.url;
101
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
102
+ },
103
+ }
104
+ };
105
+
106
+ /**
107
+ * UserStatusApi - factory interface
108
+ * @export
109
+ */
110
+ export const UserStatusApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
111
+ const localVarFp = UserStatusApiFp(configuration)
112
+ return {
113
+ /**
114
+ * Retrieves the current status of the user, including reminders and login status.
115
+ * @summary Get User Status
116
+ * @param {string} vbasoftwareDatabase Target database
117
+ * @param {string} userId User ID
118
+ * @param {*} [options] Override http request option.
119
+ * @throws {RequiredError}
120
+ */
121
+ getUserStatus(vbasoftwareDatabase: string, userId: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAUserStatusVBAResponse> {
122
+ return localVarFp.getUserStatus(vbasoftwareDatabase, userId, options).then((request) => request(axios, basePath));
123
+ },
124
+ };
125
+ };
126
+
127
+ /**
128
+ * UserStatusApi - interface
129
+ * @export
130
+ * @interface UserStatusApi
131
+ */
132
+ export interface UserStatusApiInterface {
133
+ /**
134
+ * Retrieves the current status of the user, including reminders and login status.
135
+ * @summary Get User Status
136
+ * @param {string} vbasoftwareDatabase Target database
137
+ * @param {string} userId User ID
138
+ * @param {*} [options] Override http request option.
139
+ * @throws {RequiredError}
140
+ * @memberof UserStatusApiInterface
141
+ */
142
+ getUserStatus(vbasoftwareDatabase: string, userId: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAUserStatusVBAResponse>;
143
+
144
+ }
145
+
146
+ /**
147
+ * UserStatusApi - object-oriented interface
148
+ * @export
149
+ * @class UserStatusApi
150
+ * @extends {BaseAPI}
151
+ */
152
+ export class UserStatusApi extends BaseAPI implements UserStatusApiInterface {
153
+ /**
154
+ * Retrieves the current status of the user, including reminders and login status.
155
+ * @summary Get User Status
156
+ * @param {string} vbasoftwareDatabase Target database
157
+ * @param {string} userId User ID
158
+ * @param {*} [options] Override http request option.
159
+ * @throws {RequiredError}
160
+ * @memberof UserStatusApi
161
+ */
162
+ public getUserStatus(vbasoftwareDatabase: string, userId: string, options?: RawAxiosRequestConfig) {
163
+ return UserStatusApiFp(this.configuration).getUserStatus(vbasoftwareDatabase, userId, options).then((request) => request(this.axios, this.basePath));
164
+ }
165
+ }
166
+
package/api.ts CHANGED
@@ -436,6 +436,7 @@ export * from './api/group-contract-plans-api';
436
436
  export * from './api/group-contract-tiers-api';
437
437
  export * from './api/group-contracts-api';
438
438
  export * from './api/group-coverage-calculations-api';
439
+ export * from './api/group-day-interval-api';
439
440
  export * from './api/group-disenroll-affected-claims-api';
440
441
  export * from './api/group-division-captives-api';
441
442
  export * from './api/group-division-cobras-api';
@@ -854,6 +855,7 @@ export * from './api/user-group-mappings-api';
854
855
  export * from './api/user-groups-api';
855
856
  export * from './api/user-log-types-api';
856
857
  export * from './api/user-note-access-api';
858
+ export * from './api/user-status-api';
857
859
  export * from './api/vbagateway-messaging-api';
858
860
  export * from './api/vbagateway-subscription-api';
859
861
  export * from './api/vbagateway-subscription-detail-api';
package/configuration.ts CHANGED
@@ -89,7 +89,13 @@ export class Configuration {
89
89
  this.accessToken = param.accessToken;
90
90
  this.basePath = param.basePath;
91
91
  this.serverIndex = param.serverIndex;
92
- this.baseOptions = param.baseOptions;
92
+ this.baseOptions = {
93
+ headers: {
94
+ ...param.baseOptions?.headers,
95
+ 'User-Agent': "OpenAPI-Generator/typescript-axios"
96
+ },
97
+ ...param.baseOptions
98
+ };
93
99
  this.formDataCtor = param.formDataCtor;
94
100
  }
95
101
 
@@ -179,6 +179,48 @@ export interface CoveredBenefit {
179
179
  * @memberof CoveredBenefit
180
180
  */
181
181
  'ooP_Calc_Option'?: string | null;
182
+ /**
183
+ * Identifies whether the Benefit Code is covered for this Plan. This can be populated from the \'Plan\' screen.
184
+ * @type {boolean}
185
+ * @memberof CoveredBenefit
186
+ */
187
+ 'covered'?: boolean;
188
+ /**
189
+ * Indicates that the selected Benefit applies to Primary Care Physician only. If a claim is processed against this Benefit Code without a PCP, the claim will apply the “PCP Only“ Ex Code defined on the VBA Control Panel.
190
+ * @type {boolean}
191
+ * @memberof CoveredBenefit
192
+ */
193
+ 'pcP_Only'?: boolean;
194
+ /**
195
+ * Checking this option indicates that the Benefit is covered only when services are rendered by an In-Network provider. If a claim is processed against this Benefit Code as Out of Network, the claim will apply the “Covered In-Network Only“ Ex Code defined on the VBA Control Panel.
196
+ * @type {boolean}
197
+ * @memberof CoveredBenefit
198
+ */
199
+ 'covered_In_Net_Only'?: boolean;
200
+ /**
201
+ * This flag determines if adjudication calculates the Deductible before the CoPay is calculated.
202
+ * @type {boolean}
203
+ * @memberof CoveredBenefit
204
+ */
205
+ 'deductible_Before_CoPay'?: boolean;
206
+ /**
207
+ * Identifies whether the Benefit Code is excluded for this Plan. This allows the benefit to be on a claim preventing an error for no matching benefit and then applying a not covered ex code.
208
+ * @type {boolean}
209
+ * @memberof CoveredBenefit
210
+ */
211
+ 'excluded'?: boolean;
212
+ /**
213
+ * Indicates that an Ex Code should be applied to any service line with this Benefit Code.
214
+ * @type {boolean}
215
+ * @memberof CoveredBenefit
216
+ */
217
+ 'apply_Ex_Code'?: boolean;
218
+ /**
219
+ * If the Apply_Ex_Code flag is set, this field will contain the Ex Code to be applied.
220
+ * @type {string}
221
+ * @memberof CoveredBenefit
222
+ */
223
+ 'ex_Code'?: string | null;
182
224
  /**
183
225
  *
184
226
  * @type {Array<PlanBenefitLevel>}
@@ -0,0 +1,54 @@
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 GroupContractCopyConfig
21
+ */
22
+ export interface GroupContractCopyConfig {
23
+ /**
24
+ * The Group ID of the Contract holding the source records for this copy
25
+ * @type {string}
26
+ * @memberof GroupContractCopyConfig
27
+ */
28
+ 'group_ID'?: string | null;
29
+ /**
30
+ * The Division ID of the Contract holding the source records for this copy
31
+ * @type {string}
32
+ * @memberof GroupContractCopyConfig
33
+ */
34
+ 'division_ID'?: string | null;
35
+ /**
36
+ * The Contract Start of the Contract holding the source records for this copy
37
+ * @type {string}
38
+ * @memberof GroupContractCopyConfig
39
+ */
40
+ 'coverage_Start'?: string;
41
+ /**
42
+ * List of Division IDs to have the source records copied to. The desintation Division ID MUST have a matching contract to the source contract
43
+ * @type {Array<string>}
44
+ * @memberof GroupContractCopyConfig
45
+ */
46
+ 'apply_Division_ID'?: Array<string> | null;
47
+ /**
48
+ * The user ID that will be reflected on the newly created (copied) records.
49
+ * @type {string}
50
+ * @memberof GroupContractCopyConfig
51
+ */
52
+ 'user_ID'?: string | null;
53
+ }
54
+
@@ -0,0 +1,51 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { Debug } from './debug';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { GroupDayInterval } from './group-day-interval';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { VBAProblemDetails } from './vbaproblem-details';
25
+
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface GroupDayIntervalListVBAResponse
30
+ */
31
+ export interface GroupDayIntervalListVBAResponse {
32
+ /**
33
+ *
34
+ * @type {Array<GroupDayInterval>}
35
+ * @memberof GroupDayIntervalListVBAResponse
36
+ */
37
+ 'data'?: Array<GroupDayInterval> | null;
38
+ /**
39
+ *
40
+ * @type {VBAProblemDetails}
41
+ * @memberof GroupDayIntervalListVBAResponse
42
+ */
43
+ 'error'?: VBAProblemDetails;
44
+ /**
45
+ *
46
+ * @type {Debug}
47
+ * @memberof GroupDayIntervalListVBAResponse
48
+ */
49
+ 'debug'?: Debug;
50
+ }
51
+
@@ -0,0 +1,51 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { Debug } from './debug';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { GroupDayInterval } from './group-day-interval';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { VBAProblemDetails } from './vbaproblem-details';
25
+
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface GroupDayIntervalVBAResponse
30
+ */
31
+ export interface GroupDayIntervalVBAResponse {
32
+ /**
33
+ *
34
+ * @type {GroupDayInterval}
35
+ * @memberof GroupDayIntervalVBAResponse
36
+ */
37
+ 'data'?: GroupDayInterval;
38
+ /**
39
+ *
40
+ * @type {VBAProblemDetails}
41
+ * @memberof GroupDayIntervalVBAResponse
42
+ */
43
+ 'error'?: VBAProblemDetails;
44
+ /**
45
+ *
46
+ * @type {Debug}
47
+ * @memberof GroupDayIntervalVBAResponse
48
+ */
49
+ 'debug'?: Debug;
50
+ }
51
+
@@ -0,0 +1,78 @@
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 GroupDayInterval
21
+ */
22
+ export interface GroupDayInterval {
23
+ /**
24
+ * The Group this Day Interval belongs to
25
+ * @type {string}
26
+ * @memberof GroupDayInterval
27
+ */
28
+ 'group_ID': string;
29
+ /**
30
+ * Which Year this Group Day Interval is Note: This field is marked as NOT NULL in the database and therefore required by the API.
31
+ * @type {number}
32
+ * @memberof GroupDayInterval
33
+ */
34
+ 'interval_Year': number;
35
+ /**
36
+ * Which Month this Group Day Interval is Note: This field is marked as NOT NULL in the database and therefore required by the API.
37
+ * @type {number}
38
+ * @memberof GroupDayInterval
39
+ */
40
+ 'interval_Month': number;
41
+ /**
42
+ * Which Day this Group Day Interval is Note: This field is marked as NOT NULL in the database and therefore required by the API.
43
+ * @type {number}
44
+ * @memberof GroupDayInterval
45
+ */
46
+ 'interval_Day': number;
47
+ /**
48
+ * Date record was first added to the system
49
+ * @type {string}
50
+ * @memberof GroupDayInterval
51
+ */
52
+ 'entry_Date'?: string;
53
+ /**
54
+ * User that first added the record to the system
55
+ * @type {string}
56
+ * @memberof GroupDayInterval
57
+ */
58
+ 'entry_User'?: string | null;
59
+ /**
60
+ * Whether or not the date this record belongs to is a Payday or not Note: This field is marked as NOT NULL in the database and therefore required by the API.
61
+ * @type {boolean}
62
+ * @memberof GroupDayInterval
63
+ */
64
+ 'payday': boolean;
65
+ /**
66
+ * Date the record was last updated in the system
67
+ * @type {string}
68
+ * @memberof GroupDayInterval
69
+ */
70
+ 'update_Date'?: string;
71
+ /**
72
+ * User that last updated the record in the system
73
+ * @type {string}
74
+ * @memberof GroupDayInterval
75
+ */
76
+ 'update_User'?: string | null;
77
+ }
78
+
package/models/index.ts CHANGED
@@ -1233,6 +1233,7 @@ export * from './group-company-data-ex-code-override';
1233
1233
  export * from './group-company-data-ex-code-override-list-vbaresponse';
1234
1234
  export * from './group-company-data-ex-code-override-vbaresponse';
1235
1235
  export * from './group-contract';
1236
+ export * from './group-contract-copy-config';
1236
1237
  export * from './group-contract-list-vbaresponse';
1237
1238
  export * from './group-contract-plan';
1238
1239
  export * from './group-contract-plan-list-vbaresponse';
@@ -1251,6 +1252,9 @@ export * from './group-contract-tier-list-vbaresponse';
1251
1252
  export * from './group-contract-tier-vbaresponse';
1252
1253
  export * from './group-contract-vbaresponse';
1253
1254
  export * from './group-criteria';
1255
+ export * from './group-day-interval';
1256
+ export * from './group-day-interval-list-vbaresponse';
1257
+ export * from './group-day-interval-vbaresponse';
1254
1258
  export * from './group-division';
1255
1259
  export * from './group-division-captive';
1256
1260
  export * from './group-division-captive-list-vbaresponse';
@@ -2556,6 +2560,9 @@ export * from './vbaprocess-log-list-vbaresponse';
2556
2560
  export * from './vbaprocess-log-vbaresponse';
2557
2561
  export * from './vbaprocess-parameter';
2558
2562
  export * from './vbaprocess-parameter-vbaresponse';
2563
+ export * from './vbaprocess-payment-file';
2564
+ export * from './vbaprocess-payment-file-response';
2565
+ export * from './vbaprocess-payment-file-response-vbaresponse';
2559
2566
  export * from './vbaprocess-vbaresponse';
2560
2567
  export * from './vbareins-contract-trans-amount';
2561
2568
  export * from './vbareins-contract-trans-amount-vbaresponse';
@@ -2569,6 +2576,8 @@ export * from './vbareport';
2569
2576
  export * from './vbareport-list-vbaresponse';
2570
2577
  export * from './vbareport-vbaresponse';
2571
2578
  export * from './vbassologin-config';
2579
+ export * from './vbauser-status';
2580
+ export * from './vbauser-status-vbaresponse';
2572
2581
  export * from './verify-mfadevice-setup-request';
2573
2582
  export * from './verify-mfadevice-setup-response';
2574
2583
  export * from './verify-mfadevice-setup-response-vbaresponse';
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { PremInvoiceSelfAdmin } from './prem-invoice-self-admin';
16
19
 
17
20
  /**
18
21
  *
@@ -27,7 +30,7 @@ export interface PremInvoiceApplyPayment {
27
30
  */
28
31
  'invoice_Key': number;
29
32
  /**
30
- * Required for: ApplyPaymentSubscriber ApplyPaymentSubscriberPayorID ApplyPaymentSubscriberPlanType Not used for: ApplyPaymentHeaderAdjustment
33
+ * Required for: ApplyPaymentSubscriber ApplyPaymentSubscriberPayorID ApplyPaymentSubscriberPlanType ApplyPaymentSelfAdmin Not used for: ApplyPaymentHeaderAdjustment
31
34
  * @type {string}
32
35
  * @memberof PremInvoiceApplyPayment
33
36
  */
@@ -74,5 +77,11 @@ export interface PremInvoiceApplyPayment {
74
77
  * @memberof PremInvoiceApplyPayment
75
78
  */
76
79
  'user_ID': string;
80
+ /**
81
+ * If using the ApplyPaymentSelfAdmin process, you pass in the PremInvoiceSelfAdmins to apply the payment to. For non-self-admin invoices leave this empty
82
+ * @type {Array<PremInvoiceSelfAdmin>}
83
+ * @memberof PremInvoiceApplyPayment
84
+ */
85
+ 'premInvoiceSelfAdmins'?: Array<PremInvoiceSelfAdmin> | null;
77
86
  }
78
87
 
@@ -0,0 +1,51 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { Debug } from './debug';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { VBAProblemDetails } from './vbaproblem-details';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { VBAProcessPaymentFileResponse } from './vbaprocess-payment-file-response';
25
+
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface VBAProcessPaymentFileResponseVBAResponse
30
+ */
31
+ export interface VBAProcessPaymentFileResponseVBAResponse {
32
+ /**
33
+ *
34
+ * @type {VBAProcessPaymentFileResponse}
35
+ * @memberof VBAProcessPaymentFileResponseVBAResponse
36
+ */
37
+ 'data'?: VBAProcessPaymentFileResponse;
38
+ /**
39
+ *
40
+ * @type {VBAProblemDetails}
41
+ * @memberof VBAProcessPaymentFileResponseVBAResponse
42
+ */
43
+ 'error'?: VBAProblemDetails;
44
+ /**
45
+ *
46
+ * @type {Debug}
47
+ * @memberof VBAProcessPaymentFileResponseVBAResponse
48
+ */
49
+ 'debug'?: Debug;
50
+ }
51
+
@@ -0,0 +1,48 @@
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 VBAProcessPaymentFileResponse
21
+ */
22
+ export interface VBAProcessPaymentFileResponse {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof VBAProcessPaymentFileResponse
27
+ */
28
+ 'payment_Created_Count'?: number;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof VBAProcessPaymentFileResponse
33
+ */
34
+ 'invoice_Payment_Posted_Count'?: number;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof VBAProcessPaymentFileResponse
39
+ */
40
+ 'invoice_Closed_Count'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof VBAProcessPaymentFileResponse
45
+ */
46
+ 'invoice_Left_Open_Count'?: number;
47
+ }
48
+