@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230121.1 → 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.
Files changed (38) hide show
  1. package/.openapi-generator/FILES +21 -0
  2. package/api/adv-accounting-api.ts +10 -26
  3. package/api/commission-rates-api.ts +98 -0
  4. package/api/event-args-api.ts +15 -15
  5. package/api/group-contract-plans-api.ts +105 -0
  6. package/api/group-contracts-api.ts +105 -0
  7. package/api/group-divisions-api.ts +115 -0
  8. package/api/group-volumes-api.ts +98 -0
  9. package/api/payor-accounts-api.ts +75 -130
  10. package/api/plan-auth-penalty-benefits-api.ts +232 -91
  11. package/api/plan-benefit-cascades-api.ts +15 -23
  12. package/api/premium-rates-api.ts +107 -0
  13. package/models/auth-adjustment.ts +6 -0
  14. package/models/commission-rate-division-config.ts +43 -0
  15. package/models/commission-rate-nested-list-vbaresponse.ts +45 -0
  16. package/models/commission-rate-nested.ts +43 -0
  17. package/models/commission-rate-plan-config.ts +43 -0
  18. package/models/commission-rate-rate.ts +36 -0
  19. package/models/copy-group-division.ts +132 -0
  20. package/models/group-volume-benefit-config.ts +43 -0
  21. package/models/group-volume-division-config.ts +43 -0
  22. package/models/group-volume-nested-list-vbaresponse.ts +45 -0
  23. package/models/group-volume-nested.ts +43 -0
  24. package/models/group-volume-plan-config.ts +43 -0
  25. package/models/index.ts +21 -0
  26. package/models/member-prior-accum.ts +28 -28
  27. package/models/plan-auth-penalty-benefit.ts +24 -0
  28. package/models/prem-rate-basis-config.ts +43 -0
  29. package/models/prem-rate-category-config.ts +43 -0
  30. package/models/prem-rate-division-config.ts +43 -0
  31. package/models/prem-rate-nested-list-vbaresponse.ts +45 -0
  32. package/models/prem-rate-nested.ts +43 -0
  33. package/models/prem-rate-plan-config.ts +43 -0
  34. package/models/prem-rate-rate.ts +36 -0
  35. package/models/vbagroup-contract-list-vbaresponse.ts +45 -0
  36. package/models/vbagroup-contract.ts +55 -0
  37. package/models/volume.ts +42 -0
  38. package/package.json +1 -1
