@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230130.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/.openapi-generator/FILES +18 -3
- package/api/adv-accounting-api.ts +10 -26
- package/api/commission-rates-api.ts +98 -0
- package/api/event-args-api.ts +15 -15
- package/api/events-api.ts +87 -0
- package/api/group-contract-plans-api.ts +105 -0
- package/api/group-contracts-api.ts +105 -0
- package/api/group-divisions-api.ts +115 -0
- package/api/group-volumes-api.ts +15 -14
- package/api/payor-accounts-api.ts +75 -130
- package/api/plan-auth-penalty-benefits-api.ts +232 -91
- package/api/plan-benefit-cascades-api.ts +15 -23
- package/api/premium-rates-api.ts +107 -0
- package/models/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/commission-rate-division-config.ts +43 -0
- package/models/commission-rate-nested-list-vbaresponse.ts +45 -0
- package/models/commission-rate-nested.ts +43 -0
- package/models/commission-rate-plan-config.ts +43 -0
- package/models/commission-rate-rate.ts +36 -0
- package/models/company-data.ts +421 -403
- package/models/copy-group-division.ts +132 -0
- package/models/cost-contain-zelis-ex-code.ts +6 -6
- package/models/{benefit-config.ts → group-volume-benefit-config.ts} +5 -5
- package/models/group-volume-division-config.ts +43 -0
- package/models/group-volume-nested.ts +3 -3
- package/models/group-volume-plan-config.ts +43 -0
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- package/models/index.ts +18 -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/member-prior-accum.ts +28 -28
- package/models/plan-auth-penalty-benefit.ts +24 -0
- 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-basis-config.ts +43 -0
- package/models/prem-rate-category-config.ts +43 -0
- package/models/{division-config.ts → prem-rate-division-config.ts} +8 -8
- package/models/prem-rate-nested-list-vbaresponse.ts +45 -0
- package/models/prem-rate-nested.ts +43 -0
- package/models/{plan-config.ts → prem-rate-plan-config.ts} +8 -8
- package/models/prem-rate-rate.ts +36 -0
- package/models/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/models/vbagroup-contract-list-vbaresponse.ts +45 -0
- package/models/vbagroup-contract.ts +55 -0
- package/package.json +1 -1
|
@@ -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
|
|
|
@@ -69,115 +69,115 @@ export interface MemberPriorAccum {
|
|
|
69
69
|
*/
|
|
70
70
|
'added_Accum'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
* Total Allowed amount.
|
|
72
|
+
* Total Allowed amount. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
73
73
|
* @type {number}
|
|
74
74
|
* @memberof MemberPriorAccum
|
|
75
75
|
*/
|
|
76
76
|
'allowed_Amt': number;
|
|
77
77
|
/**
|
|
78
|
-
* Allowed amount that has been used In Network.
|
|
78
|
+
* Allowed amount that has been used In Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
79
79
|
* @type {number}
|
|
80
80
|
* @memberof MemberPriorAccum
|
|
81
81
|
*/
|
|
82
82
|
'allowed_Amt_Net': number;
|
|
83
83
|
/**
|
|
84
|
-
* Allowed amount that has been used Out of Network.
|
|
84
|
+
* Allowed amount that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
85
85
|
* @type {number}
|
|
86
86
|
* @memberof MemberPriorAccum
|
|
87
87
|
*/
|
|
88
88
|
'allowed_Amt_OON': number;
|
|
89
89
|
/**
|
|
90
|
-
* Identifies that the prior accumulator was automatically generated.
|
|
90
|
+
* Identifies that the prior accumulator was automatically generated. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
91
91
|
* @type {boolean}
|
|
92
92
|
* @memberof MemberPriorAccum
|
|
93
93
|
*/
|
|
94
94
|
'auto_Generated': boolean;
|
|
95
95
|
/**
|
|
96
|
-
* Total amount of benefit that has been used.
|
|
96
|
+
* Total amount of benefit that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof MemberPriorAccum
|
|
99
99
|
*/
|
|
100
100
|
'benefit_Used': number;
|
|
101
101
|
/**
|
|
102
|
-
* In network amount of benefit that has been used.
|
|
102
|
+
* In network amount of benefit that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
103
103
|
* @type {number}
|
|
104
104
|
* @memberof MemberPriorAccum
|
|
105
105
|
*/
|
|
106
106
|
'benefit_Used_Net': number;
|
|
107
107
|
/**
|
|
108
|
-
* Amount of benefit that has been used Out of Network.
|
|
108
|
+
* Amount of benefit that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
109
109
|
* @type {number}
|
|
110
110
|
* @memberof MemberPriorAccum
|
|
111
111
|
*/
|
|
112
112
|
'benefit_Used_OON': number;
|
|
113
113
|
/**
|
|
114
|
-
* Amount that has been billed.
|
|
114
|
+
* Amount that has been billed. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
115
115
|
* @type {number}
|
|
116
116
|
* @memberof MemberPriorAccum
|
|
117
117
|
*/
|
|
118
118
|
'billed_Amt': number;
|
|
119
119
|
/**
|
|
120
|
-
* Amount that has been billed In Network.
|
|
120
|
+
* Amount that has been billed In Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
121
121
|
* @type {number}
|
|
122
122
|
* @memberof MemberPriorAccum
|
|
123
123
|
*/
|
|
124
124
|
'billed_Amt_Net': number;
|
|
125
125
|
/**
|
|
126
|
-
* Amount that has been billed Out of Network.
|
|
126
|
+
* Amount that has been billed Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
127
127
|
* @type {number}
|
|
128
128
|
* @memberof MemberPriorAccum
|
|
129
129
|
*/
|
|
130
130
|
'billed_Amt_OON': number;
|
|
131
131
|
/**
|
|
132
|
-
* Total Coordination of Benefits amount that has been used.
|
|
132
|
+
* Total Coordination of Benefits amount that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
133
133
|
* @type {number}
|
|
134
134
|
* @memberof MemberPriorAccum
|
|
135
135
|
*/
|
|
136
136
|
'coB_Amt': number;
|
|
137
137
|
/**
|
|
138
|
-
* In Network Coordination of Benefits amount that has been used.
|
|
138
|
+
* In Network Coordination of Benefits amount that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
139
139
|
* @type {number}
|
|
140
140
|
* @memberof MemberPriorAccum
|
|
141
141
|
*/
|
|
142
142
|
'coB_Amt_Net': number;
|
|
143
143
|
/**
|
|
144
|
-
* Coordination of Benefits amount that has been used Out of Network.
|
|
144
|
+
* Coordination of Benefits amount that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
145
145
|
* @type {number}
|
|
146
146
|
* @memberof MemberPriorAccum
|
|
147
147
|
*/
|
|
148
148
|
'coB_Amt_OON': number;
|
|
149
149
|
/**
|
|
150
|
-
* Total amount of Coinsurance that has been used.
|
|
150
|
+
* Total amount of Coinsurance that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
151
151
|
* @type {number}
|
|
152
152
|
* @memberof MemberPriorAccum
|
|
153
153
|
*/
|
|
154
154
|
'coins_Amt': number;
|
|
155
155
|
/**
|
|
156
|
-
* In Network amount of Coinsurance that has been used.
|
|
156
|
+
* In Network amount of Coinsurance that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
157
157
|
* @type {number}
|
|
158
158
|
* @memberof MemberPriorAccum
|
|
159
159
|
*/
|
|
160
160
|
'coins_Amt_Net': number;
|
|
161
161
|
/**
|
|
162
|
-
* Amount of Coinsurance that has been used Out of Network.
|
|
162
|
+
* Amount of Coinsurance that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
163
163
|
* @type {number}
|
|
164
164
|
* @memberof MemberPriorAccum
|
|
165
165
|
*/
|
|
166
166
|
'coins_Amt_OON': number;
|
|
167
167
|
/**
|
|
168
|
-
* Total amount of Copay that has been used.
|
|
168
|
+
* Total amount of Copay that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
169
169
|
* @type {number}
|
|
170
170
|
* @memberof MemberPriorAccum
|
|
171
171
|
*/
|
|
172
172
|
'copay_Amt': number;
|
|
173
173
|
/**
|
|
174
|
-
* In Network amount of Copay that has been used.
|
|
174
|
+
* In Network amount of Copay that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
175
175
|
* @type {number}
|
|
176
176
|
* @memberof MemberPriorAccum
|
|
177
177
|
*/
|
|
178
178
|
'copay_Amt_Net': number;
|
|
179
179
|
/**
|
|
180
|
-
* Amount of Copay that has been used Out of Network.
|
|
180
|
+
* Amount of Copay that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
181
181
|
* @type {number}
|
|
182
182
|
* @memberof MemberPriorAccum
|
|
183
183
|
*/
|
|
@@ -189,19 +189,19 @@ export interface MemberPriorAccum {
|
|
|
189
189
|
*/
|
|
190
190
|
'currency_ID'?: string | null;
|
|
191
191
|
/**
|
|
192
|
-
* In Network amount of deductible that has been used.
|
|
192
|
+
* In Network amount of deductible that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
193
193
|
* @type {number}
|
|
194
194
|
* @memberof MemberPriorAccum
|
|
195
195
|
*/
|
|
196
196
|
'ded_PPO_Used': number;
|
|
197
197
|
/**
|
|
198
|
-
* Total amount of deductible that has been used.
|
|
198
|
+
* Total amount of deductible that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
199
199
|
* @type {number}
|
|
200
200
|
* @memberof MemberPriorAccum
|
|
201
201
|
*/
|
|
202
202
|
'deductible_Used': number;
|
|
203
203
|
/**
|
|
204
|
-
* Amount of deductible that has been used Out of Network.
|
|
204
|
+
* Amount of deductible that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
205
205
|
* @type {number}
|
|
206
206
|
* @memberof MemberPriorAccum
|
|
207
207
|
*/
|
|
@@ -219,37 +219,37 @@ export interface MemberPriorAccum {
|
|
|
219
219
|
*/
|
|
220
220
|
'entry_User'?: string | null;
|
|
221
221
|
/**
|
|
222
|
-
* Total amount that is not covered.
|
|
222
|
+
* Total amount that is not covered. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
223
223
|
* @type {number}
|
|
224
224
|
* @memberof MemberPriorAccum
|
|
225
225
|
*/
|
|
226
226
|
'not_Covered_Amt': number;
|
|
227
227
|
/**
|
|
228
|
-
* In Network amount that is not covered.
|
|
228
|
+
* In Network amount that is not covered. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
229
229
|
* @type {number}
|
|
230
230
|
* @memberof MemberPriorAccum
|
|
231
231
|
*/
|
|
232
232
|
'not_Covered_Amt_Net': number;
|
|
233
233
|
/**
|
|
234
|
-
* Out of Network amount that is not covered.
|
|
234
|
+
* Out of Network amount that is not covered. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
235
235
|
* @type {number}
|
|
236
236
|
* @memberof MemberPriorAccum
|
|
237
237
|
*/
|
|
238
238
|
'not_Covered_Amt_OON': number;
|
|
239
239
|
/**
|
|
240
|
-
* Total Out of Pocket amount that has been used.
|
|
240
|
+
* Total Out of Pocket amount that has been used. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
241
241
|
* @type {number}
|
|
242
242
|
* @memberof MemberPriorAccum
|
|
243
243
|
*/
|
|
244
244
|
'out_Of_Pocket': number;
|
|
245
245
|
/**
|
|
246
|
-
* Amount of Out of Pocket that has been used In Network.
|
|
246
|
+
* Amount of Out of Pocket that has been used In Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
247
247
|
* @type {number}
|
|
248
248
|
* @memberof MemberPriorAccum
|
|
249
249
|
*/
|
|
250
250
|
'out_Of_Pocket_Net': number;
|
|
251
251
|
/**
|
|
252
|
-
* Amount of Out of Pocket that has been used Out of Network.
|
|
252
|
+
* Amount of Out of Pocket that has been used Out of Network. Note: The database will apply a default value of `0` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
253
253
|
* @type {number}
|
|
254
254
|
* @memberof MemberPriorAccum
|
|
255
255
|
*/
|
|
@@ -32,5 +32,29 @@ export interface PlanAuthPenaltyBenefit {
|
|
|
32
32
|
* @memberof PlanAuthPenaltyBenefit
|
|
33
33
|
*/
|
|
34
34
|
'benefit_Code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Date when the record was added to the system.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PlanAuthPenaltyBenefit
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PlanAuthPenaltyBenefit
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date when the record was last updated in the system.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PlanAuthPenaltyBenefit
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PlanAuthPenaltyBenefit
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
35
59
|
}
|
|
36
60
|
|
|
@@ -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
|
*/
|