@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230208.2 → 1.20230225.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/api/events-api.ts +87 -0
- package/models/claim-batch-detail.ts +145 -139
- package/models/claim-batch.ts +668 -446
- package/models/claim-detail.ts +130 -124
- package/models/claim-pre-batch-detail.ts +100 -94
- package/models/claim-pre-batch.ts +600 -378
- package/models/claim.ts +508 -280
- package/models/company-data.ts +421 -403
- package/models/cost-contain-zelis-ex-code.ts +6 -6
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- 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/plan-benefit-cluster.ts +12 -12
- package/models/plan-benefit-rate.ts +5 -5
- package/models/plan-benefits.ts +57 -51
- package/models/plan-type.ts +21 -21
- package/models/plans.ts +41 -41
- package/models/prem-rate.ts +85 -85
- package/models/sub-enrollment-plan.ts +10 -10
- package/models/sub-enrollment-rider.ts +14 -14
- package/models/subscribers.ts +2 -2
- package/models/users.ts +8 -8
- package/package.json +1 -1
|
@@ -21,37 +21,37 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CostContainZelisExCode {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* An Ex Code that is being used for Zelis
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CostContainZelisExCode
|
|
27
27
|
*/
|
|
28
28
|
'ex_Code': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Date record was first added to the system
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof CostContainZelisExCode
|
|
33
33
|
*/
|
|
34
34
|
'entry_Date'?: string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* User that first added the record to the system
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CostContainZelisExCode
|
|
39
39
|
*/
|
|
40
40
|
'entry_User'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* When the Ex Code is present on the claim, when this is sent to Zelis, send it as In Network 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 CostContainZelisExCode
|
|
45
45
|
*/
|
|
46
46
|
'in_Network': boolean;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CostContainZelisExCode
|
|
51
51
|
*/
|
|
52
52
|
'update_Date'?: string;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* User that last updated the record in the system
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CostContainZelisExCode
|
|
57
57
|
*/
|
package/models/groups.ts
CHANGED
|
@@ -51,7 +51,7 @@ export interface Groups {
|
|
|
51
51
|
*/
|
|
52
52
|
'address2'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
* Indicates if this Group administers COBRA.
|
|
54
|
+
* Indicates if this Group administers COBRA. 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 Groups
|
|
57
57
|
*/
|
|
@@ -63,19 +63,19 @@ export interface Groups {
|
|
|
63
63
|
*/
|
|
64
64
|
'adult_Age'?: number | null;
|
|
65
65
|
/**
|
|
66
|
-
* Notes if the claims for this Group should be Advice_To_Pay (flagged as unpaid when processed).
|
|
66
|
+
* Notes if the claims for this Group should be Advice_To_Pay (flagged as unpaid when processed). 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 Groups
|
|
69
69
|
*/
|
|
70
70
|
'advice_To_Pay': boolean;
|
|
71
71
|
/**
|
|
72
|
-
* Flag if adjudication should apply an Ex Code to a claim for this Group.
|
|
72
|
+
* Flag if adjudication should apply an Ex Code to a claim for this Group. 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.
|
|
73
73
|
* @type {boolean}
|
|
74
74
|
* @memberof Groups
|
|
75
75
|
*/
|
|
76
76
|
'apply_Ex_Code': boolean;
|
|
77
77
|
/**
|
|
78
|
-
* Notes if this group allows Auth Required claims edit to be overridden and paid.
|
|
78
|
+
* Notes if this group allows Auth Required claims edit to be overridden and paid. 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.
|
|
79
79
|
* @type {boolean}
|
|
80
80
|
* @memberof Groups
|
|
81
81
|
*/
|
|
@@ -147,7 +147,7 @@ export interface Groups {
|
|
|
147
147
|
*/
|
|
148
148
|
'claim_Days_Allowed'?: number | null;
|
|
149
149
|
/**
|
|
150
|
-
* Notes that this group calculates copay max (based on plan configuration) by provider rather than across the entire plan.
|
|
150
|
+
* Notes that this group calculates copay max (based on plan configuration) by provider rather than across the entire 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 Groups
|
|
153
153
|
*/
|
|
@@ -213,13 +213,13 @@ export interface Groups {
|
|
|
213
213
|
*/
|
|
214
214
|
'default_Invoice_ReportDefinition_Key'?: number | null;
|
|
215
215
|
/**
|
|
216
|
-
* Process by Disability Date can be defined here to apply to all claims for this group rather than on a claim by claim basis (acts as a default).
|
|
216
|
+
* Process by Disability Date can be defined here to apply to all claims for this group rather than on a claim by claim basis (acts as a default). 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.
|
|
217
217
|
* @type {boolean}
|
|
218
218
|
* @memberof Groups
|
|
219
219
|
*/
|
|
220
220
|
'default_Process_by_Disability_Date': boolean;
|
|
221
221
|
/**
|
|
222
|
-
* Roll Up Waiting Period can be defined here to apply to all claims for this group rather than on a claim by claim basis (acts as a default).
|
|
222
|
+
* Roll Up Waiting Period can be defined here to apply to all claims for this group rather than on a claim by claim basis (acts as a default). 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.
|
|
223
223
|
* @type {boolean}
|
|
224
224
|
* @memberof Groups
|
|
225
225
|
*/
|
|
@@ -231,7 +231,7 @@ export interface Groups {
|
|
|
231
231
|
*/
|
|
232
232
|
'disability_Pay_Through_Day'?: number | null;
|
|
233
233
|
/**
|
|
234
|
-
*
|
|
234
|
+
* This flag indicates that the Group COBRA premium will not be automatically populated during member disenrollment. 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 Groups
|
|
237
237
|
*/
|
|
@@ -255,7 +255,7 @@ export interface Groups {
|
|
|
255
255
|
*/
|
|
256
256
|
'distribution_Payor_ID'?: string | null;
|
|
257
257
|
/**
|
|
258
|
-
* Notes if this group allows Duplicate Claims to be overridden to be paid.
|
|
258
|
+
* Notes if this group allows Duplicate Claims to be overridden to be paid. 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.
|
|
259
259
|
* @type {boolean}
|
|
260
260
|
* @memberof Groups
|
|
261
261
|
*/
|
|
@@ -333,19 +333,19 @@ export interface Groups {
|
|
|
333
333
|
*/
|
|
334
334
|
'group_Account'?: number | null;
|
|
335
335
|
/**
|
|
336
|
-
* No longer in use.
|
|
336
|
+
* 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.
|
|
337
337
|
* @type {boolean}
|
|
338
338
|
* @memberof Groups
|
|
339
339
|
*/
|
|
340
340
|
'individual_Billing': boolean;
|
|
341
341
|
/**
|
|
342
|
-
* No longer in use.
|
|
342
|
+
* 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.
|
|
343
343
|
* @type {boolean}
|
|
344
344
|
* @memberof Groups
|
|
345
345
|
*/
|
|
346
346
|
'individual_Cycle': boolean;
|
|
347
347
|
/**
|
|
348
|
-
* No longer in use.
|
|
348
|
+
* 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.
|
|
349
349
|
* @type {boolean}
|
|
350
350
|
* @memberof Groups
|
|
351
351
|
*/
|
|
@@ -393,7 +393,7 @@ export interface Groups {
|
|
|
393
393
|
*/
|
|
394
394
|
'notes'?: string | null;
|
|
395
395
|
/**
|
|
396
|
-
* Information field used in custom client reporting.
|
|
396
|
+
* Information field used in custom client reporting. 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.
|
|
397
397
|
* @type {boolean}
|
|
398
398
|
* @memberof Groups
|
|
399
399
|
*/
|
|
@@ -411,7 +411,7 @@ export interface Groups {
|
|
|
411
411
|
*/
|
|
412
412
|
'paid_Through'?: string | null;
|
|
413
413
|
/**
|
|
414
|
-
* Notes if this Group is Paperless (this overrides the individual member settings from VBAGateway). Used in process automation.
|
|
414
|
+
* Notes if this Group is Paperless (this overrides the individual member settings from VBAGateway). Used in process automation. 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.
|
|
415
415
|
* @type {boolean}
|
|
416
416
|
* @memberof Groups
|
|
417
417
|
*/
|
|
@@ -441,7 +441,7 @@ export interface Groups {
|
|
|
441
441
|
*/
|
|
442
442
|
'phone_Country_Code'?: string | null;
|
|
443
443
|
/**
|
|
444
|
-
* Information field used in custom client reporting.
|
|
444
|
+
* Information field used in custom client reporting. 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
445
|
* @type {boolean}
|
|
446
446
|
* @memberof Groups
|
|
447
447
|
*/
|
|
@@ -459,7 +459,7 @@ export interface Groups {
|
|
|
459
459
|
*/
|
|
460
460
|
'producer'?: string | null;
|
|
461
461
|
/**
|
|
462
|
-
* Notes if the disability deductions should be prorated during adjudication.
|
|
462
|
+
* Notes if the disability deductions should be prorated during adjudication. 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.
|
|
463
463
|
* @type {boolean}
|
|
464
464
|
* @memberof Groups
|
|
465
465
|
*/
|
|
@@ -531,13 +531,13 @@ export interface Groups {
|
|
|
531
531
|
*/
|
|
532
532
|
'renewal_Date'?: string | null;
|
|
533
533
|
/**
|
|
534
|
-
* Notes if this group has Self-Admin billing.
|
|
534
|
+
* Notes if this group has Self-Admin billing. 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.
|
|
535
535
|
* @type {boolean}
|
|
536
536
|
* @memberof Groups
|
|
537
537
|
*/
|
|
538
538
|
'self_Admin': boolean;
|
|
539
539
|
/**
|
|
540
|
-
* Indicates if the system should calculate the Due Date on an invoice based on Billing_Due_Date settings. By default the due date is the \"Bill Thru\" on an invoice, this gives the option to change that calculation.
|
|
540
|
+
* Indicates if the system should calculate the Due Date on an invoice based on Billing_Due_Date settings. By default the due date is the \"Bill Thru\" on an invoice, this gives the option to change that calculation. 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.
|
|
541
541
|
* @type {boolean}
|
|
542
542
|
* @memberof Groups
|
|
543
543
|
*/
|
package/models/idcard-request.ts
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface IDCardRequest {
|
|
23
23
|
/**
|
|
24
|
-
* Key value of the ID Card request
|
|
24
|
+
* Key value of the ID Card request 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.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof IDCardRequest
|
|
27
27
|
*/
|
|
@@ -33,7 +33,7 @@ export interface IDCardRequest {
|
|
|
33
33
|
*/
|
|
34
34
|
'as_Of_Date'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Reason indicating why the ID Card Request was cancelled
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof IDCardRequest
|
|
39
39
|
*/
|
|
@@ -81,7 +81,7 @@ export interface IDCardRequest {
|
|
|
81
81
|
*/
|
|
82
82
|
'member_Seq'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
* Flag indicating the ID card request was for a renewal
|
|
84
|
+
* Flag indicating the ID card request was for a renewal 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 IDCardRequest
|
|
87
87
|
*/
|
|
@@ -45,13 +45,13 @@ export interface MemEnrollmentPlan {
|
|
|
45
45
|
*/
|
|
46
46
|
'division_ID': string;
|
|
47
47
|
/**
|
|
48
|
-
* References the Subenrollment.Group_Coverage_Start value in the parent table.
|
|
48
|
+
* References the Subenrollment.Group_Coverage_Start value in the parent table. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof MemEnrollmentPlan
|
|
51
51
|
*/
|
|
52
52
|
'group_Coverage_Start': string;
|
|
53
53
|
/**
|
|
54
|
-
* References the Subenrollment.Start_Date value in the parent table.
|
|
54
|
+
* References the Subenrollment.Start_Date value in the parent table. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof MemEnrollmentPlan
|
|
57
57
|
*/
|
|
@@ -63,7 +63,7 @@ export interface MemEnrollmentPlan {
|
|
|
63
63
|
*/
|
|
64
64
|
'plan_ID': string;
|
|
65
65
|
/**
|
|
66
|
-
* Start date of the Plan coverage.
|
|
66
|
+
* Start date of the Plan coverage. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof MemEnrollmentPlan
|
|
69
69
|
*/
|
|
@@ -87,31 +87,31 @@ export interface MemEnrollmentPlan {
|
|
|
87
87
|
*/
|
|
88
88
|
'entry_User'?: string | null;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Member elected Daily Benefit Amount
|
|
91
91
|
* @type {number}
|
|
92
92
|
* @memberof MemEnrollmentPlan
|
|
93
93
|
*/
|
|
94
94
|
'ltC_Daily_Benefit_Amount'?: number | null;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Lifetime Max Amount elected
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof MemEnrollmentPlan
|
|
99
99
|
*/
|
|
100
100
|
'ltC_Lifetime_Max_Amount'?: number | null;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Lifetime Max Days elected
|
|
103
103
|
* @type {number}
|
|
104
104
|
* @memberof MemEnrollmentPlan
|
|
105
105
|
*/
|
|
106
106
|
'ltC_Lifetime_Max_Days'?: number | null;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Lifetime Max Years elected
|
|
109
109
|
* @type {number}
|
|
110
110
|
* @memberof MemEnrollmentPlan
|
|
111
111
|
*/
|
|
112
112
|
'ltC_Lifetime_Max_Years'?: number | null;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* Member elected Monthly Benefit Amount
|
|
115
115
|
* @type {number}
|
|
116
116
|
* @memberof MemEnrollmentPlan
|
|
117
117
|
*/
|
|
@@ -141,7 +141,7 @@ export interface MemEnrollmentPlan {
|
|
|
141
141
|
*/
|
|
142
142
|
'update_User'?: string | null;
|
|
143
143
|
/**
|
|
144
|
-
* Indicates if this enrollment plan record should calculate the Dollar_Amount value through the Group leve Volume settings rather than use the value stored in Dollar_Amount.
|
|
144
|
+
* Indicates if this enrollment plan record should calculate the Dollar_Amount value through the Group leve Volume settings rather than use the value stored in Dollar_Amount. 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 MemEnrollmentPlan
|
|
147
147
|
*/
|
|
@@ -45,13 +45,13 @@ export interface MemEnrollmentRider {
|
|
|
45
45
|
*/
|
|
46
46
|
'division_ID': string;
|
|
47
47
|
/**
|
|
48
|
-
* References the MemenrollmentPlan.Group_Coverage_Start value in parent table.
|
|
48
|
+
* References the MemenrollmentPlan.Group_Coverage_Start value in parent table. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof MemEnrollmentRider
|
|
51
51
|
*/
|
|
52
52
|
'group_Coverage_Start': string;
|
|
53
53
|
/**
|
|
54
|
-
* References the MemenrollmentPlan.Sub_Start_Date value in parent table.
|
|
54
|
+
* References the MemenrollmentPlan.Sub_Start_Date value in parent table. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof MemEnrollmentRider
|
|
57
57
|
*/
|
|
@@ -63,7 +63,7 @@ export interface MemEnrollmentRider {
|
|
|
63
63
|
*/
|
|
64
64
|
'plan_ID': string;
|
|
65
65
|
/**
|
|
66
|
-
* References the MemenrollmentPlan.Plan_Start value in parent table.
|
|
66
|
+
* References the MemenrollmentPlan.Plan_Start value in parent table. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof MemEnrollmentRider
|
|
69
69
|
*/
|
|
@@ -75,7 +75,7 @@ export interface MemEnrollmentRider {
|
|
|
75
75
|
*/
|
|
76
76
|
'benefit_Code': string;
|
|
77
77
|
/**
|
|
78
|
-
* Start date of Rider coverage.
|
|
78
|
+
* Start date of Rider coverage. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof MemEnrollmentRider
|
|
81
81
|
*/
|
|
@@ -87,7 +87,7 @@ export interface MemEnrollmentRider {
|
|
|
87
87
|
*/
|
|
88
88
|
'employee_Contribution'?: number | null;
|
|
89
89
|
/**
|
|
90
|
-
* Indicates if the Emploee Contribution amount entered is a Pct or flat amount.
|
|
90
|
+
* Indicates if the Emploee Contribution amount entered is a Pct or flat amount. 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 MemEnrollmentRider
|
|
93
93
|
*/
|
|
@@ -111,31 +111,31 @@ export interface MemEnrollmentRider {
|
|
|
111
111
|
*/
|
|
112
112
|
'external_ID'?: string | null;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* Member elected Daily Benefit Amount
|
|
115
115
|
* @type {number}
|
|
116
116
|
* @memberof MemEnrollmentRider
|
|
117
117
|
*/
|
|
118
118
|
'ltC_Daily_Benefit_Amount'?: number | null;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* Lifetime Max Amount elected
|
|
121
121
|
* @type {number}
|
|
122
122
|
* @memberof MemEnrollmentRider
|
|
123
123
|
*/
|
|
124
124
|
'ltC_Lifetime_Max_Amount'?: number | null;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* Lifetime Max Days elected
|
|
127
127
|
* @type {number}
|
|
128
128
|
* @memberof MemEnrollmentRider
|
|
129
129
|
*/
|
|
130
130
|
'ltC_Lifetime_Max_Days'?: number | null;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* Lifetime Max Years elected
|
|
133
133
|
* @type {number}
|
|
134
134
|
* @memberof MemEnrollmentRider
|
|
135
135
|
*/
|
|
136
136
|
'ltC_Lifetime_Max_Years'?: number | null;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Member elected Monthly Benefit Amount
|
|
139
139
|
* @type {number}
|
|
140
140
|
* @memberof MemEnrollmentRider
|
|
141
141
|
*/
|
|
@@ -93,7 +93,7 @@ export interface MemberBeneficiary {
|
|
|
93
93
|
*/
|
|
94
94
|
'entry_User'?: string | null;
|
|
95
95
|
/**
|
|
96
|
-
* Indicates if interest should be excluded when adjudicating Life claims paid to this beneficiary.
|
|
96
|
+
* Indicates if interest should be excluded when adjudicating Life claims paid to this beneficiary. 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 MemberBeneficiary
|
|
99
99
|
*/
|
|
@@ -147,7 +147,7 @@ export interface MemberBeneficiary {
|
|
|
147
147
|
*/
|
|
148
148
|
'ssn'?: string | null;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* This flag indicates if this beneficiary is secondary.
|
|
151
151
|
* @type {boolean}
|
|
152
152
|
* @memberof MemberBeneficiary
|
|
153
153
|
*/
|
|
@@ -165,7 +165,7 @@ export interface MemberBeneficiary {
|
|
|
165
165
|
*/
|
|
166
166
|
'state'?: string | null;
|
|
167
167
|
/**
|
|
168
|
-
*
|
|
168
|
+
* This flag indicates if this tertiary is secondary.
|
|
169
169
|
* @type {boolean}
|
|
170
170
|
* @memberof MemberBeneficiary
|
|
171
171
|
*/
|
|
@@ -39,16 +39,52 @@ export interface MemberLanguage {
|
|
|
39
39
|
*/
|
|
40
40
|
'language_ID': string;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Date when the record was first added to the system.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof MemberLanguage
|
|
45
|
+
*/
|
|
46
|
+
'entry_Date'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* User that first added the record to the system.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof MemberLanguage
|
|
51
|
+
*/
|
|
52
|
+
'entry_User'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* Idenfities that the associated language is the Member\'s primary language. 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
55
|
* @type {boolean}
|
|
44
56
|
* @memberof MemberLanguage
|
|
45
57
|
*/
|
|
46
58
|
'primary_Language': boolean;
|
|
47
59
|
/**
|
|
48
|
-
* Identifies that the associated language is the Member\'s secondary language.
|
|
60
|
+
* Identifies that the associated language is the Member\'s secondary language. 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.
|
|
49
61
|
* @type {boolean}
|
|
50
62
|
* @memberof MemberLanguage
|
|
51
63
|
*/
|
|
52
64
|
'secondary_Language': boolean;
|
|
65
|
+
/**
|
|
66
|
+
* 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
|
+
* @type {boolean}
|
|
68
|
+
* @memberof MemberLanguage
|
|
69
|
+
*/
|
|
70
|
+
'spoken_Language': boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Date when the record was last updated in the system.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof MemberLanguage
|
|
75
|
+
*/
|
|
76
|
+
'update_Date'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* User that last updated the record in the system.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof MemberLanguage
|
|
81
|
+
*/
|
|
82
|
+
'update_User'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* 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
|
+
* @type {boolean}
|
|
86
|
+
* @memberof MemberLanguage
|
|
87
|
+
*/
|
|
88
|
+
'written_Language': boolean;
|
|
53
89
|
}
|
|
54
90
|
|
|
@@ -21,73 +21,73 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface PlanBenefitCluster {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Identity column for table PlanBenefitCluster 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.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof PlanBenefitCluster
|
|
27
27
|
*/
|
|
28
28
|
'planBenefitCluster_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Which Benefit Code is the base code for this Plan Benefit Cluster
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof PlanBenefitCluster
|
|
33
33
|
*/
|
|
34
34
|
'benefit_Code': string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Date record was first added to the system
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof PlanBenefitCluster
|
|
39
39
|
*/
|
|
40
40
|
'entry_Date'?: string;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* User that first added the record to the system
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof PlanBenefitCluster
|
|
45
45
|
*/
|
|
46
46
|
'entry_User'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* First Multitier for the Benefit Code listed under this Plan Benefit Cluster
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof PlanBenefitCluster
|
|
51
51
|
*/
|
|
52
52
|
'multiTier_1'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Second Multitier for the Benefit Code listed under this Plan Benefit Cluster
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof PlanBenefitCluster
|
|
57
57
|
*/
|
|
58
58
|
'multiTier_2'?: string | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Third Multitier for the Benefit Code listed under this Plan Benefit Cluster
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof PlanBenefitCluster
|
|
63
63
|
*/
|
|
64
64
|
'multiTier_3'?: string | null;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* Fourth Multitier for the Benefit Code listed under this Plan Benefit Cluster
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof PlanBenefitCluster
|
|
69
69
|
*/
|
|
70
70
|
'multiTier_4'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Fifth Multitier for the Benefit Code listed under this Plan Benefit Cluster
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof PlanBenefitCluster
|
|
75
75
|
*/
|
|
76
76
|
'multiTier_5'?: string | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Which Plan this Plan Benefit Cluster belongs to
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof PlanBenefitCluster
|
|
81
81
|
*/
|
|
82
82
|
'plan_ID': string;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Date the record was last updated in the system
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof PlanBenefitCluster
|
|
87
87
|
*/
|
|
88
88
|
'update_Date'?: string;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* User that last updated the record in the system
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof PlanBenefitCluster
|
|
93
93
|
*/
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface PlanBenefitRate {
|
|
23
23
|
/**
|
|
24
|
-
* Unique idenfiter assigned to the Plan Benefit Rate.
|
|
24
|
+
* Unique idenfiter assigned to the Plan Benefit Rate. 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.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof PlanBenefitRate
|
|
27
27
|
*/
|
|
@@ -33,7 +33,7 @@ export interface PlanBenefitRate {
|
|
|
33
33
|
*/
|
|
34
34
|
'benefit_Code': string;
|
|
35
35
|
/**
|
|
36
|
-
* Date when the Rate becomes effective.
|
|
36
|
+
* Date when the Rate becomes effective. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof PlanBenefitRate
|
|
39
39
|
*/
|
|
@@ -57,7 +57,7 @@ export interface PlanBenefitRate {
|
|
|
57
57
|
*/
|
|
58
58
|
'ex_Code'?: string | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Network ID associated with the Plan Benefit Rate
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof PlanBenefitRate
|
|
63
63
|
*/
|
|
@@ -69,7 +69,7 @@ export interface PlanBenefitRate {
|
|
|
69
69
|
*/
|
|
70
70
|
'plan_ID': string;
|
|
71
71
|
/**
|
|
72
|
-
* This area will allow for a limit (dollar or percentage) of how much of the allowed amount can be paid out, per claim detail line, by the specific plan benefit.
|
|
72
|
+
* This area will allow for a limit (dollar or percentage) of how much of the allowed amount can be paid out, per claim detail line, by the specific plan benefit. 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 PlanBenefitRate
|
|
75
75
|
*/
|
|
@@ -87,7 +87,7 @@ export interface PlanBenefitRate {
|
|
|
87
87
|
*/
|
|
88
88
|
'rate_Max_Type'?: string | null;
|
|
89
89
|
/**
|
|
90
|
-
* Indicates whether the Rate will be a percentage or fixed amount.
|
|
90
|
+
* Indicates whether the Rate will be a percentage or fixed amount. 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 PlanBenefitRate
|
|
93
93
|
*/
|