@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230208.2 → 1.20230403.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +19 -0
- package/api/adv-group-api.ts +17 -17
- package/api/chat-gptapi.ts +154 -0
- package/api/events-api.ts +87 -0
- package/api/groups-api.ts +17 -17
- package/api/prem-rate-types-api.ts +668 -0
- package/api/premium-invoice-payments-api.ts +124 -0
- package/api/premium-invoices-api.ts +336 -5
- package/api/premium-rate-distribution-types-api.ts +155 -0
- package/api/state-interest-api.ts +668 -0
- package/api/subscriber-plan-policies-api.ts +43 -91
- package/api/user-api.ts +394 -0
- package/api.ts +4 -0
- package/models/chat-message.ts +30 -0
- package/models/claim-batch-detail.ts +152 -140
- package/models/claim-batch.ts +1697 -479
- package/models/claim-detail.ts +137 -125
- package/models/claim-pre-batch-detail.ts +101 -95
- package/models/claim-pre-batch.ts +1703 -425
- package/models/claim.ts +1562 -338
- package/models/company-data.ts +433 -403
- package/models/cost-contain-zelis-ex-code.ts +12 -6
- package/models/enrollment-disenroll-group.ts +84 -0
- package/models/enrollment-disenroll.ts +28 -34
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- package/models/index.ts +15 -0
- package/models/mem-enrollment-plan.ts +9 -9
- package/models/mem-enrollment-rider.ts +10 -10
- package/models/member-beneficiary.ts +3 -3
- package/models/member-language.ts +38 -2
- package/models/member-medicare-resp.ts +50 -26
- package/models/members.ts +1 -1
- package/models/network-procedure-cluster.ts +15 -9
- package/models/plan-benefit-cluster.ts +12 -12
- package/models/plan-benefit-rate.ts +5 -5
- package/models/plan-benefits.ts +58 -52
- package/models/plan-type.ts +21 -21
- package/models/plans.ts +41 -41
- package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
- package/models/prem-invoice-group-summary.ts +114 -0
- package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-payment-ext.ts +102 -0
- package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-slim.ts +42 -0
- package/models/prem-rate-type-list-vbaresponse.ts +45 -0
- package/models/prem-rate-type-vbaresponse.ts +45 -0
- package/models/prem-rate-type.ts +72 -0
- package/models/prem-rate.ts +91 -85
- package/models/state-interest-list-vbaresponse.ts +45 -0
- package/models/state-interest-vbaresponse.ts +45 -0
- package/models/state-interest.ts +84 -0
- package/models/sub-enrollment-plan.ts +10 -10
- package/models/sub-enrollment-rider.ts +14 -14
- package/models/subscribers.ts +2 -2
- package/models/user-reset-password-request.ts +42 -0
- package/models/users.ts +8 -8
- package/package.json +1 -1
package/models/plan-benefits.ts
CHANGED
|
@@ -39,7 +39,7 @@ export interface PlanBenefits {
|
|
|
39
39
|
*/
|
|
40
40
|
'accident_Only'?: string | null;
|
|
41
41
|
/**
|
|
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.
|
|
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. 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.
|
|
43
43
|
* @type {boolean}
|
|
44
44
|
* @memberof PlanBenefits
|
|
45
45
|
*/
|
|
@@ -81,7 +81,7 @@ export interface PlanBenefits {
|
|
|
81
81
|
*/
|
|
82
82
|
'annual_Max_OON_Member'?: number | null;
|
|
83
83
|
/**
|
|
84
|
-
* Applies the In-Network Co-Insurance amount toward the satisfaction of the Out-of-Network Co-Insurance maximum.
|
|
84
|
+
* Applies the In-Network Co-Insurance amount toward the satisfaction of the Out-of-Network Co-Insurance maximum. 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.
|
|
85
85
|
* @type {boolean}
|
|
86
86
|
* @memberof PlanBenefits
|
|
87
87
|
*/
|
|
@@ -123,13 +123,13 @@ export interface PlanBenefits {
|
|
|
123
123
|
*/
|
|
124
124
|
'coIns_Max_Sub'?: number | null;
|
|
125
125
|
/**
|
|
126
|
-
* Applies the Out-of-Network Co-Insurance amount toward the satisfaction of the In-Network Co-Insurance maximum.
|
|
126
|
+
* Applies the Out-of-Network Co-Insurance amount toward the satisfaction of the In-Network Co-Insurance maximum. 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.
|
|
127
127
|
* @type {boolean}
|
|
128
128
|
* @memberof PlanBenefits
|
|
129
129
|
*/
|
|
130
130
|
'coIns_Out_To_In': boolean;
|
|
131
131
|
/**
|
|
132
|
-
* This option is informational only.
|
|
132
|
+
* This option is informational only. 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.
|
|
133
133
|
* @type {boolean}
|
|
134
134
|
* @memberof PlanBenefits
|
|
135
135
|
*/
|
|
@@ -147,19 +147,19 @@ export interface PlanBenefits {
|
|
|
147
147
|
*/
|
|
148
148
|
'covered_In_Net_Only'?: string | null;
|
|
149
149
|
/**
|
|
150
|
-
* Applies the In-Network deductible amount toward the satisfaction of the Out-of-Network deductible.
|
|
150
|
+
* Applies the In-Network deductible amount toward the satisfaction of the Out-of-Network deductible. 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.
|
|
151
151
|
* @type {boolean}
|
|
152
152
|
* @memberof PlanBenefits
|
|
153
153
|
*/
|
|
154
154
|
'ded_In_To_Out': boolean;
|
|
155
155
|
/**
|
|
156
|
-
* Applies the Out-of-Network deductible amount toward the satisfaction of the In-Network deductible.
|
|
156
|
+
* Applies the Out-of-Network deductible amount toward the satisfaction of the In-Network deductible. 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.
|
|
157
157
|
* @type {boolean}
|
|
158
158
|
* @memberof PlanBenefits
|
|
159
159
|
*/
|
|
160
160
|
'ded_Out_To_In': boolean;
|
|
161
161
|
/**
|
|
162
|
-
* This flag determines if adjudication calculates the Deductible before the CoPay is calculated.
|
|
162
|
+
* This flag determines if adjudication calculates the Deductible before the CoPay is calculated. 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.
|
|
163
163
|
* @type {boolean}
|
|
164
164
|
* @memberof PlanBenefits
|
|
165
165
|
*/
|
|
@@ -189,7 +189,7 @@ export interface PlanBenefits {
|
|
|
189
189
|
*/
|
|
190
190
|
'excluded': string;
|
|
191
191
|
/**
|
|
192
|
-
* This option is informational only.
|
|
192
|
+
* This option is informational only. 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.
|
|
193
193
|
* @type {boolean}
|
|
194
194
|
* @memberof PlanBenefits
|
|
195
195
|
*/
|
|
@@ -219,229 +219,235 @@ export interface PlanBenefits {
|
|
|
219
219
|
*/
|
|
220
220
|
'include_OOP_In_Plan'?: string | null;
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Indicates if this benefits applies to the Elimination Period for claims processed under this plan. This value would only apply if the Plan itself is configured with an Elimination Period. This indicator will be ON by default so that the user has to specifically exclude.
|
|
223
223
|
* @type {boolean}
|
|
224
224
|
* @memberof PlanBenefits
|
|
225
225
|
*/
|
|
226
226
|
'ltC_Applies_To_Elimination_Period': boolean;
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* Indicates if this benefit applies to the waiting period. 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.
|
|
229
229
|
* @type {boolean}
|
|
230
230
|
* @memberof PlanBenefits
|
|
231
231
|
*/
|
|
232
232
|
'ltC_Applies_To_WP': boolean;
|
|
233
233
|
/**
|
|
234
|
-
*
|
|
234
|
+
* Indicates it Inflation calculation should be applied 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.
|
|
235
235
|
* @type {boolean}
|
|
236
236
|
* @memberof PlanBenefits
|
|
237
237
|
*/
|
|
238
238
|
'ltC_Apply_Inflation': boolean;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* Not sure about this, but I think what I want is to have one benefit defined on any plan that has a LTC Plan_Type. You can only have one and must have one. This is like the STD or LTD benefit on disability. Its the benefit we use to do all the base benefit payment stuff. 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.
|
|
241
241
|
* @type {boolean}
|
|
242
242
|
* @memberof PlanBenefits
|
|
243
243
|
*/
|
|
244
244
|
'ltC_Base_Benefit': boolean;
|
|
245
245
|
/**
|
|
246
|
-
*
|
|
246
|
+
* This is the daily benefit amount
|
|
247
247
|
* @type {number}
|
|
248
248
|
* @memberof PlanBenefits
|
|
249
249
|
*/
|
|
250
250
|
'ltC_Daily_Benefit'?: number | null;
|
|
251
251
|
/**
|
|
252
|
-
*
|
|
252
|
+
* The start of the selection range for members taking this plan and choosing their daily benefit.
|
|
253
253
|
* @type {number}
|
|
254
254
|
* @memberof PlanBenefits
|
|
255
255
|
*/
|
|
256
256
|
'ltC_Daily_Benefit_Range_From'?: number | null;
|
|
257
257
|
/**
|
|
258
|
-
*
|
|
258
|
+
* The increment of each option in the range between the from and thru. If empty, the member can manually select a value between the from / thru range.
|
|
259
259
|
* @type {number}
|
|
260
260
|
* @memberof PlanBenefits
|
|
261
261
|
*/
|
|
262
262
|
'ltC_Daily_Benefit_Range_Increment'?: number | null;
|
|
263
263
|
/**
|
|
264
|
-
*
|
|
264
|
+
* The end of the selection range for members taking this plan and choosing their daily benefit.
|
|
265
265
|
* @type {number}
|
|
266
266
|
* @memberof PlanBenefits
|
|
267
267
|
*/
|
|
268
268
|
'ltC_Daily_Benefit_Range_Thru'?: number | null;
|
|
269
269
|
/**
|
|
270
|
-
*
|
|
270
|
+
* This is the type of daily benefit defined for this plan. The values are: A - a flat daily benefit enforced by the plan. B - member selected value utilizing the daily benefit range/increment settings.
|
|
271
271
|
* @type {string}
|
|
272
272
|
* @memberof PlanBenefits
|
|
273
273
|
*/
|
|
274
274
|
'ltC_Daily_Benefit_Type'?: string | null;
|
|
275
275
|
/**
|
|
276
|
-
*
|
|
276
|
+
* identify that this is an inflation benefit. Would still use Covered/Rider to determine if the inflation offering is optional or not. 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.
|
|
277
277
|
* @type {boolean}
|
|
278
278
|
* @memberof PlanBenefits
|
|
279
279
|
*/
|
|
280
280
|
'ltC_Inflation_Benefit': boolean;
|
|
281
281
|
/**
|
|
282
|
-
*
|
|
282
|
+
* Indicates if the inflation interest is simple (0) or compunded (1). 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.
|
|
283
283
|
* @type {boolean}
|
|
284
284
|
* @memberof PlanBenefits
|
|
285
285
|
*/
|
|
286
286
|
'ltC_Inflation_Compound': boolean;
|
|
287
287
|
/**
|
|
288
|
-
*
|
|
288
|
+
* this is the value for the Inflation_Frequency_Type (i.e. 1 Year, 30 Days, 6 Months, etc.)
|
|
289
289
|
* @type {number}
|
|
290
290
|
* @memberof PlanBenefits
|
|
291
291
|
*/
|
|
292
292
|
'ltC_Inflation_Frequency'?: number | null;
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* indicates when the Inflation_Frequency is calculated from: GROUP - Group Anniversary Enroll DIV - Division Anniversary Enroll MEMBER - Member Anniversary Enroll PLAN - Initial Plan Enroll
|
|
295
295
|
* @type {string}
|
|
296
296
|
* @memberof PlanBenefits
|
|
297
297
|
*/
|
|
298
298
|
'ltC_Inflation_Frequency_Start'?: string | null;
|
|
299
299
|
/**
|
|
300
|
-
*
|
|
300
|
+
* Indicates the frequency of inflation increases. The values are: D - Days M - Months Y - Years
|
|
301
301
|
* @type {string}
|
|
302
302
|
* @memberof PlanBenefits
|
|
303
303
|
*/
|
|
304
304
|
'ltC_Inflation_Frequency_Type'?: string | null;
|
|
305
305
|
/**
|
|
306
|
-
*
|
|
306
|
+
* This value is based on Inflation_Limit_Type. For A, this is the flat cap on inflation. For B, this is the multiple of Limit defined as a cap (i.e. 2 for 2x limit or 2.5 for 2.5x limit)
|
|
307
307
|
* @type {number}
|
|
308
308
|
* @memberof PlanBenefits
|
|
309
309
|
*/
|
|
310
310
|
'ltC_Inflation_Limit'?: number | null;
|
|
311
311
|
/**
|
|
312
|
-
*
|
|
312
|
+
* the type of limit cap. This filed only shows if Inflation_Type = B. The 2 options are: A - Flat Cap B - Multipl of Limit
|
|
313
313
|
* @type {string}
|
|
314
314
|
* @memberof PlanBenefits
|
|
315
315
|
*/
|
|
316
316
|
'ltC_Inflation_Limit_Type'?: string | null;
|
|
317
317
|
/**
|
|
318
|
-
*
|
|
318
|
+
* This is the inflation value (i.e. 5% or 6%)
|
|
319
319
|
* @type {number}
|
|
320
320
|
* @memberof PlanBenefits
|
|
321
321
|
*/
|
|
322
322
|
'ltC_Inflation_Pct'?: number | null;
|
|
323
323
|
/**
|
|
324
|
-
*
|
|
324
|
+
* drop down list of inflation types that change options that can be filled in. The choices would be: A - Simple Inflation B - Inflation With Cap C - Inflation No Cap
|
|
325
325
|
* @type {string}
|
|
326
326
|
* @memberof PlanBenefits
|
|
327
327
|
*/
|
|
328
328
|
'ltC_Inflation_Type'?: string | null;
|
|
329
329
|
/**
|
|
330
|
-
*
|
|
330
|
+
* The selectable range of days the member can pick for calculations based on days.
|
|
331
331
|
* @type {number}
|
|
332
332
|
* @memberof PlanBenefits
|
|
333
333
|
*/
|
|
334
334
|
'ltC_Lifetime_Max_Days_From'?: number | null;
|
|
335
335
|
/**
|
|
336
|
-
*
|
|
336
|
+
* The selectable range of days the member can pick for calculations based on days.
|
|
337
337
|
* @type {number}
|
|
338
338
|
* @memberof PlanBenefits
|
|
339
339
|
*/
|
|
340
340
|
'ltC_Lifetime_Max_Days_Thru'?: number | null;
|
|
341
341
|
/**
|
|
342
|
-
*
|
|
342
|
+
* The low end range for member lifetime max selection.
|
|
343
343
|
* @type {number}
|
|
344
344
|
* @memberof PlanBenefits
|
|
345
345
|
*/
|
|
346
346
|
'ltC_Lifetime_Max_From'?: number | null;
|
|
347
347
|
/**
|
|
348
|
-
*
|
|
348
|
+
* the increment of options the user can select within the max range. Empty value here means it is a free from entry of max between the range.
|
|
349
349
|
* @type {number}
|
|
350
350
|
* @memberof PlanBenefits
|
|
351
351
|
*/
|
|
352
352
|
'ltC_Lifetime_Max_Increment'?: number | null;
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* the high end range for member lifetime max selection.
|
|
355
355
|
* @type {number}
|
|
356
356
|
* @memberof PlanBenefits
|
|
357
357
|
*/
|
|
358
358
|
'ltC_Lifetime_Max_Thru'?: number | null;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
360
|
+
* Lifetime Max calculation type and will dicatate the max rules applied. Valid values are: STANDARD - DBM x 365 days x Lifetime Max Years selected LMDAYS - DBM x Lifetime Max Days selected FLAT - Lifetime Max Amount selected and not based on calculation LMMONTHS - MBA x 12 Months x Lifetime Max Years selected
|
|
361
361
|
* @type {string}
|
|
362
362
|
* @memberof PlanBenefits
|
|
363
363
|
*/
|
|
364
364
|
'ltC_Lifetime_Max_Type'?: string | null;
|
|
365
365
|
/**
|
|
366
|
-
*
|
|
366
|
+
* the selectable range of years the member can pick for calculations based on years.
|
|
367
367
|
* @type {number}
|
|
368
368
|
* @memberof PlanBenefits
|
|
369
369
|
*/
|
|
370
370
|
'ltC_Lifetime_Max_Years_From'?: number | null;
|
|
371
371
|
/**
|
|
372
|
-
*
|
|
372
|
+
* the selectable range of years the member can pick for calculations based on years.
|
|
373
373
|
* @type {number}
|
|
374
374
|
* @memberof PlanBenefits
|
|
375
375
|
*/
|
|
376
376
|
'ltC_Lifetime_Max_Years_Thru'?: number | null;
|
|
377
377
|
/**
|
|
378
|
-
*
|
|
378
|
+
* This is the monthly benefit amount
|
|
379
379
|
* @type {number}
|
|
380
380
|
* @memberof PlanBenefits
|
|
381
381
|
*/
|
|
382
382
|
'ltC_Monthly_Benefit'?: number | null;
|
|
383
383
|
/**
|
|
384
|
-
*
|
|
384
|
+
* The start of the selection range for members taking this plan and choosing their monthly benefit.
|
|
385
385
|
* @type {number}
|
|
386
386
|
* @memberof PlanBenefits
|
|
387
387
|
*/
|
|
388
388
|
'ltC_Monthly_Benefit_Range_From'?: number | null;
|
|
389
389
|
/**
|
|
390
|
-
*
|
|
390
|
+
* The increment of each option in the range between the from and thru. If empty, the member can manually select a value between the from / thru range.
|
|
391
391
|
* @type {number}
|
|
392
392
|
* @memberof PlanBenefits
|
|
393
393
|
*/
|
|
394
394
|
'ltC_Monthly_Benefit_Range_Increment'?: number | null;
|
|
395
395
|
/**
|
|
396
|
-
*
|
|
396
|
+
* The end of the selection range for members taking this plan and choosing their monthly benefit.
|
|
397
397
|
* @type {number}
|
|
398
398
|
* @memberof PlanBenefits
|
|
399
399
|
*/
|
|
400
400
|
'ltC_Monthly_Benefit_Range_Thru'?: number | null;
|
|
401
401
|
/**
|
|
402
|
-
*
|
|
402
|
+
* This is the type of monthly benefit defined for this plan. The values are: A - a flat monthly benefit enforced by the plan. B - member selected value utilizing the monthly benefit range/increment settings.
|
|
403
403
|
* @type {string}
|
|
404
404
|
* @memberof PlanBenefits
|
|
405
405
|
*/
|
|
406
406
|
'ltC_Monthly_Benefit_Type'?: string | null;
|
|
407
407
|
/**
|
|
408
|
-
*
|
|
408
|
+
* the pct the be calculated against the pct_of_benefit_code.
|
|
409
409
|
* @type {number}
|
|
410
410
|
* @memberof PlanBenefits
|
|
411
411
|
*/
|
|
412
412
|
'ltC_Pct_Of_Benefit'?: number | null;
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* This is the benefit code that this benefit will be a Pct of.
|
|
415
415
|
* @type {string}
|
|
416
416
|
* @memberof PlanBenefits
|
|
417
417
|
*/
|
|
418
418
|
'ltC_Pct_Of_Benefit_Code'?: string | null;
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* Indicates if this Benefit Code is shared across multiple members of the family AND can be used in Lifetime Max calculations to determine if the same benefit across multiple plans (same plan type) could apply together. 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.
|
|
421
421
|
* @type {boolean}
|
|
422
422
|
* @memberof PlanBenefits
|
|
423
423
|
*/
|
|
424
424
|
'ltC_Shared_Benefit': boolean;
|
|
425
425
|
/**
|
|
426
|
-
*
|
|
426
|
+
* Indicates if we should use this benefit DBA configuration rather than the Plan DBA. 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.
|
|
427
427
|
* @type {boolean}
|
|
428
428
|
* @memberof PlanBenefits
|
|
429
429
|
*/
|
|
430
430
|
'ltC_Use_Benefit_DBA': boolean;
|
|
431
431
|
/**
|
|
432
|
-
*
|
|
432
|
+
* This indicates if the PlanBenefit level LBM logic should be used rather thant he parent Plan LBM settings. 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.
|
|
433
433
|
* @type {boolean}
|
|
434
434
|
* @memberof PlanBenefits
|
|
435
435
|
*/
|
|
436
436
|
'ltC_Use_Benefit_Lifetime_Max': boolean;
|
|
437
437
|
/**
|
|
438
|
-
*
|
|
438
|
+
* Indicates if we should use this benefit MBA configuration rather than the Plan MBA. 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.
|
|
439
439
|
* @type {boolean}
|
|
440
440
|
* @memberof PlanBenefits
|
|
441
441
|
*/
|
|
442
442
|
'ltC_Use_Benefit_MBA': boolean;
|
|
443
443
|
/**
|
|
444
|
-
*
|
|
444
|
+
* This is an indicator for whether this PlanBenefit will utilize the Daily Benefit Amount or the Monthly Benefit Amount.
|
|
445
|
+
* @type {string}
|
|
446
|
+
* @memberof PlanBenefits
|
|
447
|
+
*/
|
|
448
|
+
'ltC_Use_Benefit_Type'?: string | null;
|
|
449
|
+
/**
|
|
450
|
+
* identifies that this benefit amount is calculated as a percent of another benefit 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.
|
|
445
451
|
* @type {boolean}
|
|
446
452
|
* @memberof PlanBenefits
|
|
447
453
|
*/
|
|
@@ -483,7 +489,7 @@ export interface PlanBenefits {
|
|
|
483
489
|
*/
|
|
484
490
|
'lifetime_Max_OON_Member'?: number | null;
|
|
485
491
|
/**
|
|
486
|
-
* This option is informational only.
|
|
492
|
+
* This option is informational only. 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.
|
|
487
493
|
* @type {boolean}
|
|
488
494
|
* @memberof PlanBenefits
|
|
489
495
|
*/
|
|
@@ -513,7 +519,7 @@ export interface PlanBenefits {
|
|
|
513
519
|
*/
|
|
514
520
|
'ooP_Calc_Option'?: string | null;
|
|
515
521
|
/**
|
|
516
|
-
* Applies the In-Network Out-of-Pocket amount toward the satisfaction of the Out-of-Network Out-of-Pocket maximum.
|
|
522
|
+
* Applies the In-Network Out-of-Pocket amount toward the satisfaction of the Out-of-Network Out-of-Pocket maximum. 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.
|
|
517
523
|
* @type {boolean}
|
|
518
524
|
* @memberof PlanBenefits
|
|
519
525
|
*/
|
|
@@ -555,25 +561,25 @@ export interface PlanBenefits {
|
|
|
555
561
|
*/
|
|
556
562
|
'ooP_Max_Sub'?: number | null;
|
|
557
563
|
/**
|
|
558
|
-
* Applies the Out-of-Network Out-of-Pocket amount toward the satisfaction of the In-Network Out-of-Pocket maximum.
|
|
564
|
+
* Applies the Out-of-Network Out-of-Pocket amount toward the satisfaction of the In-Network Out-of-Pocket maximum. 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.
|
|
559
565
|
* @type {boolean}
|
|
560
566
|
* @memberof PlanBenefits
|
|
561
567
|
*/
|
|
562
568
|
'ooP_Out_To_In': boolean;
|
|
563
569
|
/**
|
|
564
|
-
* This option is informational only.
|
|
570
|
+
* This option is informational only. 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.
|
|
565
571
|
* @type {boolean}
|
|
566
572
|
* @memberof PlanBenefits
|
|
567
573
|
*/
|
|
568
574
|
'occupational': boolean;
|
|
569
575
|
/**
|
|
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.
|
|
576
|
+
* 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. 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.
|
|
571
577
|
* @type {boolean}
|
|
572
578
|
* @memberof PlanBenefits
|
|
573
579
|
*/
|
|
574
580
|
'pcP_Only': boolean;
|
|
575
581
|
/**
|
|
576
|
-
* Identifies if this Benefit is a parent benefit for purposes of cascading benefits.
|
|
582
|
+
* Identifies if this Benefit is a parent benefit for purposes of cascading benefits. 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.
|
|
577
583
|
* @type {boolean}
|
|
578
584
|
* @memberof PlanBenefits
|
|
579
585
|
*/
|
package/models/plan-type.ts
CHANGED
|
@@ -27,19 +27,19 @@ export interface PlanType {
|
|
|
27
27
|
*/
|
|
28
28
|
'plan_Type': string;
|
|
29
29
|
/**
|
|
30
|
-
* Indicates whether the associated plan should be capitated.
|
|
30
|
+
* Indicates whether the associated plan should be capitated. 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.
|
|
31
31
|
* @type {boolean}
|
|
32
32
|
* @memberof PlanType
|
|
33
33
|
*/
|
|
34
34
|
'capitated': boolean;
|
|
35
35
|
/**
|
|
36
|
-
* No longer in use.
|
|
36
|
+
* No longer in use. 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.
|
|
37
37
|
* @type {boolean}
|
|
38
38
|
* @memberof PlanType
|
|
39
39
|
*/
|
|
40
40
|
'claims': boolean;
|
|
41
41
|
/**
|
|
42
|
-
* Indicates whether the specified plan type is a Dental Plan.
|
|
42
|
+
* Indicates whether the specified plan type is a Dental Plan. 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.
|
|
43
43
|
* @type {boolean}
|
|
44
44
|
* @memberof PlanType
|
|
45
45
|
*/
|
|
@@ -51,19 +51,19 @@ export interface PlanType {
|
|
|
51
51
|
*/
|
|
52
52
|
'description'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
* Indicates whether the specified plan type is associated with a Discount Fee.
|
|
54
|
+
* Indicates whether the specified plan type is associated with a Discount Fee. 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.
|
|
55
55
|
* @type {boolean}
|
|
56
56
|
* @memberof PlanType
|
|
57
57
|
*/
|
|
58
58
|
'disc_Fee': boolean;
|
|
59
59
|
/**
|
|
60
|
-
* Indicates whether the specified plan type is a associated with a discount card.
|
|
60
|
+
* Indicates whether the specified plan type is a associated with a discount card. 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.
|
|
61
61
|
* @type {boolean}
|
|
62
62
|
* @memberof PlanType
|
|
63
63
|
*/
|
|
64
64
|
'discountCard': boolean;
|
|
65
65
|
/**
|
|
66
|
-
* No longer in use.
|
|
66
|
+
* No longer in use. 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.
|
|
67
67
|
* @type {boolean}
|
|
68
68
|
* @memberof PlanType
|
|
69
69
|
*/
|
|
@@ -87,13 +87,13 @@ export interface PlanType {
|
|
|
87
87
|
*/
|
|
88
88
|
'hipaA_Code'?: string | null;
|
|
89
89
|
/**
|
|
90
|
-
* Indicates whether the specified plan type is a HRA Plan.
|
|
90
|
+
* Indicates whether the specified plan type is a HRA Plan. 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 PlanType
|
|
93
93
|
*/
|
|
94
94
|
'hra': boolean;
|
|
95
95
|
/**
|
|
96
|
-
* Indicates whether the specified plan type is a HSA Plan.
|
|
96
|
+
* Indicates whether the specified plan type is a HSA Plan. 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.
|
|
97
97
|
* @type {boolean}
|
|
98
98
|
* @memberof PlanType
|
|
99
99
|
*/
|
|
@@ -105,73 +105,73 @@ export interface PlanType {
|
|
|
105
105
|
*/
|
|
106
106
|
'iD_Card_Description'?: string | null;
|
|
107
107
|
/**
|
|
108
|
-
* Indicates whether the specified plan type is an Indemnity Plan.
|
|
108
|
+
* Indicates whether the specified plan type is an Indemnity Plan. 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.
|
|
109
109
|
* @type {boolean}
|
|
110
110
|
* @memberof PlanType
|
|
111
111
|
*/
|
|
112
112
|
'indemnity': boolean;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* Indicates if this plan type is a LTC plan type. 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.
|
|
115
115
|
* @type {boolean}
|
|
116
116
|
* @memberof PlanType
|
|
117
117
|
*/
|
|
118
118
|
'ltc': boolean;
|
|
119
119
|
/**
|
|
120
|
-
* Indicates whether the specified plan type is a Long-Term Disability Plan.
|
|
120
|
+
* Indicates whether the specified plan type is a Long-Term Disability Plan. 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.
|
|
121
121
|
* @type {boolean}
|
|
122
122
|
* @memberof PlanType
|
|
123
123
|
*/
|
|
124
124
|
'ltd': boolean;
|
|
125
125
|
/**
|
|
126
|
-
* Indicates whether the specified plan type is a Life/ADD Plan.
|
|
126
|
+
* Indicates whether the specified plan type is a Life/ADD Plan. 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.
|
|
127
127
|
* @type {boolean}
|
|
128
128
|
* @memberof PlanType
|
|
129
129
|
*/
|
|
130
130
|
'lifeADD': boolean;
|
|
131
131
|
/**
|
|
132
|
-
* Indicates whether the specified plan type is a Medical Plan.
|
|
132
|
+
* Indicates whether the specified plan type is a Medical Plan. 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.
|
|
133
133
|
* @type {boolean}
|
|
134
134
|
* @memberof PlanType
|
|
135
135
|
*/
|
|
136
136
|
'medical': boolean;
|
|
137
137
|
/**
|
|
138
|
-
* No longer in use.
|
|
138
|
+
* No longer in use. 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.
|
|
139
139
|
* @type {boolean}
|
|
140
140
|
* @memberof PlanType
|
|
141
141
|
*/
|
|
142
142
|
'pay_As_You_Go': boolean;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Indicates if this plan type is a Pension plan type. 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.
|
|
145
145
|
* @type {boolean}
|
|
146
146
|
* @memberof PlanType
|
|
147
147
|
*/
|
|
148
148
|
'pension': boolean;
|
|
149
149
|
/**
|
|
150
|
-
* Indicates whether the specified plan type is a Pharmacy Plan.
|
|
150
|
+
* Indicates whether the specified plan type is a Pharmacy Plan. 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.
|
|
151
151
|
* @type {boolean}
|
|
152
152
|
* @memberof PlanType
|
|
153
153
|
*/
|
|
154
154
|
'pharmacy': boolean;
|
|
155
155
|
/**
|
|
156
|
-
* Indicates whether the specified plan type should be printed on ID cards.
|
|
156
|
+
* Indicates whether the specified plan type should be printed on ID cards. 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.
|
|
157
157
|
* @type {boolean}
|
|
158
158
|
* @memberof PlanType
|
|
159
159
|
*/
|
|
160
160
|
'print_On_ID': boolean;
|
|
161
161
|
/**
|
|
162
|
-
* Indicates whether the specified plan type is a Short-Term Disability Plan.
|
|
162
|
+
* Indicates whether the specified plan type is a Short-Term Disability Plan. 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.
|
|
163
163
|
* @type {boolean}
|
|
164
164
|
* @memberof PlanType
|
|
165
165
|
*/
|
|
166
166
|
'std': boolean;
|
|
167
167
|
/**
|
|
168
|
-
* Indicates whether the specified plan type is a Section 125 Plan.
|
|
168
|
+
* Indicates whether the specified plan type is a Section 125 Plan. 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.
|
|
169
169
|
* @type {boolean}
|
|
170
170
|
* @memberof PlanType
|
|
171
171
|
*/
|
|
172
172
|
'section125': boolean;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
174
|
+
* This flag indicates Tier is a required field when updating an enrollment 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.
|
|
175
175
|
* @type {boolean}
|
|
176
176
|
* @memberof PlanType
|
|
177
177
|
*/
|
|
@@ -189,7 +189,7 @@ export interface PlanType {
|
|
|
189
189
|
*/
|
|
190
190
|
'update_User'?: string | null;
|
|
191
191
|
/**
|
|
192
|
-
* Indicates whether the specified plan type is a Vision Plan.
|
|
192
|
+
* Indicates whether the specified plan type is a Vision Plan. 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.
|
|
193
193
|
* @type {boolean}
|
|
194
194
|
* @memberof PlanType
|
|
195
195
|
*/
|