@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
|
@@ -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
|
+
* A flag indicating a Member can speak the 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.
|
|
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
|
+
* A flag indicating a Member can write the 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.
|
|
85
|
+
* @type {boolean}
|
|
86
|
+
* @memberof MemberLanguage
|
|
87
|
+
*/
|
|
88
|
+
'written_Language': boolean;
|
|
53
89
|
}
|
|
54
90
|
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface MemberMedicareResp {
|
|
23
23
|
/**
|
|
24
|
-
* Unique identifier for each Medicare Reponsibility record on this Member.
|
|
24
|
+
* Unique identifier for each Medicare Reponsibility record on this Member. 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 MemberMedicareResp
|
|
27
27
|
*/
|
|
28
|
-
'memberMedicareResp_Key'
|
|
28
|
+
'memberMedicareResp_Key'?: number;
|
|
29
29
|
/**
|
|
30
30
|
* Indicates the coordination of benefits contractor\'s document control number.
|
|
31
31
|
* @type {string}
|
|
@@ -103,25 +103,37 @@ export interface MemberMedicareResp {
|
|
|
103
103
|
* @type {string}
|
|
104
104
|
* @memberof MemberMedicareResp
|
|
105
105
|
*/
|
|
106
|
-
'disposition_Code_Date'
|
|
106
|
+
'disposition_Code_Date': string;
|
|
107
107
|
/**
|
|
108
108
|
* End date of the coordination period for the Member\'s End State Renal Disease.
|
|
109
109
|
* @type {string}
|
|
110
110
|
* @memberof MemberMedicareResp
|
|
111
111
|
*/
|
|
112
|
-
'ersD_Coord_Period_End_Date'
|
|
112
|
+
'ersD_Coord_Period_End_Date': string;
|
|
113
113
|
/**
|
|
114
114
|
* Start date of the coordination period for the Member\'s End Stage Renal Disease.
|
|
115
115
|
* @type {string}
|
|
116
116
|
* @memberof MemberMedicareResp
|
|
117
117
|
*/
|
|
118
|
-
'ersD_Coord_Period_Start_Date'
|
|
118
|
+
'ersD_Coord_Period_Start_Date': string;
|
|
119
119
|
/**
|
|
120
120
|
* Date when the Member started self-training.
|
|
121
121
|
* @type {string}
|
|
122
122
|
* @memberof MemberMedicareResp
|
|
123
123
|
*/
|
|
124
|
-
'esrD_Self_Training_Date'
|
|
124
|
+
'esrD_Self_Training_Date': string;
|
|
125
|
+
/**
|
|
126
|
+
* Date when the record was first added to the system.
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof MemberMedicareResp
|
|
129
|
+
*/
|
|
130
|
+
'entry_Date'?: string;
|
|
131
|
+
/**
|
|
132
|
+
* User that first added the record to the system.
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof MemberMedicareResp
|
|
135
|
+
*/
|
|
136
|
+
'entry_User'?: string | null;
|
|
125
137
|
/**
|
|
126
138
|
* Error Code 1.
|
|
127
139
|
* @type {string}
|
|
@@ -151,7 +163,7 @@ export interface MemberMedicareResp {
|
|
|
151
163
|
* @type {string}
|
|
152
164
|
* @memberof MemberMedicareResp
|
|
153
165
|
*/
|
|
154
|
-
'first_Dialysis_Date'
|
|
166
|
+
'first_Dialysis_Date': string;
|
|
155
167
|
/**
|
|
156
168
|
* Indicates the Medicare health insurance claim number.
|
|
157
169
|
* @type {string}
|
|
@@ -169,13 +181,13 @@ export interface MemberMedicareResp {
|
|
|
169
181
|
* @type {string}
|
|
170
182
|
* @memberof MemberMedicareResp
|
|
171
183
|
*/
|
|
172
|
-
'msP_Birth_Date'
|
|
184
|
+
'msP_Birth_Date': string;
|
|
173
185
|
/**
|
|
174
186
|
* Date when the Medicare Secondary Payor becomes/became effective.
|
|
175
187
|
* @type {string}
|
|
176
188
|
* @memberof MemberMedicareResp
|
|
177
189
|
*/
|
|
178
|
-
'msP_Eff_Date'
|
|
190
|
+
'msP_Eff_Date': string;
|
|
179
191
|
/**
|
|
180
192
|
* Gender of the Medicare Secondary Payor.
|
|
181
193
|
* @type {string}
|
|
@@ -193,43 +205,43 @@ export interface MemberMedicareResp {
|
|
|
193
205
|
* @type {string}
|
|
194
206
|
* @memberof MemberMedicareResp
|
|
195
207
|
*/
|
|
196
|
-
'msP_Term_Date'
|
|
208
|
+
'msP_Term_Date': string;
|
|
197
209
|
/**
|
|
198
210
|
* Date when this Medicare part becomes/became effective.
|
|
199
211
|
* @type {string}
|
|
200
212
|
* @memberof MemberMedicareResp
|
|
201
213
|
*/
|
|
202
|
-
'medicare_Part_A_Eff_Date'
|
|
214
|
+
'medicare_Part_A_Eff_Date': string;
|
|
203
215
|
/**
|
|
204
216
|
* Date when this Medicare part expires/expired.
|
|
205
217
|
* @type {string}
|
|
206
218
|
* @memberof MemberMedicareResp
|
|
207
219
|
*/
|
|
208
|
-
'medicare_Part_A_Term_Date'
|
|
220
|
+
'medicare_Part_A_Term_Date': string;
|
|
209
221
|
/**
|
|
210
222
|
* Date when this Medicare part was last updated.
|
|
211
223
|
* @type {string}
|
|
212
224
|
* @memberof MemberMedicareResp
|
|
213
225
|
*/
|
|
214
|
-
'medicare_Part_A_Update_Date'
|
|
226
|
+
'medicare_Part_A_Update_Date': string;
|
|
215
227
|
/**
|
|
216
228
|
* Date when this Medicare part becomes/became effective.
|
|
217
229
|
* @type {string}
|
|
218
230
|
* @memberof MemberMedicareResp
|
|
219
231
|
*/
|
|
220
|
-
'medicare_Part_B_Eff_Date'
|
|
232
|
+
'medicare_Part_B_Eff_Date': string;
|
|
221
233
|
/**
|
|
222
234
|
* Date when this Medicare part expires/expired.
|
|
223
235
|
* @type {string}
|
|
224
236
|
* @memberof MemberMedicareResp
|
|
225
237
|
*/
|
|
226
|
-
'medicare_Part_B_Term_Date'
|
|
238
|
+
'medicare_Part_B_Term_Date': string;
|
|
227
239
|
/**
|
|
228
240
|
* Date when this Medicare part was last updated.
|
|
229
241
|
* @type {string}
|
|
230
242
|
* @memberof MemberMedicareResp
|
|
231
243
|
*/
|
|
232
|
-
'medicare_Part_B_Update_Date'
|
|
244
|
+
'medicare_Part_B_Update_Date': string;
|
|
233
245
|
/**
|
|
234
246
|
* Indicates the control number for the associated Medicare part.
|
|
235
247
|
* @type {string}
|
|
@@ -241,19 +253,19 @@ export interface MemberMedicareResp {
|
|
|
241
253
|
* @type {string}
|
|
242
254
|
* @memberof MemberMedicareResp
|
|
243
255
|
*/
|
|
244
|
-
'medicare_Part_C_Eff_Date'
|
|
256
|
+
'medicare_Part_C_Eff_Date': string;
|
|
245
257
|
/**
|
|
246
258
|
* Date when this Medicare part expires/expired.
|
|
247
259
|
* @type {string}
|
|
248
260
|
* @memberof MemberMedicareResp
|
|
249
261
|
*/
|
|
250
|
-
'medicare_Part_C_Term_Date'
|
|
262
|
+
'medicare_Part_C_Term_Date': string;
|
|
251
263
|
/**
|
|
252
264
|
* Date when this Medicare part was last updated.
|
|
253
265
|
* @type {string}
|
|
254
266
|
* @memberof MemberMedicareResp
|
|
255
267
|
*/
|
|
256
|
-
'medicare_Part_C_Update_Date'
|
|
268
|
+
'medicare_Part_C_Update_Date': string;
|
|
257
269
|
/**
|
|
258
270
|
* Indicates the control number for the associated Medicare part.
|
|
259
271
|
* @type {string}
|
|
@@ -265,25 +277,25 @@ export interface MemberMedicareResp {
|
|
|
265
277
|
* @type {string}
|
|
266
278
|
* @memberof MemberMedicareResp
|
|
267
279
|
*/
|
|
268
|
-
'medicare_Part_D_Eff_Date'
|
|
280
|
+
'medicare_Part_D_Eff_Date': string;
|
|
269
281
|
/**
|
|
270
282
|
* Date when this Medicare part expires/expired.
|
|
271
283
|
* @type {string}
|
|
272
284
|
* @memberof MemberMedicareResp
|
|
273
285
|
*/
|
|
274
|
-
'medicare_Part_D_Term_Date'
|
|
286
|
+
'medicare_Part_D_Term_Date': string;
|
|
275
287
|
/**
|
|
276
288
|
* Date when this Medicare part was last updated.
|
|
277
289
|
* @type {string}
|
|
278
290
|
* @memberof MemberMedicareResp
|
|
279
291
|
*/
|
|
280
|
-
'medicare_Part_D_Update_Date'
|
|
292
|
+
'medicare_Part_D_Update_Date': string;
|
|
281
293
|
/**
|
|
282
294
|
* References Members.Member_Seq value on the parent record.
|
|
283
295
|
* @type {string}
|
|
284
296
|
* @memberof MemberMedicareResp
|
|
285
297
|
*/
|
|
286
|
-
'member_Seq'
|
|
298
|
+
'member_Seq'?: string | null;
|
|
287
299
|
/**
|
|
288
300
|
* Indicates the responsiible reporting entity\'s assigned document control number.
|
|
289
301
|
* @type {string}
|
|
@@ -301,18 +313,30 @@ export interface MemberMedicareResp {
|
|
|
301
313
|
* @type {string}
|
|
302
314
|
* @memberof MemberMedicareResp
|
|
303
315
|
*/
|
|
304
|
-
'subscriber_ID'
|
|
316
|
+
'subscriber_ID'?: string | null;
|
|
305
317
|
/**
|
|
306
318
|
* Date of the Member\'s most recent transplant.
|
|
307
319
|
* @type {string}
|
|
308
320
|
* @memberof MemberMedicareResp
|
|
309
321
|
*/
|
|
310
|
-
'transplant_Date_Most_Recent'
|
|
322
|
+
'transplant_Date_Most_Recent': string;
|
|
311
323
|
/**
|
|
312
324
|
* Date of the Member\'s most recent transplant failure.
|
|
313
325
|
* @type {string}
|
|
314
326
|
* @memberof MemberMedicareResp
|
|
315
327
|
*/
|
|
316
|
-
'transplant_Failure_Date_Most_Recent'
|
|
328
|
+
'transplant_Failure_Date_Most_Recent': string;
|
|
329
|
+
/**
|
|
330
|
+
* Date when the record was last updated in the system.
|
|
331
|
+
* @type {string}
|
|
332
|
+
* @memberof MemberMedicareResp
|
|
333
|
+
*/
|
|
334
|
+
'update_Date'?: string;
|
|
335
|
+
/**
|
|
336
|
+
* User that last updated the record in the system.
|
|
337
|
+
* @type {string}
|
|
338
|
+
* @memberof MemberMedicareResp
|
|
339
|
+
*/
|
|
340
|
+
'update_User'?: string | null;
|
|
317
341
|
}
|
|
318
342
|
|
package/models/members.ts
CHANGED
|
@@ -27,7 +27,7 @@ export interface Members {
|
|
|
27
27
|
*/
|
|
28
28
|
'subscriber_ID': string;
|
|
29
29
|
/**
|
|
30
|
-
* Sequential identifier assigned to each Member of this family. In combination with Subscriber_ID, creates a unique identifier.
|
|
30
|
+
* Sequential identifier assigned to each Member of this family. In combination with Subscriber_ID, creates a unique identifier. During creation, if you pass a value for this field, the system will attemot to use the value. If you do not include a value (eg, leave null), the system will generate a value for you. The generated value will be the total_count_of_members for the subscriber_id + 1.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof Members
|
|
33
33
|
*/
|
|
@@ -21,61 +21,67 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface NetworkProcedureCluster {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Unique identifier assigned to the network.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof NetworkProcedureCluster
|
|
27
27
|
*/
|
|
28
28
|
'network_ID': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Identifies the procedure cluster that is to be tied to the pricing rule.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof NetworkProcedureCluster
|
|
33
33
|
*/
|
|
34
34
|
'procedure_Cluster': string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Date when the pricing rule becomes/became 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 NetworkProcedureCluster
|
|
39
39
|
*/
|
|
40
40
|
'effective_Date': string;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof NetworkProcedureCluster
|
|
45
|
+
*/
|
|
46
|
+
'claim_Type'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* This option tells the pricing rule to reference pricing received from Context4. If this is unchecked, it allows the User to have the functionality without the Context4 hook. 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
49
|
* @type {boolean}
|
|
44
50
|
* @memberof NetworkProcedureCluster
|
|
45
51
|
*/
|
|
46
52
|
'context4Fg': boolean;
|
|
47
53
|
/**
|
|
48
|
-
*
|
|
54
|
+
* Date record was first added to the system
|
|
49
55
|
* @type {string}
|
|
50
56
|
* @memberof NetworkProcedureCluster
|
|
51
57
|
*/
|
|
52
58
|
'entry_Date'?: string;
|
|
53
59
|
/**
|
|
54
|
-
*
|
|
60
|
+
* User that first added the record to the system
|
|
55
61
|
* @type {string}
|
|
56
62
|
* @memberof NetworkProcedureCluster
|
|
57
63
|
*/
|
|
58
64
|
'entry_User'?: string | null;
|
|
59
65
|
/**
|
|
60
|
-
*
|
|
66
|
+
* Specifies the fee percentage that is to be tied to the selected procedure cluster. Negative values will apply a discount.
|
|
61
67
|
* @type {number}
|
|
62
68
|
* @memberof NetworkProcedureCluster
|
|
63
69
|
*/
|
|
64
70
|
'fee_Percent'?: number | null;
|
|
65
71
|
/**
|
|
66
|
-
*
|
|
72
|
+
* Date when the pricing rule expires/expired.
|
|
67
73
|
* @type {string}
|
|
68
74
|
* @memberof NetworkProcedureCluster
|
|
69
75
|
*/
|
|
70
76
|
'term_Date'?: string | null;
|
|
71
77
|
/**
|
|
72
|
-
*
|
|
78
|
+
* Date the record was last updated in the system
|
|
73
79
|
* @type {string}
|
|
74
80
|
* @memberof NetworkProcedureCluster
|
|
75
81
|
*/
|
|
76
82
|
'update_Date'?: string;
|
|
77
83
|
/**
|
|
78
|
-
*
|
|
84
|
+
* User that last updated the record in the system
|
|
79
85
|
* @type {string}
|
|
80
86
|
* @memberof NetworkProcedureCluster
|
|
81
87
|
*/
|
|
@@ -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
|
*/
|