@@ -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 { GroupVolumePlanConfig } from './group-volume-plan-config';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GroupVolumeDivisionConfig
22
+ */
23
+ export interface GroupVolumeDivisionConfig {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof GroupVolumeDivisionConfig
28
+ */
29
+ 'division_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof GroupVolumeDivisionConfig
34
+ */
35
+ 'division_Name'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<GroupVolumePlanConfig>}
39
+ * @memberof GroupVolumeDivisionConfig
40
+ */
41
+ 'planConfigs'?: Array<GroupVolumePlanConfig> | null;
42
+ }
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 { GroupVolumeNested } from './group-volume-nested';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface GroupVolumeNestedListVBAResponse
24
+ */
25
+ export interface GroupVolumeNestedListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<GroupVolumeNested>}
29
+ * @memberof GroupVolumeNestedListVBAResponse
30
+ */
31
+ 'data'?: Array<GroupVolumeNested> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof GroupVolumeNestedListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof GroupVolumeNestedListVBAResponse
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 { GroupVolumeDivisionConfig } from './group-volume-division-config';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GroupVolumeNested
22
+ */
23
+ export interface GroupVolumeNested {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof GroupVolumeNested
28
+ */
29
+ 'group_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof GroupVolumeNested
34
+ */
35
+ 'group_Name'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<GroupVolumeDivisionConfig>}
39
+ * @memberof GroupVolumeNested
40
+ */
41
+ 'divisionConfigs'?: Array<GroupVolumeDivisionConfig> | 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 { 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
@@ -617,7 +617,12 @@ export * from './commission-rate-cluster-rate';
617
617
  export * from './commission-rate-cluster-rate-list-vbaresponse';
618
618
  export * from './commission-rate-cluster-rate-vbaresponse';
619
619
  export * from './commission-rate-cluster-vbaresponse';
620
+ export * from './commission-rate-division-config';
620
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';
621
626
  export * from './commission-rate-subscriber';
622
627
  export * from './commission-rate-subscriber-list-vbaresponse';
623
628
  export * from './commission-rate-subscriber-vbaresponse';
@@ -674,6 +679,7 @@ export * from './contact-vbaresponse';
674
679
  export * from './contribution-schedule';
675
680
  export * from './contribution-schedule-list-vbaresponse';
676
681
  export * from './contribution-schedule-vbaresponse';
682
+ export * from './copy-group-division';
677
683
  export * from './cost-contain-context4-case-index';
678
684
  export * from './cost-contain-context4-case-index-list-vbaresponse';
679
685
  export * from './cost-contain-context4-case-index-vbaresponse';
@@ -1157,7 +1163,12 @@ export * from './group-vbaplan-type-subscriber-id';
1157
1163
  export * from './group-vbaplan-type-subscriber-idlist-vbaresponse';
1158
1164
  export * from './group-vbaplan-type-subscriber-idvbaresponse';
1159
1165
  export * from './group-volume';
1166
+ export * from './group-volume-benefit-config';
1167
+ export * from './group-volume-division-config';
1160
1168
  export * from './group-volume-list-vbaresponse';
1169
+ export * from './group-volume-nested';
1170
+ export * from './group-volume-nested-list-vbaresponse';
1171
+ export * from './group-volume-plan-config';
1161
1172
  export * from './group-volume-vbaresponse';
1162
1173
  export * from './groups';
1163
1174
  export * from './groups-list-vbaresponse';
@@ -1623,11 +1634,14 @@ export * from './prem-rate-age-type';
1623
1634
  export * from './prem-rate-age-type-list-vbaresponse';
1624
1635
  export * from './prem-rate-age-type-vbaresponse';
1625
1636
  export * from './prem-rate-basis';
1637
+ export * from './prem-rate-basis-config';
1626
1638
  export * from './prem-rate-basis-list-vbaresponse';
1627
1639
  export * from './prem-rate-basis-vbaresponse';
1628
1640
  export * from './prem-rate-category';
1641
+ export * from './prem-rate-category-config';
1629
1642
  export * from './prem-rate-category-list-vbaresponse';
1630
1643
  export * from './prem-rate-category-vbaresponse';
1644
+ export * from './prem-rate-division-config';
1631
1645
  export * from './prem-rate-exclude';
1632
1646
  export * from './prem-rate-exclude-list-vbaresponse';
1633
1647
  export * from './prem-rate-exclude-vbaresponse';
@@ -1641,6 +1655,8 @@ export * from './prem-rate-min-max-detail-list-vbaresponse';
1641
1655
  export * from './prem-rate-min-max-detail-vbaresponse';
1642
1656
  export * from './prem-rate-min-max-list-vbaresponse';
1643
1657
  export * from './prem-rate-min-max-vbaresponse';
1658
+ export * from './prem-rate-nested';
1659
+ export * from './prem-rate-nested-list-vbaresponse';
1644
1660
  export * from './prem-rate-pace';
1645
1661
  export * from './prem-rate-pace-list-vbaresponse';
1646
1662
  export * from './prem-rate-pace-type';
@@ -1650,6 +1666,8 @@ export * from './prem-rate-pace-vbaresponse';
1650
1666
  export * from './prem-rate-payee';
1651
1667
  export * from './prem-rate-payee-list-vbaresponse';
1652
1668
  export * from './prem-rate-payee-vbaresponse';
1669
+ export * from './prem-rate-plan-config';
1670
+ export * from './prem-rate-rate';
1653
1671
  export * from './prem-rate-vbaresponse';
1654
1672
  export * from './prem-rate-zip';
1655
1673
  export * from './prem-rate-zip-list-vbaresponse';
@@ -2165,6 +2183,8 @@ export * from './vbagateway-subscription-detail-list-vbaresponse';
2165
2183
  export * from './vbagateway-subscription-detail-vbaresponse';
2166
2184
  export * from './vbagateway-subscription-list-vbaresponse';
2167
2185
  export * from './vbagateway-subscription-vbaresponse';
2186
+ export * from './vbagroup-contract';
2187
+ export * from './vbagroup-contract-list-vbaresponse';
2168
2188
  export * from './vbainterface';
2169
2189
  export * from './vbainterface-idcode';
2170
2190
  export * from './vbainterface-idcode-list-vbaresponse';
@@ -2190,6 +2210,7 @@ export * from './vbaprocess-log-vbaresponse';
2190
2210
  export * from './vbaprocess-parameter';
2191
2211
  export * from './vbaprocess-parameter-vbaresponse';
2192
2212
  export * from './vbaprocess-vbaresponse';
2213
+ export * from './volume';
2193
2214
  export * from './workflow';
2194
2215
  export * from './workflow-detail';
2195
2216
  export * from './workflow-detail-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
+
@@ -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 { PremRatePlanConfig } from './prem-rate-plan-config';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface PremRateDivisionConfig
22
+ */
23
+ export interface PremRateDivisionConfig {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PremRateDivisionConfig
28
+ */
29
+ 'division_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PremRateDivisionConfig
34
+ */
35
+ 'division_Name'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<PremRatePlanConfig>}
39
+ * @memberof PremRateDivisionConfig
40
+ */
41
+ 'planConfigs'?: Array<PremRatePlanConfig> | null;
42
+ }
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
+