@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250711.1 → 1.20250811.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 +22 -2
- package/api/accounting-api.ts +100 -0
- package/api/adv-accounting-api.ts +100 -0
- package/api/adv-billing-api.ts +120 -0
- package/api/adv-claim-api.ts +226 -17
- package/api/claim-queue-details-api.ts +106 -0
- package/api/premium-distributions-api.ts +120 -0
- package/api/state-surcharge-basis-api.ts +158 -0
- package/api/vbareporting-api.ts +15 -15
- package/api/vbareports-api.ts +5 -5
- package/api/vbassist-api.ts +134 -26
- package/api/visium-code-ex-code-api.ts +685 -0
- package/api.ts +2 -0
- package/docs/AccountingApi.md +57 -0
- package/docs/AdvAccountingApi.md +57 -0
- package/docs/AdvBillingApi.md +65 -0
- package/docs/AdvClaimApi.md +121 -5
- package/docs/ChatFeedbackRequest.md +27 -0
- package/docs/ChatRequest.md +25 -0
- package/docs/ClaimQueueDetailsApi.md +59 -0
- package/docs/ClaimQueueProcessTrack.md +4 -0
- package/docs/CompanyData.md +8 -0
- package/docs/CostContainVisiumExCode.md +32 -0
- package/docs/CostContainVisiumExCodeListVBAResponse.md +24 -0
- package/docs/CostContainVisiumExCodeVBAResponse.md +24 -0
- package/docs/Credit.md +22 -0
- package/docs/{ChatMessage.md → Debit.md} +7 -5
- package/docs/PlanBenefitCopy.md +2 -2
- package/docs/PremInvoiceAdjustment.md +24 -24
- package/docs/PremiumDistributionsApi.md +65 -0
- package/docs/ReportSeriesStep.md +4 -0
- package/docs/SelectedField.md +4 -0
- package/docs/StateSurcharge.md +4 -0
- package/docs/StateSurchargeBasisApi.md +60 -0
- package/docs/VBADisabilityAdvisorVBAResponse.md +24 -0
- package/docs/VBAFullClaim.md +4 -0
- package/docs/VBAFullClaimBatch.md +4 -0
- package/docs/VBAReportingApi.md +5 -3
- package/docs/VBAReportsApi.md +2 -1
- package/docs/VBAUpdateRecon.md +24 -0
- package/docs/VBAssistApi.md +67 -7
- package/docs/VisiumCodeExCodeApi.md +354 -0
- package/models/chat-feedback-request.ts +48 -0
- package/models/chat-request.ts +42 -0
- package/models/claim-queue-process-track.ts +12 -0
- package/models/company-data.ts +24 -0
- package/models/cost-contain-visium-ex-code-list-vbaresponse.ts +51 -0
- package/models/cost-contain-visium-ex-code-vbaresponse.ts +51 -0
- package/models/cost-contain-visium-ex-code.ts +66 -0
- package/models/credit.ts +36 -0
- package/models/{chat-message.ts → debit.ts} +12 -6
- package/models/index.ts +9 -1
- package/models/plan-benefit-copy.ts +1 -1
- package/models/prem-invoice-adjustment.ts +24 -24
- package/models/report-series-step.ts +12 -0
- package/models/selected-field.ts +12 -0
- package/models/state-surcharge.ts +12 -0
- package/models/vbadisability-advisor-vbaresponse.ts +51 -0
- package/models/vbafull-claim-batch.ts +12 -0
- package/models/vbafull-claim.ts +12 -0
- package/models/vbaupdate-recon.ts +48 -0
- package/package.json +1 -1
|
@@ -17,14 +17,20 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface Debit
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface Debit {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
25
|
-
* @type {
|
|
26
|
-
* @memberof
|
|
24
|
+
*
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof Debit
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
28
|
+
'selected'?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof Debit
|
|
33
|
+
*/
|
|
34
|
+
'check_ID'?: number;
|
|
29
35
|
}
|
|
30
36
|
|
package/models/index.ts
CHANGED
|
@@ -384,7 +384,8 @@ export * from './case-status-reason-list-vbaresponse';
|
|
|
384
384
|
export * from './case-status-reason-vbaresponse';
|
|
385
385
|
export * from './case-status-vbaresponse';
|
|
386
386
|
export * from './change-subscriber-idrequest';
|
|
387
|
-
export * from './chat-
|
|
387
|
+
export * from './chat-feedback-request';
|
|
388
|
+
export * from './chat-request';
|
|
388
389
|
export * from './check-batch';
|
|
389
390
|
export * from './check-batch-list-vbaresponse';
|
|
390
391
|
export * from './check-batch-vbaresponse';
|
|
@@ -808,6 +809,9 @@ export * from './cost-contain-context4-option-pricing';
|
|
|
808
809
|
export * from './cost-contain-context4-option-pricing-list-vbaresponse';
|
|
809
810
|
export * from './cost-contain-context4-option-pricing-vbaresponse';
|
|
810
811
|
export * from './cost-contain-context4-option-vbaresponse';
|
|
812
|
+
export * from './cost-contain-visium-ex-code';
|
|
813
|
+
export * from './cost-contain-visium-ex-code-list-vbaresponse';
|
|
814
|
+
export * from './cost-contain-visium-ex-code-vbaresponse';
|
|
811
815
|
export * from './cost-contain-zelis-claim-detail-reprice';
|
|
812
816
|
export * from './cost-contain-zelis-claim-detail-reprice-list-vbaresponse';
|
|
813
817
|
export * from './cost-contain-zelis-claim-detail-reprice-vbaresponse';
|
|
@@ -902,6 +906,7 @@ export * from './cred-termination-vbaresponse';
|
|
|
902
906
|
export * from './cred-type';
|
|
903
907
|
export * from './cred-type-list-vbaresponse';
|
|
904
908
|
export * from './cred-type-vbaresponse';
|
|
909
|
+
export * from './credit';
|
|
905
910
|
export * from './criteria';
|
|
906
911
|
export * from './criteria-detail';
|
|
907
912
|
export * from './criteria-list-vbaresponse';
|
|
@@ -927,6 +932,7 @@ export * from './database-connection';
|
|
|
927
932
|
export * from './day-interval';
|
|
928
933
|
export * from './day-interval-list-vbaresponse';
|
|
929
934
|
export * from './day-interval-vbaresponse';
|
|
935
|
+
export * from './debit';
|
|
930
936
|
export * from './debug';
|
|
931
937
|
export * from './diagnostic-code';
|
|
932
938
|
export * from './diagnostic-code-group';
|
|
@@ -2563,6 +2569,7 @@ export * from './vbacommission-rate-subscriber';
|
|
|
2563
2569
|
export * from './vbacommission-rate-subscriber-list-vbaresponse';
|
|
2564
2570
|
export * from './vbadisability-advisor';
|
|
2565
2571
|
export * from './vbadisability-advisor-deduction';
|
|
2572
|
+
export * from './vbadisability-advisor-vbaresponse';
|
|
2566
2573
|
export * from './vbadownload-report-request';
|
|
2567
2574
|
export * from './vbadownload-report-response';
|
|
2568
2575
|
export * from './vbafull-claim';
|
|
@@ -2646,6 +2653,7 @@ export * from './vbareporting-report-list-vbaresponse';
|
|
|
2646
2653
|
export * from './vbareporting-report-vbaresponse';
|
|
2647
2654
|
export * from './vbassologin-config';
|
|
2648
2655
|
export * from './vbaupdate-claim-funded-status';
|
|
2656
|
+
export * from './vbaupdate-recon';
|
|
2649
2657
|
export * from './vbauser-status';
|
|
2650
2658
|
export * from './vbauser-status-vbaresponse';
|
|
2651
2659
|
export * from './vbavbagateway-process-request';
|
|
@@ -21,145 +21,145 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface PremInvoiceAdjustment {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Unique identifier for the adjustment Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof PremInvoiceAdjustment
|
|
27
27
|
*/
|
|
28
28
|
'invoiceAdjustment_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Amount of the adjustment
|
|
31
31
|
* @type {number}
|
|
32
32
|
* @memberof PremInvoiceAdjustment
|
|
33
33
|
*/
|
|
34
34
|
'adjustment_Amount'?: number | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Comments made for this adjustment
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof PremInvoiceAdjustment
|
|
39
39
|
*/
|
|
40
40
|
'adjustment_Comment'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Key of the rate the adjustment is for
|
|
43
43
|
* @type {number}
|
|
44
44
|
* @memberof PremInvoiceAdjustment
|
|
45
45
|
*/
|
|
46
46
|
'adjustment_PremRate_Key'?: number | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Reason for this adjustment. References record in InvoiceReason.
|
|
49
49
|
* @type {number}
|
|
50
50
|
* @memberof PremInvoiceAdjustment
|
|
51
51
|
*/
|
|
52
52
|
'adjustment_Reason'?: number | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Received amounts for this adjustment
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof PremInvoiceAdjustment
|
|
57
57
|
*/
|
|
58
58
|
'adjustment_Received'?: number | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Flag used to identify this adjustment as an automatically created adjustment Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
61
61
|
* @type {boolean}
|
|
62
62
|
* @memberof PremInvoiceAdjustment
|
|
63
63
|
*/
|
|
64
64
|
'auto_Adjust': boolean;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* Flag used to prevent the retro logic from creating backout adjustments for this adjustment Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
67
67
|
* @type {boolean}
|
|
68
68
|
* @memberof PremInvoiceAdjustment
|
|
69
69
|
*/
|
|
70
70
|
'avoid_Retro': boolean;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Unique identifier for the Division
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof PremInvoiceAdjustment
|
|
75
75
|
*/
|
|
76
76
|
'division_ID'?: string | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Effective Date of the adjustment
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof PremInvoiceAdjustment
|
|
81
81
|
*/
|
|
82
82
|
'effective_Date'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Date record was first added to the system
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof PremInvoiceAdjustment
|
|
87
87
|
*/
|
|
88
88
|
'entry_Date'?: string;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* User that first added the record to the system
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof PremInvoiceAdjustment
|
|
93
93
|
*/
|
|
94
94
|
'entry_User'?: string | null;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Unique identifier for the Group
|
|
97
97
|
* @type {string}
|
|
98
98
|
* @memberof PremInvoiceAdjustment
|
|
99
99
|
*/
|
|
100
100
|
'group_ID'?: string | null;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Key to the invoice the adjustment is for
|
|
103
103
|
* @type {number}
|
|
104
104
|
* @memberof PremInvoiceAdjustment
|
|
105
105
|
*/
|
|
106
106
|
'invoice_Key'?: number | null;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Flag used to identify this adjustment was created from exceeding a minimum or maximum amount Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
109
109
|
* @type {boolean}
|
|
110
110
|
* @memberof PremInvoiceAdjustment
|
|
111
111
|
*/
|
|
112
112
|
'min_Max_Adjust': boolean;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* Flag used to determine when the amount is negative Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
115
115
|
* @type {boolean}
|
|
116
116
|
* @memberof PremInvoiceAdjustment
|
|
117
117
|
*/
|
|
118
118
|
'negative_Adjustment': boolean;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* Key of the original rate the adjustment is for
|
|
121
121
|
* @type {number}
|
|
122
122
|
* @memberof PremInvoiceAdjustment
|
|
123
123
|
*/
|
|
124
124
|
'premRate_Key'?: number | null;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* Original invoice key for retro adjustments
|
|
127
127
|
* @type {number}
|
|
128
128
|
* @memberof PremInvoiceAdjustment
|
|
129
129
|
*/
|
|
130
130
|
'retro_Adjustment_Invoice_Key'?: number | null;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* Flag used to identify this adjustment as Self-Admin Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
133
133
|
* @type {boolean}
|
|
134
134
|
* @memberof PremInvoiceAdjustment
|
|
135
135
|
*/
|
|
136
136
|
'selfAdmin_Adj': boolean;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Unique identifier for the Subscriber
|
|
139
139
|
* @type {string}
|
|
140
140
|
* @memberof PremInvoiceAdjustment
|
|
141
141
|
*/
|
|
142
142
|
'subscriber_ID'?: string | null;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Date the record was last updated in the system
|
|
145
145
|
* @type {string}
|
|
146
146
|
* @memberof PremInvoiceAdjustment
|
|
147
147
|
*/
|
|
148
148
|
'update_Date'?: string;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* User that last updated the record in the system
|
|
151
151
|
* @type {string}
|
|
152
152
|
* @memberof PremInvoiceAdjustment
|
|
153
153
|
*/
|
|
154
154
|
'update_User'?: string | null;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* Flag used to determine when the premium is used to calculate the adjustment Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
157
157
|
* @type {boolean}
|
|
158
158
|
* @memberof PremInvoiceAdjustment
|
|
159
159
|
*/
|
|
160
160
|
'use_Premium': boolean;
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* Volume for this adjustment
|
|
163
163
|
* @type {number}
|
|
164
164
|
* @memberof PremInvoiceAdjustment
|
|
165
165
|
*/
|
|
@@ -500,5 +500,17 @@ export interface ReportSeriesStep {
|
|
|
500
500
|
* @memberof ReportSeriesStep
|
|
501
501
|
*/
|
|
502
502
|
'sftP_File_Name'?: string | null;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @type {string}
|
|
506
|
+
* @memberof ReportSeriesStep
|
|
507
|
+
*/
|
|
508
|
+
'activity_ID'?: string | null;
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
* @type {string}
|
|
512
|
+
* @memberof ReportSeriesStep
|
|
513
|
+
*/
|
|
514
|
+
'step_Error_Message'?: string | null;
|
|
503
515
|
}
|
|
504
516
|
|
package/models/selected-field.ts
CHANGED
|
@@ -32,5 +32,17 @@ export interface SelectedField {
|
|
|
32
32
|
* @memberof SelectedField
|
|
33
33
|
*/
|
|
34
34
|
'columnName': string;
|
|
35
|
+
/**
|
|
36
|
+
* Identifies the sort priority of the column. If null, the column will not be sorted.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof SelectedField
|
|
39
|
+
*/
|
|
40
|
+
'sortPriority'?: number | null;
|
|
41
|
+
/**
|
|
42
|
+
* Identifies if the column should be sorted in descending order. If null, the column will not be sorted ascending. This will only sort if the SortPriority is provided.
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof SelectedField
|
|
45
|
+
*/
|
|
46
|
+
'sortDescending'?: boolean | null;
|
|
35
47
|
}
|
|
36
48
|
|
|
@@ -92,5 +92,17 @@ export interface StateSurcharge {
|
|
|
92
92
|
* @memberof StateSurcharge
|
|
93
93
|
*/
|
|
94
94
|
'update_User'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof StateSurcharge
|
|
99
|
+
*/
|
|
100
|
+
'surcharge_Basis'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof StateSurcharge
|
|
105
|
+
*/
|
|
106
|
+
'surcharge_Provider_ID'?: string | null;
|
|
95
107
|
}
|
|
96
108
|
|
|
@@ -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 { VBADisabilityAdvisor } from './vbadisability-advisor';
|
|
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 VBADisabilityAdvisorVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface VBADisabilityAdvisorVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBADisabilityAdvisor}
|
|
35
|
+
* @memberof VBADisabilityAdvisorVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: VBADisabilityAdvisor;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof VBADisabilityAdvisorVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof VBADisabilityAdvisorVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -128,6 +128,12 @@ export interface VBAFullClaimBatch {
|
|
|
128
128
|
* @memberof VBAFullClaimBatch
|
|
129
129
|
*/
|
|
130
130
|
'division_Name'?: string | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof VBAFullClaimBatch
|
|
135
|
+
*/
|
|
136
|
+
'provider_ID'?: string | null;
|
|
131
137
|
/**
|
|
132
138
|
*
|
|
133
139
|
* @type {string}
|
|
@@ -176,6 +182,12 @@ export interface VBAFullClaimBatch {
|
|
|
176
182
|
* @memberof VBAFullClaimBatch
|
|
177
183
|
*/
|
|
178
184
|
'provider_Federal_ID'?: string | null;
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {string}
|
|
188
|
+
* @memberof VBAFullClaimBatch
|
|
189
|
+
*/
|
|
190
|
+
'provider_MAID'?: string | null;
|
|
179
191
|
/**
|
|
180
192
|
*
|
|
181
193
|
* @type {string}
|
package/models/vbafull-claim.ts
CHANGED
|
@@ -167,6 +167,12 @@ export interface VBAFullClaim {
|
|
|
167
167
|
* @memberof VBAFullClaim
|
|
168
168
|
*/
|
|
169
169
|
'network_Description'?: string | null;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof VBAFullClaim
|
|
174
|
+
*/
|
|
175
|
+
'provider_ID'?: string | null;
|
|
170
176
|
/**
|
|
171
177
|
*
|
|
172
178
|
* @type {string}
|
|
@@ -215,6 +221,12 @@ export interface VBAFullClaim {
|
|
|
215
221
|
* @memberof VBAFullClaim
|
|
216
222
|
*/
|
|
217
223
|
'provider_Federal_ID'?: string | null;
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {string}
|
|
227
|
+
* @memberof VBAFullClaim
|
|
228
|
+
*/
|
|
229
|
+
'provider_MAID'?: string | null;
|
|
218
230
|
/**
|
|
219
231
|
*
|
|
220
232
|
* @type {string}
|
|
@@ -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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Credit } from './credit';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { Debit } from './debit';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface VBAUpdateRecon
|
|
27
|
+
*/
|
|
28
|
+
export interface VBAUpdateRecon {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof VBAUpdateRecon
|
|
33
|
+
*/
|
|
34
|
+
'reconcile_Key'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {Array<Debit>}
|
|
38
|
+
* @memberof VBAUpdateRecon
|
|
39
|
+
*/
|
|
40
|
+
'debits'?: Array<Debit> | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {Array<Credit>}
|
|
44
|
+
* @memberof VBAUpdateRecon
|
|
45
|
+
*/
|
|
46
|
+
'credits'?: Array<Credit> | null;
|
|
47
|
+
}
|
|
48
|
+
|