@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230117.1 → 1.20230130.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 +11 -0
- package/api/day-intervals-api.ts +716 -0
- package/api/group-volumes-api.ts +97 -0
- package/api/report-series-api.ts +17 -8
- package/api/waiting-period-types-api.ts +155 -0
- package/api.ts +2 -0
- package/models/auth-adjustment.ts +6 -0
- package/models/auth-diag-codes.ts +24 -0
- package/models/benefit-config.ts +43 -0
- package/models/criteria-detail.ts +10 -10
- package/models/criteria.ts +2 -2
- package/models/day-interval-list-vbaresponse.ts +45 -0
- package/models/day-interval-vbaresponse.ts +45 -0
- package/models/day-interval.ts +144 -0
- package/models/division-config.ts +43 -0
- package/models/group-volume-nested-list-vbaresponse.ts +45 -0
- package/models/group-volume-nested.ts +43 -0
- package/models/groups.ts +30 -0
- package/models/idcard-request.ts +30 -0
- package/models/index.ts +9 -0
- package/models/mem-enrollment-plan.ts +54 -0
- package/models/mem-enrollment-rider.ts +54 -0
- package/models/member-address.ts +36 -0
- package/models/member-beneficiary.ts +36 -0
- package/models/plan-benefit-rate.ts +30 -0
- package/models/plan-benefits.ts +295 -67
- package/models/plan-config.ts +43 -0
- package/models/plan-type.ts +42 -0
- package/models/plans.ts +256 -106
- package/models/sub-enrollment-plan.ts +60 -0
- package/models/sub-enrollment-rider.ts +56 -2
- package/models/subscribers.ts +36 -0
- package/models/users.ts +31 -1
- package/models/volume.ts +42 -0
- package/package.json +1 -1
package/models/plan-benefits.ts
CHANGED
|
@@ -21,409 +21,637 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface PlanBenefits {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Unique identifier assigned to the Plan.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof PlanBenefits
|
|
27
27
|
*/
|
|
28
28
|
'plan_ID': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Unique identifier assigned to the Benefit.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof PlanBenefits
|
|
33
33
|
*/
|
|
34
34
|
'benefit_Code': string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Checking this option indicates that the benefit is covered only when services are rendered as the result of an accident. On the Claim Entry screen, there are options to that specify that a claim is the result of an accident. If a claim is processed against this Benefit Code without one of the accident options picked on the claim, the claim will automatically \'Deny\' or \'Pend\' based on the Ex Code defined on the VBA Control Panel.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof PlanBenefits
|
|
39
39
|
*/
|
|
40
40
|
'accident_Only'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* When checked, if the PlanBenefit_Override_Network_ID is filled out on companydata and the claim is currently out of network, change the Network ID to the PlanBenefit Override Network ID value.
|
|
43
43
|
* @type {boolean}
|
|
44
44
|
* @memberof PlanBenefits
|
|
45
45
|
*/
|
|
46
46
|
'always_Pay_In_Network': boolean;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Total annual amount that the Plan will pay both In Network and Out of Network.
|
|
49
49
|
* @type {number}
|
|
50
50
|
* @memberof PlanBenefits
|
|
51
51
|
*/
|
|
52
52
|
'annual_Max'?: number | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Total annual amount that the Member pays both In Network and Out of Network.
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof PlanBenefits
|
|
57
57
|
*/
|
|
58
58
|
'annual_Max_Member'?: number | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Annual amount that the Plan will pay In Network.
|
|
61
61
|
* @type {number}
|
|
62
62
|
* @memberof PlanBenefits
|
|
63
63
|
*/
|
|
64
64
|
'annual_Max_Net'?: number | null;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* Annual amount that the Member pays In Network.
|
|
67
67
|
* @type {number}
|
|
68
68
|
* @memberof PlanBenefits
|
|
69
69
|
*/
|
|
70
70
|
'annual_Max_Net_Member'?: number | null;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Annual amount that the Plan will pay Out of Network.
|
|
73
73
|
* @type {number}
|
|
74
74
|
* @memberof PlanBenefits
|
|
75
75
|
*/
|
|
76
76
|
'annual_Max_OON'?: number | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Annual amount that the Member pays Out of Network.
|
|
79
79
|
* @type {number}
|
|
80
80
|
* @memberof PlanBenefits
|
|
81
81
|
*/
|
|
82
82
|
'annual_Max_OON_Member'?: number | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Applies the In-Network Co-Insurance amount toward the satisfaction of the Out-of-Network Co-Insurance maximum.
|
|
85
85
|
* @type {boolean}
|
|
86
86
|
* @memberof PlanBenefits
|
|
87
87
|
*/
|
|
88
88
|
'coIns_In_To_Out': boolean;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* In Network Co-Insurance amount for the Family.
|
|
91
91
|
* @type {number}
|
|
92
92
|
* @memberof PlanBenefits
|
|
93
93
|
*/
|
|
94
94
|
'coIns_Max_Mem'?: number | null;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Total Co-Insurance amount for the Member.
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof PlanBenefits
|
|
99
99
|
*/
|
|
100
100
|
'coIns_Max_Net_Mem'?: number | null;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Out of Network Co-Insurance amount for the Family.
|
|
103
103
|
* @type {number}
|
|
104
104
|
* @memberof PlanBenefits
|
|
105
105
|
*/
|
|
106
106
|
'coIns_Max_Net_Sub'?: number | null;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Out of Network Co-Insurance amount for the Member.
|
|
109
109
|
* @type {number}
|
|
110
110
|
* @memberof PlanBenefits
|
|
111
111
|
*/
|
|
112
112
|
'coIns_Max_OON_Mem'?: number | null;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* In Network Co-Insurance amount for the Member.
|
|
115
115
|
* @type {number}
|
|
116
116
|
* @memberof PlanBenefits
|
|
117
117
|
*/
|
|
118
118
|
'coIns_Max_OON_Sub'?: number | null;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* Maximum CoInsurance amount for the Family per plan year.
|
|
121
121
|
* @type {number}
|
|
122
122
|
* @memberof PlanBenefits
|
|
123
123
|
*/
|
|
124
124
|
'coIns_Max_Sub'?: number | null;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* Applies the Out-of-Network Co-Insurance amount toward the satisfaction of the In-Network Co-Insurance maximum.
|
|
127
127
|
* @type {boolean}
|
|
128
128
|
* @memberof PlanBenefits
|
|
129
129
|
*/
|
|
130
130
|
'coIns_Out_To_In': boolean;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* This option is informational only.
|
|
133
133
|
* @type {boolean}
|
|
134
134
|
* @memberof PlanBenefits
|
|
135
135
|
*/
|
|
136
136
|
'coverage_24Hour': boolean;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Identifies whether the Benefit Code is covered for this Plan. This can be populated from the \'Plan\' screen.
|
|
139
139
|
* @type {string}
|
|
140
140
|
* @memberof PlanBenefits
|
|
141
141
|
*/
|
|
142
142
|
'covered': string;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Checking this option indicates that the Benefit is covered only when services are rendered by an In-Network provider. If a claim is processed against this Benefit Code as Out of Network, the claim will apply the “Covered In-Network Only“ Ex Code defined on the VBA Control Panel.
|
|
145
145
|
* @type {string}
|
|
146
146
|
* @memberof PlanBenefits
|
|
147
147
|
*/
|
|
148
148
|
'covered_In_Net_Only'?: string | null;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* Applies the In-Network deductible amount toward the satisfaction of the Out-of-Network deductible.
|
|
151
151
|
* @type {boolean}
|
|
152
152
|
* @memberof PlanBenefits
|
|
153
153
|
*/
|
|
154
154
|
'ded_In_To_Out': boolean;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* Applies the Out-of-Network deductible amount toward the satisfaction of the In-Network deductible.
|
|
157
157
|
* @type {boolean}
|
|
158
158
|
* @memberof PlanBenefits
|
|
159
159
|
*/
|
|
160
160
|
'ded_Out_To_In': boolean;
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* This flag determines if adjudication calculates the Deductible before the CoPay is calculated.
|
|
163
163
|
* @type {boolean}
|
|
164
164
|
* @memberof PlanBenefits
|
|
165
165
|
*/
|
|
166
166
|
'deductible_Before_CoPay': boolean;
|
|
167
167
|
/**
|
|
168
|
-
*
|
|
168
|
+
* Date when the Benefit becomes effective on this plan.
|
|
169
169
|
* @type {string}
|
|
170
170
|
* @memberof PlanBenefits
|
|
171
171
|
*/
|
|
172
172
|
'effective_Date'?: string | null;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
174
|
+
* Date when the record was added to the system.
|
|
175
175
|
* @type {string}
|
|
176
176
|
* @memberof PlanBenefits
|
|
177
177
|
*/
|
|
178
178
|
'entry_Date'?: string;
|
|
179
179
|
/**
|
|
180
|
-
*
|
|
180
|
+
* User that first added the record to the system.
|
|
181
181
|
* @type {string}
|
|
182
182
|
* @memberof PlanBenefits
|
|
183
183
|
*/
|
|
184
184
|
'entry_User'?: string | null;
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Identifies whether the Benefit Code is excluded for this Plan. This can be populated from the \'Plan\' screen.
|
|
187
187
|
* @type {string}
|
|
188
188
|
* @memberof PlanBenefits
|
|
189
189
|
*/
|
|
190
190
|
'excluded': string;
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* This option is informational only.
|
|
193
193
|
* @type {boolean}
|
|
194
194
|
* @memberof PlanBenefits
|
|
195
195
|
*/
|
|
196
196
|
'hospital_1stDay': boolean;
|
|
197
197
|
/**
|
|
198
|
-
*
|
|
198
|
+
* Indicates that the Plan Benefit amount is included in the Plan level Maximum calculations. If this option is not specified, the Benefit is treated as a carve-out and will calculate to its own total.
|
|
199
199
|
* @type {string}
|
|
200
200
|
* @memberof PlanBenefits
|
|
201
201
|
*/
|
|
202
202
|
'include_Amt_In_Plan'?: string | null;
|
|
203
203
|
/**
|
|
204
|
-
*
|
|
204
|
+
* Indicates that the Plan Benefit amount is included in the Plan level Co-Insurance calculations. If this option is not specified, the Benefit is treated as a carve-out and will calculate to its own total.
|
|
205
205
|
* @type {string}
|
|
206
206
|
* @memberof PlanBenefits
|
|
207
207
|
*/
|
|
208
208
|
'include_CoIns_In_Plan'?: string | null;
|
|
209
209
|
/**
|
|
210
|
-
*
|
|
210
|
+
* Indicates that the Plan Benefit amount is included in the Plan level Deductible calculations. If this option is not specified, the Benefit is treated as a carve-out and will calculate to its own total.
|
|
211
211
|
* @type {string}
|
|
212
212
|
* @memberof PlanBenefits
|
|
213
213
|
*/
|
|
214
214
|
'include_Ded_In_Plan'?: string | null;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Indicates that the Plan Benefit amount is included in the Plan level Out of Pocket calculations. If this option is not specified, the Benefit is treated as a carve-out and will calculate to its own total.
|
|
217
217
|
* @type {string}
|
|
218
218
|
* @memberof PlanBenefits
|
|
219
219
|
*/
|
|
220
220
|
'include_OOP_In_Plan'?: string | null;
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* @type {boolean}
|
|
224
|
+
* @memberof PlanBenefits
|
|
225
|
+
*/
|
|
226
|
+
'ltC_Applies_To_Elimination_Period': boolean;
|
|
227
|
+
/**
|
|
228
|
+
*
|
|
229
|
+
* @type {boolean}
|
|
230
|
+
* @memberof PlanBenefits
|
|
231
|
+
*/
|
|
232
|
+
'ltC_Applies_To_WP': boolean;
|
|
233
|
+
/**
|
|
234
|
+
*
|
|
235
|
+
* @type {boolean}
|
|
236
|
+
* @memberof PlanBenefits
|
|
237
|
+
*/
|
|
238
|
+
'ltC_Apply_Inflation': boolean;
|
|
239
|
+
/**
|
|
240
|
+
*
|
|
241
|
+
* @type {boolean}
|
|
242
|
+
* @memberof PlanBenefits
|
|
243
|
+
*/
|
|
244
|
+
'ltC_Base_Benefit': boolean;
|
|
221
245
|
/**
|
|
222
246
|
*
|
|
223
247
|
* @type {number}
|
|
224
248
|
* @memberof PlanBenefits
|
|
225
249
|
*/
|
|
226
|
-
'
|
|
250
|
+
'ltC_Daily_Benefit'?: number | null;
|
|
227
251
|
/**
|
|
228
252
|
*
|
|
229
253
|
* @type {number}
|
|
230
254
|
* @memberof PlanBenefits
|
|
231
255
|
*/
|
|
232
|
-
'
|
|
256
|
+
'ltC_Daily_Benefit_Range_From'?: number | null;
|
|
233
257
|
/**
|
|
234
258
|
*
|
|
235
259
|
* @type {number}
|
|
236
260
|
* @memberof PlanBenefits
|
|
237
261
|
*/
|
|
238
|
-
'
|
|
262
|
+
'ltC_Daily_Benefit_Range_Increment'?: number | null;
|
|
239
263
|
/**
|
|
240
264
|
*
|
|
241
265
|
* @type {number}
|
|
242
266
|
* @memberof PlanBenefits
|
|
243
267
|
*/
|
|
244
|
-
'
|
|
268
|
+
'ltC_Daily_Benefit_Range_Thru'?: number | null;
|
|
269
|
+
/**
|
|
270
|
+
*
|
|
271
|
+
* @type {string}
|
|
272
|
+
* @memberof PlanBenefits
|
|
273
|
+
*/
|
|
274
|
+
'ltC_Daily_Benefit_Type'?: string | null;
|
|
275
|
+
/**
|
|
276
|
+
*
|
|
277
|
+
* @type {boolean}
|
|
278
|
+
* @memberof PlanBenefits
|
|
279
|
+
*/
|
|
280
|
+
'ltC_Inflation_Benefit': boolean;
|
|
281
|
+
/**
|
|
282
|
+
*
|
|
283
|
+
* @type {boolean}
|
|
284
|
+
* @memberof PlanBenefits
|
|
285
|
+
*/
|
|
286
|
+
'ltC_Inflation_Compound': boolean;
|
|
245
287
|
/**
|
|
246
288
|
*
|
|
247
289
|
* @type {number}
|
|
248
290
|
* @memberof PlanBenefits
|
|
249
291
|
*/
|
|
250
|
-
'
|
|
292
|
+
'ltC_Inflation_Frequency'?: number | null;
|
|
293
|
+
/**
|
|
294
|
+
*
|
|
295
|
+
* @type {string}
|
|
296
|
+
* @memberof PlanBenefits
|
|
297
|
+
*/
|
|
298
|
+
'ltC_Inflation_Frequency_Start'?: string | null;
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
* @type {string}
|
|
302
|
+
* @memberof PlanBenefits
|
|
303
|
+
*/
|
|
304
|
+
'ltC_Inflation_Frequency_Type'?: string | null;
|
|
251
305
|
/**
|
|
252
306
|
*
|
|
253
307
|
* @type {number}
|
|
254
308
|
* @memberof PlanBenefits
|
|
255
309
|
*/
|
|
256
|
-
'
|
|
310
|
+
'ltC_Inflation_Limit'?: number | null;
|
|
311
|
+
/**
|
|
312
|
+
*
|
|
313
|
+
* @type {string}
|
|
314
|
+
* @memberof PlanBenefits
|
|
315
|
+
*/
|
|
316
|
+
'ltC_Inflation_Limit_Type'?: string | null;
|
|
317
|
+
/**
|
|
318
|
+
*
|
|
319
|
+
* @type {number}
|
|
320
|
+
* @memberof PlanBenefits
|
|
321
|
+
*/
|
|
322
|
+
'ltC_Inflation_Pct'?: number | null;
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* @type {string}
|
|
326
|
+
* @memberof PlanBenefits
|
|
327
|
+
*/
|
|
328
|
+
'ltC_Inflation_Type'?: string | null;
|
|
329
|
+
/**
|
|
330
|
+
*
|
|
331
|
+
* @type {number}
|
|
332
|
+
* @memberof PlanBenefits
|
|
333
|
+
*/
|
|
334
|
+
'ltC_Lifetime_Max_Days_From'?: number | null;
|
|
335
|
+
/**
|
|
336
|
+
*
|
|
337
|
+
* @type {number}
|
|
338
|
+
* @memberof PlanBenefits
|
|
339
|
+
*/
|
|
340
|
+
'ltC_Lifetime_Max_Days_Thru'?: number | null;
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {number}
|
|
344
|
+
* @memberof PlanBenefits
|
|
345
|
+
*/
|
|
346
|
+
'ltC_Lifetime_Max_From'?: number | null;
|
|
347
|
+
/**
|
|
348
|
+
*
|
|
349
|
+
* @type {number}
|
|
350
|
+
* @memberof PlanBenefits
|
|
351
|
+
*/
|
|
352
|
+
'ltC_Lifetime_Max_Increment'?: number | null;
|
|
353
|
+
/**
|
|
354
|
+
*
|
|
355
|
+
* @type {number}
|
|
356
|
+
* @memberof PlanBenefits
|
|
357
|
+
*/
|
|
358
|
+
'ltC_Lifetime_Max_Thru'?: number | null;
|
|
359
|
+
/**
|
|
360
|
+
*
|
|
361
|
+
* @type {string}
|
|
362
|
+
* @memberof PlanBenefits
|
|
363
|
+
*/
|
|
364
|
+
'ltC_Lifetime_Max_Type'?: string | null;
|
|
365
|
+
/**
|
|
366
|
+
*
|
|
367
|
+
* @type {number}
|
|
368
|
+
* @memberof PlanBenefits
|
|
369
|
+
*/
|
|
370
|
+
'ltC_Lifetime_Max_Years_From'?: number | null;
|
|
371
|
+
/**
|
|
372
|
+
*
|
|
373
|
+
* @type {number}
|
|
374
|
+
* @memberof PlanBenefits
|
|
375
|
+
*/
|
|
376
|
+
'ltC_Lifetime_Max_Years_Thru'?: number | null;
|
|
377
|
+
/**
|
|
378
|
+
*
|
|
379
|
+
* @type {number}
|
|
380
|
+
* @memberof PlanBenefits
|
|
381
|
+
*/
|
|
382
|
+
'ltC_Monthly_Benefit'?: number | null;
|
|
383
|
+
/**
|
|
384
|
+
*
|
|
385
|
+
* @type {number}
|
|
386
|
+
* @memberof PlanBenefits
|
|
387
|
+
*/
|
|
388
|
+
'ltC_Monthly_Benefit_Range_From'?: number | null;
|
|
389
|
+
/**
|
|
390
|
+
*
|
|
391
|
+
* @type {number}
|
|
392
|
+
* @memberof PlanBenefits
|
|
393
|
+
*/
|
|
394
|
+
'ltC_Monthly_Benefit_Range_Increment'?: number | null;
|
|
395
|
+
/**
|
|
396
|
+
*
|
|
397
|
+
* @type {number}
|
|
398
|
+
* @memberof PlanBenefits
|
|
399
|
+
*/
|
|
400
|
+
'ltC_Monthly_Benefit_Range_Thru'?: number | null;
|
|
401
|
+
/**
|
|
402
|
+
*
|
|
403
|
+
* @type {string}
|
|
404
|
+
* @memberof PlanBenefits
|
|
405
|
+
*/
|
|
406
|
+
'ltC_Monthly_Benefit_Type'?: string | null;
|
|
407
|
+
/**
|
|
408
|
+
*
|
|
409
|
+
* @type {number}
|
|
410
|
+
* @memberof PlanBenefits
|
|
411
|
+
*/
|
|
412
|
+
'ltC_Pct_Of_Benefit'?: number | null;
|
|
413
|
+
/**
|
|
414
|
+
*
|
|
415
|
+
* @type {string}
|
|
416
|
+
* @memberof PlanBenefits
|
|
417
|
+
*/
|
|
418
|
+
'ltC_Pct_Of_Benefit_Code'?: string | null;
|
|
257
419
|
/**
|
|
258
420
|
*
|
|
259
421
|
* @type {boolean}
|
|
260
422
|
* @memberof PlanBenefits
|
|
261
423
|
*/
|
|
262
|
-
'
|
|
424
|
+
'ltC_Shared_Benefit': boolean;
|
|
425
|
+
/**
|
|
426
|
+
*
|
|
427
|
+
* @type {boolean}
|
|
428
|
+
* @memberof PlanBenefits
|
|
429
|
+
*/
|
|
430
|
+
'ltC_Use_Benefit_DBA': boolean;
|
|
431
|
+
/**
|
|
432
|
+
*
|
|
433
|
+
* @type {boolean}
|
|
434
|
+
* @memberof PlanBenefits
|
|
435
|
+
*/
|
|
436
|
+
'ltC_Use_Benefit_Lifetime_Max': boolean;
|
|
437
|
+
/**
|
|
438
|
+
*
|
|
439
|
+
* @type {boolean}
|
|
440
|
+
* @memberof PlanBenefits
|
|
441
|
+
*/
|
|
442
|
+
'ltC_Use_Benefit_MBA': boolean;
|
|
263
443
|
/**
|
|
264
444
|
*
|
|
445
|
+
* @type {boolean}
|
|
446
|
+
* @memberof PlanBenefits
|
|
447
|
+
*/
|
|
448
|
+
'ltC_Use_Pct_Of_Benefit': boolean;
|
|
449
|
+
/**
|
|
450
|
+
* Total lifetime amount that the Plan will pay both In Network and Out of Network.
|
|
451
|
+
* @type {number}
|
|
452
|
+
* @memberof PlanBenefits
|
|
453
|
+
*/
|
|
454
|
+
'lifetime_Max'?: number | null;
|
|
455
|
+
/**
|
|
456
|
+
* Total lifetime amount that the Member pays both In Network and Out of Network.
|
|
457
|
+
* @type {number}
|
|
458
|
+
* @memberof PlanBenefits
|
|
459
|
+
*/
|
|
460
|
+
'lifetime_Max_Member'?: number | null;
|
|
461
|
+
/**
|
|
462
|
+
* Lifetime amount that the Plan will pay In Network.
|
|
463
|
+
* @type {number}
|
|
464
|
+
* @memberof PlanBenefits
|
|
465
|
+
*/
|
|
466
|
+
'lifetime_Max_Net'?: number | null;
|
|
467
|
+
/**
|
|
468
|
+
* Lifetime amount that the Member pays In Network.
|
|
469
|
+
* @type {number}
|
|
470
|
+
* @memberof PlanBenefits
|
|
471
|
+
*/
|
|
472
|
+
'lifetime_Max_Net_Member'?: number | null;
|
|
473
|
+
/**
|
|
474
|
+
* Lifetime amount that the Plan will pay Out of Network.
|
|
475
|
+
* @type {number}
|
|
476
|
+
* @memberof PlanBenefits
|
|
477
|
+
*/
|
|
478
|
+
'lifetime_Max_OON'?: number | null;
|
|
479
|
+
/**
|
|
480
|
+
* Lifetime amount that the Member pays Out of Network.
|
|
481
|
+
* @type {number}
|
|
482
|
+
* @memberof PlanBenefits
|
|
483
|
+
*/
|
|
484
|
+
'lifetime_Max_OON_Member'?: number | null;
|
|
485
|
+
/**
|
|
486
|
+
* This option is informational only.
|
|
487
|
+
* @type {boolean}
|
|
488
|
+
* @memberof PlanBenefits
|
|
489
|
+
*/
|
|
490
|
+
'maternity': boolean;
|
|
491
|
+
/**
|
|
492
|
+
* Deductible amount for the Member Out of Network.
|
|
265
493
|
* @type {number}
|
|
266
494
|
* @memberof PlanBenefits
|
|
267
495
|
*/
|
|
268
496
|
'member_Ded_OON'?: number | null;
|
|
269
497
|
/**
|
|
270
|
-
*
|
|
498
|
+
* Deductible amount for the Member In Network.
|
|
271
499
|
* @type {number}
|
|
272
500
|
* @memberof PlanBenefits
|
|
273
501
|
*/
|
|
274
502
|
'member_Ded_PPO'?: number | null;
|
|
275
503
|
/**
|
|
276
|
-
*
|
|
504
|
+
* Total deductible amount for the Member both In Network and Out of Network.
|
|
277
505
|
* @type {number}
|
|
278
506
|
* @memberof PlanBenefits
|
|
279
507
|
*/
|
|
280
508
|
'member_Deductible'?: number | null;
|
|
281
509
|
/**
|
|
282
|
-
*
|
|
510
|
+
* Formula used to calculate the Out-of-Pocket amounts.
|
|
283
511
|
* @type {string}
|
|
284
512
|
* @memberof PlanBenefits
|
|
285
513
|
*/
|
|
286
514
|
'ooP_Calc_Option'?: string | null;
|
|
287
515
|
/**
|
|
288
|
-
*
|
|
516
|
+
* Applies the In-Network Out-of-Pocket amount toward the satisfaction of the Out-of-Network Out-of-Pocket maximum.
|
|
289
517
|
* @type {boolean}
|
|
290
518
|
* @memberof PlanBenefits
|
|
291
519
|
*/
|
|
292
520
|
'ooP_In_To_Out': boolean;
|
|
293
521
|
/**
|
|
294
|
-
*
|
|
522
|
+
* Total Out-of-Pocket amount for the Member.
|
|
295
523
|
* @type {number}
|
|
296
524
|
* @memberof PlanBenefits
|
|
297
525
|
*/
|
|
298
526
|
'ooP_Max_Mem'?: number | null;
|
|
299
527
|
/**
|
|
300
|
-
*
|
|
528
|
+
* Total Out-of-Pocket amount for the Member In Network.
|
|
301
529
|
* @type {number}
|
|
302
530
|
* @memberof PlanBenefits
|
|
303
531
|
*/
|
|
304
532
|
'ooP_Max_Net_Mem'?: number | null;
|
|
305
533
|
/**
|
|
306
|
-
*
|
|
534
|
+
* Total Out-of-Pocket amount for the Family In Network.
|
|
307
535
|
* @type {number}
|
|
308
536
|
* @memberof PlanBenefits
|
|
309
537
|
*/
|
|
310
538
|
'ooP_Max_Net_Sub'?: number | null;
|
|
311
539
|
/**
|
|
312
|
-
*
|
|
540
|
+
* Out-of-Pocket amount for the Member Out of Network.
|
|
313
541
|
* @type {number}
|
|
314
542
|
* @memberof PlanBenefits
|
|
315
543
|
*/
|
|
316
544
|
'ooP_Max_OON_Mem'?: number | null;
|
|
317
545
|
/**
|
|
318
|
-
*
|
|
546
|
+
* Out-of-Pocket amount for the Family Out of Network.
|
|
319
547
|
* @type {number}
|
|
320
548
|
* @memberof PlanBenefits
|
|
321
549
|
*/
|
|
322
550
|
'ooP_Max_OON_Sub'?: number | null;
|
|
323
551
|
/**
|
|
324
|
-
*
|
|
552
|
+
* Total Out-of-Pocket amount for the Family.
|
|
325
553
|
* @type {number}
|
|
326
554
|
* @memberof PlanBenefits
|
|
327
555
|
*/
|
|
328
556
|
'ooP_Max_Sub'?: number | null;
|
|
329
557
|
/**
|
|
330
|
-
*
|
|
558
|
+
* Applies the Out-of-Network Out-of-Pocket amount toward the satisfaction of the In-Network Out-of-Pocket maximum.
|
|
331
559
|
* @type {boolean}
|
|
332
560
|
* @memberof PlanBenefits
|
|
333
561
|
*/
|
|
334
562
|
'ooP_Out_To_In': boolean;
|
|
335
563
|
/**
|
|
336
|
-
*
|
|
564
|
+
* This option is informational only.
|
|
337
565
|
* @type {boolean}
|
|
338
566
|
* @memberof PlanBenefits
|
|
339
567
|
*/
|
|
340
568
|
'occupational': boolean;
|
|
341
569
|
/**
|
|
342
|
-
*
|
|
570
|
+
* Indicates that the selected Benefit applies to Primary Care Physician only. If a claim is processed against this Benefit Code without a PCP, the claim will apply the “PCP Only“ Ex Code defined on the VBA Control Panel.
|
|
343
571
|
* @type {boolean}
|
|
344
572
|
* @memberof PlanBenefits
|
|
345
573
|
*/
|
|
346
574
|
'pcP_Only': boolean;
|
|
347
575
|
/**
|
|
348
|
-
*
|
|
576
|
+
* Identifies if this Benefit is a parent benefit for purposes of cascading benefits.
|
|
349
577
|
* @type {boolean}
|
|
350
578
|
* @memberof PlanBenefits
|
|
351
579
|
*/
|
|
352
580
|
'parent_Benefit': boolean;
|
|
353
581
|
/**
|
|
354
|
-
*
|
|
582
|
+
* Assigns an Ex Code that can be applied to adjudicated Subscriber claims.
|
|
355
583
|
* @type {string}
|
|
356
584
|
* @memberof PlanBenefits
|
|
357
585
|
*/
|
|
358
586
|
'pend_Ex_Code'?: string | null;
|
|
359
587
|
/**
|
|
360
|
-
*
|
|
588
|
+
* While active, the assigned Ex Code will be applied to any adjudicated Subscriber claims.
|
|
361
589
|
* @type {string}
|
|
362
590
|
* @memberof PlanBenefits
|
|
363
591
|
*/
|
|
364
592
|
'pend_Flag'?: string | null;
|
|
365
593
|
/**
|
|
366
|
-
*
|
|
594
|
+
* Identifies whether the Benefit Code is a rider for this Plan. This can be populated from the \'Plan\' screen.
|
|
367
595
|
* @type {string}
|
|
368
596
|
* @memberof PlanBenefits
|
|
369
597
|
*/
|
|
370
598
|
'rider': string;
|
|
371
599
|
/**
|
|
372
|
-
*
|
|
600
|
+
* Deductible amount for the Family Out of Network.
|
|
373
601
|
* @type {number}
|
|
374
602
|
* @memberof PlanBenefits
|
|
375
603
|
*/
|
|
376
604
|
'subscriber_Ded_OON'?: number | null;
|
|
377
605
|
/**
|
|
378
|
-
*
|
|
606
|
+
* Deductible amount for the Family In Network.
|
|
379
607
|
* @type {number}
|
|
380
608
|
* @memberof PlanBenefits
|
|
381
609
|
*/
|
|
382
610
|
'subscriber_Ded_PPO'?: number | null;
|
|
383
611
|
/**
|
|
384
|
-
*
|
|
612
|
+
* Total deductible amount for the Family both In Network and Out of Network.
|
|
385
613
|
* @type {number}
|
|
386
614
|
* @memberof PlanBenefits
|
|
387
615
|
*/
|
|
388
616
|
'subscriber_Deductible'?: number | null;
|
|
389
617
|
/**
|
|
390
|
-
*
|
|
618
|
+
* Date when the Benefit expires for this plan.
|
|
391
619
|
* @type {string}
|
|
392
620
|
* @memberof PlanBenefits
|
|
393
621
|
*/
|
|
394
622
|
'term_Date'?: string | null;
|
|
395
623
|
/**
|
|
396
|
-
*
|
|
624
|
+
* Date when the record was last updated in the system.
|
|
397
625
|
* @type {string}
|
|
398
626
|
* @memberof PlanBenefits
|
|
399
627
|
*/
|
|
400
628
|
'update_Date'?: string;
|
|
401
629
|
/**
|
|
402
|
-
*
|
|
630
|
+
* User that last updated the record in the system.
|
|
403
631
|
* @type {string}
|
|
404
632
|
* @memberof PlanBenefits
|
|
405
633
|
*/
|
|
406
634
|
'update_User'?: string | null;
|
|
407
635
|
/**
|
|
408
|
-
*
|
|
636
|
+
* Indicates that the Plan Benefit Co-Insurance amounts will abide by the Plan level amounts.
|
|
409
637
|
* @type {string}
|
|
410
638
|
* @memberof PlanBenefits
|
|
411
639
|
*/
|
|
412
640
|
'use_Plan_CoIns': string;
|
|
413
641
|
/**
|
|
414
|
-
*
|
|
642
|
+
* Indicates that the Plan Benefit Deductible amounts will abide by the Plan level amounts.
|
|
415
643
|
* @type {string}
|
|
416
644
|
* @memberof PlanBenefits
|
|
417
645
|
*/
|
|
418
646
|
'use_Plan_Ded': string;
|
|
419
647
|
/**
|
|
420
|
-
*
|
|
648
|
+
* Indicates that the Plan Benefit Maximums will abide by the Plan level amounts.
|
|
421
649
|
* @type {string}
|
|
422
650
|
* @memberof PlanBenefits
|
|
423
651
|
*/
|
|
424
652
|
'use_Plan_Max': string;
|
|
425
653
|
/**
|
|
426
|
-
*
|
|
654
|
+
* Indicates that the Plan Benefit Out of Pocket amounts will abide by the Plan level amounts.
|
|
427
655
|
* @type {string}
|
|
428
656
|
* @memberof PlanBenefits
|
|
429
657
|
*/
|