@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,84 @@
|
|
|
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 BillingAutoApplyConfig
|
|
21
|
+
*/
|
|
22
|
+
export interface BillingAutoApplyConfig {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof BillingAutoApplyConfig
|
|
27
|
+
*/
|
|
28
|
+
'invoice_Key'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof BillingAutoApplyConfig
|
|
33
|
+
*/
|
|
34
|
+
'premPayment_Key'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof BillingAutoApplyConfig
|
|
39
|
+
*/
|
|
40
|
+
'payment_Posted'?: number | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BillingAutoApplyConfig
|
|
45
|
+
*/
|
|
46
|
+
'payment_Posted_Date'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof BillingAutoApplyConfig
|
|
51
|
+
*/
|
|
52
|
+
'payment_ID'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BillingAutoApplyConfig
|
|
57
|
+
*/
|
|
58
|
+
'received_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof BillingAutoApplyConfig
|
|
63
|
+
*/
|
|
64
|
+
'autoApplyOption'?: number;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof BillingAutoApplyConfig
|
|
69
|
+
*/
|
|
70
|
+
'autoApplyAdjustmentOption'?: number;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {Array<string>}
|
|
74
|
+
* @memberof BillingAutoApplyConfig
|
|
75
|
+
*/
|
|
76
|
+
'autoApplyCategories'?: Array<string> | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {Array<string>}
|
|
80
|
+
* @memberof BillingAutoApplyConfig
|
|
81
|
+
*/
|
|
82
|
+
'autoApplySubscribers'?: Array<string> | null;
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -0,0 +1,140 @@
|
|
|
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 { PremRate } from './prem-rate';
|
|
17
|
+
import { PremRatePayee } from './prem-rate-payee';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface BillingRateModifyConfig
|
|
23
|
+
*/
|
|
24
|
+
export interface BillingRateModifyConfig {
|
|
25
|
+
/**
|
|
26
|
+
* Used in both Rate Copy and Rate Change
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof BillingRateModifyConfig
|
|
29
|
+
*/
|
|
30
|
+
'rate_Basis'?: string | null;
|
|
31
|
+
/**
|
|
32
|
+
* Used in both Rate Copy and Rate Change
|
|
33
|
+
* @type {boolean}
|
|
34
|
+
* @memberof BillingRateModifyConfig
|
|
35
|
+
*/
|
|
36
|
+
'keep_Rate_Basis'?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Used in both Rate Copy and Rate Change
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof BillingRateModifyConfig
|
|
41
|
+
*/
|
|
42
|
+
'rate_Category'?: string | null;
|
|
43
|
+
/**
|
|
44
|
+
* Used in both Rate Copy and Rate Change
|
|
45
|
+
* @type {boolean}
|
|
46
|
+
* @memberof BillingRateModifyConfig
|
|
47
|
+
*/
|
|
48
|
+
'keep_Rate_Category'?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Used in both Rate Copy and Rate Change
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof BillingRateModifyConfig
|
|
53
|
+
*/
|
|
54
|
+
'plan_ID'?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* Used in both Rate Copy and Rate Change
|
|
57
|
+
* @type {boolean}
|
|
58
|
+
* @memberof BillingRateModifyConfig
|
|
59
|
+
*/
|
|
60
|
+
'keep_Plan_ID'?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Used in both Rate Copy and Rate Change
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof BillingRateModifyConfig
|
|
65
|
+
*/
|
|
66
|
+
'group_ID'?: string | null;
|
|
67
|
+
/**
|
|
68
|
+
* Used in both Rate Copy and Rate Change
|
|
69
|
+
* @type {boolean}
|
|
70
|
+
* @memberof BillingRateModifyConfig
|
|
71
|
+
*/
|
|
72
|
+
'keep_Group_ID'?: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Used in both Rate Copy and Rate Change
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof BillingRateModifyConfig
|
|
77
|
+
*/
|
|
78
|
+
'division_ID'?: string | null;
|
|
79
|
+
/**
|
|
80
|
+
* Used in both Rate Copy and Rate Change
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof BillingRateModifyConfig
|
|
83
|
+
*/
|
|
84
|
+
'keep_Division_ID'?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Used in both Rate Copy and Rate Change
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof BillingRateModifyConfig
|
|
89
|
+
*/
|
|
90
|
+
'premRate_Type'?: string | null;
|
|
91
|
+
/**
|
|
92
|
+
* Used in both Rate Copy and Rate Change 1 - Use Existing; 2 - Update Existing; 3 - Create New;
|
|
93
|
+
* @type {number}
|
|
94
|
+
* @memberof BillingRateModifyConfig
|
|
95
|
+
*/
|
|
96
|
+
'rate_Option'?: number;
|
|
97
|
+
/**
|
|
98
|
+
* Used in both Rate Copy and Rate Change 1 - Use Existing Rates; 2 - Create New Rates; 3 - Add;
|
|
99
|
+
* @type {number}
|
|
100
|
+
* @memberof BillingRateModifyConfig
|
|
101
|
+
*/
|
|
102
|
+
'payee_Option'?: number;
|
|
103
|
+
/**
|
|
104
|
+
* Used only with Rate Change
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof BillingRateModifyConfig
|
|
107
|
+
*/
|
|
108
|
+
'existing_Rate_Term_Date'?: string | null;
|
|
109
|
+
/**
|
|
110
|
+
* Used only with Rate Change
|
|
111
|
+
* @type {string}
|
|
112
|
+
* @memberof BillingRateModifyConfig
|
|
113
|
+
*/
|
|
114
|
+
'new_Rate_Effective_Date'?: string | null;
|
|
115
|
+
/**
|
|
116
|
+
* Used only with Rate Change
|
|
117
|
+
* @type {string}
|
|
118
|
+
* @memberof BillingRateModifyConfig
|
|
119
|
+
*/
|
|
120
|
+
'new_Rate_Term_Date'?: string | null;
|
|
121
|
+
/**
|
|
122
|
+
* Used in both Rate Copy and Rate Change
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @memberof BillingRateModifyConfig
|
|
125
|
+
*/
|
|
126
|
+
'user_ID'?: string | null;
|
|
127
|
+
/**
|
|
128
|
+
* Used in both Rate Copy and Rate Change
|
|
129
|
+
* @type {Array<PremRate>}
|
|
130
|
+
* @memberof BillingRateModifyConfig
|
|
131
|
+
*/
|
|
132
|
+
'premRates'?: Array<PremRate> | null;
|
|
133
|
+
/**
|
|
134
|
+
* Used in both Rate Copy and Rate Change
|
|
135
|
+
* @type {Array<PremRatePayee>}
|
|
136
|
+
* @memberof BillingRateModifyConfig
|
|
137
|
+
*/
|
|
138
|
+
'premRatePayees'?: Array<PremRatePayee> | null;
|
|
139
|
+
}
|
|
140
|
+
|
|
@@ -80,5 +80,17 @@ export interface CapitationGenerate {
|
|
|
80
80
|
* @memberof CapitationGenerate
|
|
81
81
|
*/
|
|
82
82
|
'capitation_Category'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CapitationGenerate
|
|
87
|
+
*/
|
|
88
|
+
'payee_ID'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {Array<number>}
|
|
92
|
+
* @memberof CapitationGenerate
|
|
93
|
+
*/
|
|
94
|
+
'capitationKeys'?: Array<number> | null;
|
|
83
95
|
}
|
|
84
96
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CareCaseClinicalFact {
|
|
23
23
|
/**
|
|
24
|
-
* Identifier for the CareCaseClinicalFact
|
|
24
|
+
* Identifier for the CareCaseClinicalFact Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof CareCaseClinicalFact
|
|
27
27
|
*/
|
|
@@ -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 { ClaimBatchClaimBatchDetail } from './claim-batch-claim-batch-detail';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimBatchClaimBatchDetailListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimBatchClaimBatchDetailListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ClaimBatchClaimBatchDetail>}
|
|
29
|
+
* @memberof ClaimBatchClaimBatchDetailListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ClaimBatchClaimBatchDetail> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ClaimBatchClaimBatchDetailListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ClaimBatchClaimBatchDetailListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -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 { ClaimInvoiceAdjustment } from './claim-invoice-adjustment';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimInvoiceAdjustmentListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimInvoiceAdjustmentListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ClaimInvoiceAdjustment>}
|
|
29
|
+
* @memberof ClaimInvoiceAdjustmentListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ClaimInvoiceAdjustment> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ClaimInvoiceAdjustmentListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ClaimInvoiceAdjustmentListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -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 { ClaimInvoiceAdjustmentReason } from './claim-invoice-adjustment-reason';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimInvoiceAdjustmentReasonListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimInvoiceAdjustmentReasonListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ClaimInvoiceAdjustmentReason>}
|
|
29
|
+
* @memberof ClaimInvoiceAdjustmentReasonListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ClaimInvoiceAdjustmentReason> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ClaimInvoiceAdjustmentReasonListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ClaimInvoiceAdjustmentReasonListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -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 { ClaimInvoiceAdjustmentReason } from './claim-invoice-adjustment-reason';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimInvoiceAdjustmentReasonVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimInvoiceAdjustmentReasonVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ClaimInvoiceAdjustmentReason}
|
|
29
|
+
* @memberof ClaimInvoiceAdjustmentReasonVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ClaimInvoiceAdjustmentReason;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ClaimInvoiceAdjustmentReasonVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ClaimInvoiceAdjustmentReasonVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
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 ClaimInvoiceAdjustmentReason
|
|
21
|
+
*/
|
|
22
|
+
export interface ClaimInvoiceAdjustmentReason {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the Adjustment_Reason Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ClaimInvoiceAdjustmentReason
|
|
27
|
+
*/
|
|
28
|
+
'adjustment_Reason': number;
|
|
29
|
+
/**
|
|
30
|
+
* Description of the Reason
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ClaimInvoiceAdjustmentReason
|
|
33
|
+
*/
|
|
34
|
+
'description': string;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ClaimInvoiceAdjustmentReason
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ClaimInvoiceAdjustmentReason
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ClaimInvoiceAdjustmentReason
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ClaimInvoiceAdjustmentReason
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -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 { ClaimInvoiceAdjustmentReceived } from './claim-invoice-adjustment-received';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimInvoiceAdjustmentReceivedListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimInvoiceAdjustmentReceivedListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ClaimInvoiceAdjustmentReceived>}
|
|
29
|
+
* @memberof ClaimInvoiceAdjustmentReceivedListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ClaimInvoiceAdjustmentReceived> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ClaimInvoiceAdjustmentReceivedListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ClaimInvoiceAdjustmentReceivedListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -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 { ClaimInvoiceAdjustmentReceived } from './claim-invoice-adjustment-received';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimInvoiceAdjustmentReceivedVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimInvoiceAdjustmentReceivedVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ClaimInvoiceAdjustmentReceived}
|
|
29
|
+
* @memberof ClaimInvoiceAdjustmentReceivedVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ClaimInvoiceAdjustmentReceived;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ClaimInvoiceAdjustmentReceivedVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ClaimInvoiceAdjustmentReceivedVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -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 ClaimInvoiceAdjustmentReceived
|
|
21
|
+
*/
|
|
22
|
+
export interface ClaimInvoiceAdjustmentReceived {
|
|
23
|
+
/**
|
|
24
|
+
* Unique Claim Invoice Adjustment Received identifier Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
27
|
+
*/
|
|
28
|
+
'claimInvoiceAdjustmentReceived_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Amount of the Claim Invoice Adjustment Received
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
33
|
+
*/
|
|
34
|
+
'adjustment_Received'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date the Claim Invoice Adjustment Received
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
39
|
+
*/
|
|
40
|
+
'adjustment_Received_Date'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* Unique Claim Invoice Adjustment identifier Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
45
|
+
*/
|
|
46
|
+
'claimInvoiceAdjustment_Key': number;
|
|
47
|
+
/**
|
|
48
|
+
* Unique Payment identifier Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
51
|
+
*/
|
|
52
|
+
'claimPayment_Key': number;
|
|
53
|
+
/**
|
|
54
|
+
* Date record was first added to the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
57
|
+
*/
|
|
58
|
+
'entry_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User that first added the record to the system
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
63
|
+
*/
|
|
64
|
+
'entry_User'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Date the record was last updated in the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
69
|
+
*/
|
|
70
|
+
'update_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* User that last updated the record in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ClaimInvoiceAdjustmentReceived
|
|
75
|
+
*/
|
|
76
|
+
'update_User'?: string | null;
|
|
77
|
+
}
|
|
78
|
+
|