@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230130.2 → 1.20230208.2
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 +18 -3
- package/api/adv-accounting-api.ts +10 -26
- package/api/commission-rates-api.ts +98 -0
- package/api/event-args-api.ts +15 -15
- package/api/group-contract-plans-api.ts +105 -0
- package/api/group-contracts-api.ts +105 -0
- package/api/group-divisions-api.ts +115 -0
- package/api/group-volumes-api.ts +15 -14
- package/api/payor-accounts-api.ts +75 -130
- package/api/plan-auth-penalty-benefits-api.ts +232 -91
- package/api/plan-benefit-cascades-api.ts +15 -23
- package/api/premium-rates-api.ts +107 -0
- package/models/commission-rate-division-config.ts +43 -0
- package/models/commission-rate-nested-list-vbaresponse.ts +45 -0
- package/models/commission-rate-nested.ts +43 -0
- package/models/commission-rate-plan-config.ts +43 -0
- package/models/commission-rate-rate.ts +36 -0
- package/models/copy-group-division.ts +132 -0
- package/models/{benefit-config.ts → group-volume-benefit-config.ts} +5 -5
- package/models/group-volume-division-config.ts +43 -0
- package/models/group-volume-nested.ts +3 -3
- package/models/group-volume-plan-config.ts +43 -0
- package/models/index.ts +18 -3
- package/models/member-prior-accum.ts +28 -28
- package/models/plan-auth-penalty-benefit.ts +24 -0
- package/models/prem-rate-basis-config.ts +43 -0
- package/models/prem-rate-category-config.ts +43 -0
- package/models/{division-config.ts → prem-rate-division-config.ts} +8 -8
- package/models/prem-rate-nested-list-vbaresponse.ts +45 -0
- package/models/prem-rate-nested.ts +43 -0
- package/models/{plan-config.ts → prem-rate-plan-config.ts} +8 -8
- package/models/prem-rate-rate.ts +36 -0
- package/models/vbagroup-contract-list-vbaresponse.ts +45 -0
- package/models/vbagroup-contract.ts +55 -0
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { GroupVolumeDivisionConfig } from './group-volume-division-config';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
@@ -35,9 +35,9 @@ export interface GroupVolumeNested {
|
|
|
35
35
|
'group_Name'?: string | null;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
|
-
* @type {Array<
|
|
38
|
+
* @type {Array<GroupVolumeDivisionConfig>}
|
|
39
39
|
* @memberof GroupVolumeNested
|
|
40
40
|
*/
|
|
41
|
-
'divisionConfigs'?: Array<
|
|
41
|
+
'divisionConfigs'?: Array<GroupVolumeDivisionConfig> | null;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { GroupVolumeBenefitConfig } from './group-volume-benefit-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GroupVolumePlanConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface GroupVolumePlanConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof GroupVolumePlanConfig
|
|
28
|
+
*/
|
|
29
|
+
'plan_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof GroupVolumePlanConfig
|
|
34
|
+
*/
|
|
35
|
+
'plan_Description'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<GroupVolumeBenefitConfig>}
|
|
39
|
+
* @memberof GroupVolumePlanConfig
|
|
40
|
+
*/
|
|
41
|
+
'benefitConfigs'?: Array<GroupVolumeBenefitConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|
package/models/index.ts
CHANGED
|
@@ -61,7 +61,6 @@ export * from './benefit-category-vbaresponse';
|
|
|
61
61
|
export * from './benefit-codes';
|
|
62
62
|
export * from './benefit-codes-list-vbaresponse';
|
|
63
63
|
export * from './benefit-codes-vbaresponse';
|
|
64
|
-
export * from './benefit-config';
|
|
65
64
|
export * from './benefit-diag-codes';
|
|
66
65
|
export * from './benefit-diag-codes-list-vbaresponse';
|
|
67
66
|
export * from './benefit-diag-codes-vbaresponse';
|
|
@@ -618,7 +617,12 @@ export * from './commission-rate-cluster-rate';
|
|
|
618
617
|
export * from './commission-rate-cluster-rate-list-vbaresponse';
|
|
619
618
|
export * from './commission-rate-cluster-rate-vbaresponse';
|
|
620
619
|
export * from './commission-rate-cluster-vbaresponse';
|
|
620
|
+
export * from './commission-rate-division-config';
|
|
621
621
|
export * from './commission-rate-list-vbaresponse';
|
|
622
|
+
export * from './commission-rate-nested';
|
|
623
|
+
export * from './commission-rate-nested-list-vbaresponse';
|
|
624
|
+
export * from './commission-rate-plan-config';
|
|
625
|
+
export * from './commission-rate-rate';
|
|
622
626
|
export * from './commission-rate-subscriber';
|
|
623
627
|
export * from './commission-rate-subscriber-list-vbaresponse';
|
|
624
628
|
export * from './commission-rate-subscriber-vbaresponse';
|
|
@@ -675,6 +679,7 @@ export * from './contact-vbaresponse';
|
|
|
675
679
|
export * from './contribution-schedule';
|
|
676
680
|
export * from './contribution-schedule-list-vbaresponse';
|
|
677
681
|
export * from './contribution-schedule-vbaresponse';
|
|
682
|
+
export * from './copy-group-division';
|
|
678
683
|
export * from './cost-contain-context4-case-index';
|
|
679
684
|
export * from './cost-contain-context4-case-index-list-vbaresponse';
|
|
680
685
|
export * from './cost-contain-context4-case-index-vbaresponse';
|
|
@@ -829,7 +834,6 @@ export * from './diagnostic-code-vbaresponse';
|
|
|
829
834
|
export * from './disability-plan-limit';
|
|
830
835
|
export * from './disability-plan-limit-list-vbaresponse';
|
|
831
836
|
export * from './disability-plan-limit-vbaresponse';
|
|
832
|
-
export * from './division-config';
|
|
833
837
|
export * from './drug-code';
|
|
834
838
|
export * from './drug-code-list-vbaresponse';
|
|
835
839
|
export * from './drug-code-unit';
|
|
@@ -1159,9 +1163,12 @@ export * from './group-vbaplan-type-subscriber-id';
|
|
|
1159
1163
|
export * from './group-vbaplan-type-subscriber-idlist-vbaresponse';
|
|
1160
1164
|
export * from './group-vbaplan-type-subscriber-idvbaresponse';
|
|
1161
1165
|
export * from './group-volume';
|
|
1166
|
+
export * from './group-volume-benefit-config';
|
|
1167
|
+
export * from './group-volume-division-config';
|
|
1162
1168
|
export * from './group-volume-list-vbaresponse';
|
|
1163
1169
|
export * from './group-volume-nested';
|
|
1164
1170
|
export * from './group-volume-nested-list-vbaresponse';
|
|
1171
|
+
export * from './group-volume-plan-config';
|
|
1165
1172
|
export * from './group-volume-vbaresponse';
|
|
1166
1173
|
export * from './groups';
|
|
1167
1174
|
export * from './groups-list-vbaresponse';
|
|
@@ -1508,7 +1515,6 @@ export * from './plan-benefits-procedures';
|
|
|
1508
1515
|
export * from './plan-benefits-procedures-list-vbaresponse';
|
|
1509
1516
|
export * from './plan-benefits-procedures-vbaresponse';
|
|
1510
1517
|
export * from './plan-benefits-vbaresponse';
|
|
1511
|
-
export * from './plan-config';
|
|
1512
1518
|
export * from './plan-copy';
|
|
1513
1519
|
export * from './plan-diagnosis-age';
|
|
1514
1520
|
export * from './plan-diagnosis-age-list-vbaresponse';
|
|
@@ -1628,11 +1634,14 @@ export * from './prem-rate-age-type';
|
|
|
1628
1634
|
export * from './prem-rate-age-type-list-vbaresponse';
|
|
1629
1635
|
export * from './prem-rate-age-type-vbaresponse';
|
|
1630
1636
|
export * from './prem-rate-basis';
|
|
1637
|
+
export * from './prem-rate-basis-config';
|
|
1631
1638
|
export * from './prem-rate-basis-list-vbaresponse';
|
|
1632
1639
|
export * from './prem-rate-basis-vbaresponse';
|
|
1633
1640
|
export * from './prem-rate-category';
|
|
1641
|
+
export * from './prem-rate-category-config';
|
|
1634
1642
|
export * from './prem-rate-category-list-vbaresponse';
|
|
1635
1643
|
export * from './prem-rate-category-vbaresponse';
|
|
1644
|
+
export * from './prem-rate-division-config';
|
|
1636
1645
|
export * from './prem-rate-exclude';
|
|
1637
1646
|
export * from './prem-rate-exclude-list-vbaresponse';
|
|
1638
1647
|
export * from './prem-rate-exclude-vbaresponse';
|
|
@@ -1646,6 +1655,8 @@ export * from './prem-rate-min-max-detail-list-vbaresponse';
|
|
|
1646
1655
|
export * from './prem-rate-min-max-detail-vbaresponse';
|
|
1647
1656
|
export * from './prem-rate-min-max-list-vbaresponse';
|
|
1648
1657
|
export * from './prem-rate-min-max-vbaresponse';
|
|
1658
|
+
export * from './prem-rate-nested';
|
|
1659
|
+
export * from './prem-rate-nested-list-vbaresponse';
|
|
1649
1660
|
export * from './prem-rate-pace';
|
|
1650
1661
|
export * from './prem-rate-pace-list-vbaresponse';
|
|
1651
1662
|
export * from './prem-rate-pace-type';
|
|
@@ -1655,6 +1666,8 @@ export * from './prem-rate-pace-vbaresponse';
|
|
|
1655
1666
|
export * from './prem-rate-payee';
|
|
1656
1667
|
export * from './prem-rate-payee-list-vbaresponse';
|
|
1657
1668
|
export * from './prem-rate-payee-vbaresponse';
|
|
1669
|
+
export * from './prem-rate-plan-config';
|
|
1670
|
+
export * from './prem-rate-rate';
|
|
1658
1671
|
export * from './prem-rate-vbaresponse';
|
|
1659
1672
|
export * from './prem-rate-zip';
|
|
1660
1673
|
export * from './prem-rate-zip-list-vbaresponse';
|
|
@@ -2170,6 +2183,8 @@ export * from './vbagateway-subscription-detail-list-vbaresponse';
|
|
|
2170
2183
|
export * from './vbagateway-subscription-detail-vbaresponse';
|
|
2171
2184
|
export * from './vbagateway-subscription-list-vbaresponse';
|
|
2172
2185
|
export * from './vbagateway-subscription-vbaresponse';
|
|
2186
|
+
export * from './vbagroup-contract';
|
|
2187
|
+
export * from './vbagroup-contract-list-vbaresponse';
|
|
2173
2188
|
export * from './vbainterface';
|
|
2174
2189
|
export * from './vbainterface-idcode';
|
|
2175
2190
|
export * from './vbainterface-idcode-list-vbaresponse';
|
|
@@ -69,115 +69,115 @@ export interface MemberPriorAccum {
|
|
|
69
69
|
*/
|
|
70
70
|
'added_Accum'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
* Total Allowed amount.
|
|
72
|
+
* Total Allowed amount. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
73
73
|
* @type {number}
|
|
74
74
|
* @memberof MemberPriorAccum
|
|
75
75
|
*/
|
|
76
76
|
'allowed_Amt': number;
|
|
77
77
|
/**
|
|
78
|
-
* Allowed amount that has been used In Network.
|
|
78
|
+
* Allowed amount that has been used In Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
79
79
|
* @type {number}
|
|
80
80
|
* @memberof MemberPriorAccum
|
|
81
81
|
*/
|
|
82
82
|
'allowed_Amt_Net': number;
|
|
83
83
|
/**
|
|
84
|
-
* Allowed amount that has been used Out of Network.
|
|
84
|
+
* Allowed amount that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
85
85
|
* @type {number}
|
|
86
86
|
* @memberof MemberPriorAccum
|
|
87
87
|
*/
|
|
88
88
|
'allowed_Amt_OON': number;
|
|
89
89
|
/**
|
|
90
|
-
* Identifies that the prior accumulator was automatically generated.
|
|
90
|
+
* Identifies that the prior accumulator was automatically generated. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
91
91
|
* @type {boolean}
|
|
92
92
|
* @memberof MemberPriorAccum
|
|
93
93
|
*/
|
|
94
94
|
'auto_Generated': boolean;
|
|
95
95
|
/**
|
|
96
|
-
* Total amount of benefit that has been used.
|
|
96
|
+
* Total amount of benefit that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof MemberPriorAccum
|
|
99
99
|
*/
|
|
100
100
|
'benefit_Used': number;
|
|
101
101
|
/**
|
|
102
|
-
* In network amount of benefit that has been used.
|
|
102
|
+
* In network amount of benefit that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
103
103
|
* @type {number}
|
|
104
104
|
* @memberof MemberPriorAccum
|
|
105
105
|
*/
|
|
106
106
|
'benefit_Used_Net': number;
|
|
107
107
|
/**
|
|
108
|
-
* Amount of benefit that has been used Out of Network.
|
|
108
|
+
* Amount of benefit that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
109
109
|
* @type {number}
|
|
110
110
|
* @memberof MemberPriorAccum
|
|
111
111
|
*/
|
|
112
112
|
'benefit_Used_OON': number;
|
|
113
113
|
/**
|
|
114
|
-
* Amount that has been billed.
|
|
114
|
+
* Amount that has been billed. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
115
115
|
* @type {number}
|
|
116
116
|
* @memberof MemberPriorAccum
|
|
117
117
|
*/
|
|
118
118
|
'billed_Amt': number;
|
|
119
119
|
/**
|
|
120
|
-
* Amount that has been billed In Network.
|
|
120
|
+
* Amount that has been billed In Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
121
121
|
* @type {number}
|
|
122
122
|
* @memberof MemberPriorAccum
|
|
123
123
|
*/
|
|
124
124
|
'billed_Amt_Net': number;
|
|
125
125
|
/**
|
|
126
|
-
* Amount that has been billed Out of Network.
|
|
126
|
+
* Amount that has been billed Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
127
127
|
* @type {number}
|
|
128
128
|
* @memberof MemberPriorAccum
|
|
129
129
|
*/
|
|
130
130
|
'billed_Amt_OON': number;
|
|
131
131
|
/**
|
|
132
|
-
* Total Coordination of Benefits amount that has been used.
|
|
132
|
+
* Total Coordination of Benefits amount that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
133
133
|
* @type {number}
|
|
134
134
|
* @memberof MemberPriorAccum
|
|
135
135
|
*/
|
|
136
136
|
'coB_Amt': number;
|
|
137
137
|
/**
|
|
138
|
-
* In Network Coordination of Benefits amount that has been used.
|
|
138
|
+
* In Network Coordination of Benefits amount that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
139
139
|
* @type {number}
|
|
140
140
|
* @memberof MemberPriorAccum
|
|
141
141
|
*/
|
|
142
142
|
'coB_Amt_Net': number;
|
|
143
143
|
/**
|
|
144
|
-
* Coordination of Benefits amount that has been used Out of Network.
|
|
144
|
+
* Coordination of Benefits amount that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
145
145
|
* @type {number}
|
|
146
146
|
* @memberof MemberPriorAccum
|
|
147
147
|
*/
|
|
148
148
|
'coB_Amt_OON': number;
|
|
149
149
|
/**
|
|
150
|
-
* Total amount of Coinsurance that has been used.
|
|
150
|
+
* Total amount of Coinsurance that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
151
151
|
* @type {number}
|
|
152
152
|
* @memberof MemberPriorAccum
|
|
153
153
|
*/
|
|
154
154
|
'coins_Amt': number;
|
|
155
155
|
/**
|
|
156
|
-
* In Network amount of Coinsurance that has been used.
|
|
156
|
+
* In Network amount of Coinsurance that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
157
157
|
* @type {number}
|
|
158
158
|
* @memberof MemberPriorAccum
|
|
159
159
|
*/
|
|
160
160
|
'coins_Amt_Net': number;
|
|
161
161
|
/**
|
|
162
|
-
* Amount of Coinsurance that has been used Out of Network.
|
|
162
|
+
* Amount of Coinsurance that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
163
163
|
* @type {number}
|
|
164
164
|
* @memberof MemberPriorAccum
|
|
165
165
|
*/
|
|
166
166
|
'coins_Amt_OON': number;
|
|
167
167
|
/**
|
|
168
|
-
* Total amount of Copay that has been used.
|
|
168
|
+
* Total amount of Copay that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
169
169
|
* @type {number}
|
|
170
170
|
* @memberof MemberPriorAccum
|
|
171
171
|
*/
|
|
172
172
|
'copay_Amt': number;
|
|
173
173
|
/**
|
|
174
|
-
* In Network amount of Copay that has been used.
|
|
174
|
+
* In Network amount of Copay that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
175
175
|
* @type {number}
|
|
176
176
|
* @memberof MemberPriorAccum
|
|
177
177
|
*/
|
|
178
178
|
'copay_Amt_Net': number;
|
|
179
179
|
/**
|
|
180
|
-
* Amount of Copay that has been used Out of Network.
|
|
180
|
+
* Amount of Copay that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
181
181
|
* @type {number}
|
|
182
182
|
* @memberof MemberPriorAccum
|
|
183
183
|
*/
|
|
@@ -189,19 +189,19 @@ export interface MemberPriorAccum {
|
|
|
189
189
|
*/
|
|
190
190
|
'currency_ID'?: string | null;
|
|
191
191
|
/**
|
|
192
|
-
* In Network amount of deductible that has been used.
|
|
192
|
+
* In Network amount of deductible that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
193
193
|
* @type {number}
|
|
194
194
|
* @memberof MemberPriorAccum
|
|
195
195
|
*/
|
|
196
196
|
'ded_PPO_Used': number;
|
|
197
197
|
/**
|
|
198
|
-
* Total amount of deductible that has been used.
|
|
198
|
+
* Total amount of deductible that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
199
199
|
* @type {number}
|
|
200
200
|
* @memberof MemberPriorAccum
|
|
201
201
|
*/
|
|
202
202
|
'deductible_Used': number;
|
|
203
203
|
/**
|
|
204
|
-
* Amount of deductible that has been used Out of Network.
|
|
204
|
+
* Amount of deductible that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
205
205
|
* @type {number}
|
|
206
206
|
* @memberof MemberPriorAccum
|
|
207
207
|
*/
|
|
@@ -219,37 +219,37 @@ export interface MemberPriorAccum {
|
|
|
219
219
|
*/
|
|
220
220
|
'entry_User'?: string | null;
|
|
221
221
|
/**
|
|
222
|
-
* Total amount that is not covered.
|
|
222
|
+
* Total amount that is not covered. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
223
223
|
* @type {number}
|
|
224
224
|
* @memberof MemberPriorAccum
|
|
225
225
|
*/
|
|
226
226
|
'not_Covered_Amt': number;
|
|
227
227
|
/**
|
|
228
|
-
* In Network amount that is not covered.
|
|
228
|
+
* In Network amount that is not covered. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
229
229
|
* @type {number}
|
|
230
230
|
* @memberof MemberPriorAccum
|
|
231
231
|
*/
|
|
232
232
|
'not_Covered_Amt_Net': number;
|
|
233
233
|
/**
|
|
234
|
-
* Out of Network amount that is not covered.
|
|
234
|
+
* Out of Network amount that is not covered. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
235
235
|
* @type {number}
|
|
236
236
|
* @memberof MemberPriorAccum
|
|
237
237
|
*/
|
|
238
238
|
'not_Covered_Amt_OON': number;
|
|
239
239
|
/**
|
|
240
|
-
* Total Out of Pocket amount that has been used.
|
|
240
|
+
* Total Out of Pocket amount that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
241
241
|
* @type {number}
|
|
242
242
|
* @memberof MemberPriorAccum
|
|
243
243
|
*/
|
|
244
244
|
'out_Of_Pocket': number;
|
|
245
245
|
/**
|
|
246
|
-
* Amount of Out of Pocket that has been used In Network.
|
|
246
|
+
* Amount of Out of Pocket that has been used In Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
247
247
|
* @type {number}
|
|
248
248
|
* @memberof MemberPriorAccum
|
|
249
249
|
*/
|
|
250
250
|
'out_Of_Pocket_Net': number;
|
|
251
251
|
/**
|
|
252
|
-
* Amount of Out of Pocket that has been used Out of Network.
|
|
252
|
+
* Amount of Out of Pocket that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
253
253
|
* @type {number}
|
|
254
254
|
* @memberof MemberPriorAccum
|
|
255
255
|
*/
|
|
@@ -32,5 +32,29 @@ export interface PlanAuthPenaltyBenefit {
|
|
|
32
32
|
* @memberof PlanAuthPenaltyBenefit
|
|
33
33
|
*/
|
|
34
34
|
'benefit_Code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Date when the record was added to the system.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PlanAuthPenaltyBenefit
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PlanAuthPenaltyBenefit
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date when the record was last updated in the system.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PlanAuthPenaltyBenefit
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PlanAuthPenaltyBenefit
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
35
59
|
}
|
|
36
60
|
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { PremRateRate } from './prem-rate-rate';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PremRateBasisConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface PremRateBasisConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PremRateBasisConfig
|
|
28
|
+
*/
|
|
29
|
+
'premRate_Basis'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PremRateBasisConfig
|
|
34
|
+
*/
|
|
35
|
+
'premRate_Basis_Description'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<PremRateRate>}
|
|
39
|
+
* @memberof PremRateBasisConfig
|
|
40
|
+
*/
|
|
41
|
+
'rates'?: Array<PremRateRate> | null;
|
|
42
|
+
}
|
|
43
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { PremRateBasisConfig } from './prem-rate-basis-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PremRateCategoryConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface PremRateCategoryConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PremRateCategoryConfig
|
|
28
|
+
*/
|
|
29
|
+
'premRate_Category'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PremRateCategoryConfig
|
|
34
|
+
*/
|
|
35
|
+
'premRate_Category_Description'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<PremRateBasisConfig>}
|
|
39
|
+
* @memberof PremRateCategoryConfig
|
|
40
|
+
*/
|
|
41
|
+
'basisConfigs'?: Array<PremRateBasisConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|
|
@@ -13,31 +13,31 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { PremRatePlanConfig } from './prem-rate-plan-config';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
20
|
* @export
|
|
21
|
-
* @interface
|
|
21
|
+
* @interface PremRateDivisionConfig
|
|
22
22
|
*/
|
|
23
|
-
export interface
|
|
23
|
+
export interface PremRateDivisionConfig {
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @type {string}
|
|
27
|
-
* @memberof
|
|
27
|
+
* @memberof PremRateDivisionConfig
|
|
28
28
|
*/
|
|
29
29
|
'division_ID'?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @type {string}
|
|
33
|
-
* @memberof
|
|
33
|
+
* @memberof PremRateDivisionConfig
|
|
34
34
|
*/
|
|
35
35
|
'division_Name'?: string | null;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
|
-
* @type {Array<
|
|
39
|
-
* @memberof
|
|
38
|
+
* @type {Array<PremRatePlanConfig>}
|
|
39
|
+
* @memberof PremRateDivisionConfig
|
|
40
40
|
*/
|
|
41
|
-
'planConfigs'?: Array<
|
|
41
|
+
'planConfigs'?: Array<PremRatePlanConfig> | null;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -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 { Debug } from './debug';
|
|
17
|
+
import { PremRateNested } from './prem-rate-nested';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PremRateNestedListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface PremRateNestedListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<PremRateNested>}
|
|
29
|
+
* @memberof PremRateNestedListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<PremRateNested> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof PremRateNestedListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof PremRateNestedListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { PremRateDivisionConfig } from './prem-rate-division-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PremRateNested
|
|
22
|
+
*/
|
|
23
|
+
export interface PremRateNested {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PremRateNested
|
|
28
|
+
*/
|
|
29
|
+
'group_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PremRateNested
|
|
34
|
+
*/
|
|
35
|
+
'group_Name'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<PremRateDivisionConfig>}
|
|
39
|
+
* @memberof PremRateNested
|
|
40
|
+
*/
|
|
41
|
+
'divisionConfigs'?: Array<PremRateDivisionConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|
|
@@ -13,31 +13,31 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { PremRateCategoryConfig } from './prem-rate-category-config';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
20
|
* @export
|
|
21
|
-
* @interface
|
|
21
|
+
* @interface PremRatePlanConfig
|
|
22
22
|
*/
|
|
23
|
-
export interface
|
|
23
|
+
export interface PremRatePlanConfig {
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @type {string}
|
|
27
|
-
* @memberof
|
|
27
|
+
* @memberof PremRatePlanConfig
|
|
28
28
|
*/
|
|
29
29
|
'plan_ID'?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @type {string}
|
|
33
|
-
* @memberof
|
|
33
|
+
* @memberof PremRatePlanConfig
|
|
34
34
|
*/
|
|
35
35
|
'plan_Description'?: string | null;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
|
-
* @type {Array<
|
|
39
|
-
* @memberof
|
|
38
|
+
* @type {Array<PremRateCategoryConfig>}
|
|
39
|
+
* @memberof PremRatePlanConfig
|
|
40
40
|
*/
|
|
41
|
-
'
|
|
41
|
+
'categoryConfigs'?: Array<PremRateCategoryConfig> | null;
|
|
42
42
|
}
|
|
43
43
|
|