@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230208.2 → 1.20230403.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +19 -0
- package/api/adv-group-api.ts +17 -17
- package/api/chat-gptapi.ts +154 -0
- package/api/events-api.ts +87 -0
- package/api/groups-api.ts +17 -17
- package/api/prem-rate-types-api.ts +668 -0
- package/api/premium-invoice-payments-api.ts +124 -0
- package/api/premium-invoices-api.ts +336 -5
- package/api/premium-rate-distribution-types-api.ts +155 -0
- package/api/state-interest-api.ts +668 -0
- package/api/subscriber-plan-policies-api.ts +43 -91
- package/api/user-api.ts +394 -0
- package/api.ts +4 -0
- package/models/chat-message.ts +30 -0
- package/models/claim-batch-detail.ts +152 -140
- package/models/claim-batch.ts +1697 -479
- package/models/claim-detail.ts +137 -125
- package/models/claim-pre-batch-detail.ts +101 -95
- package/models/claim-pre-batch.ts +1703 -425
- package/models/claim.ts +1562 -338
- package/models/company-data.ts +433 -403
- package/models/cost-contain-zelis-ex-code.ts +12 -6
- package/models/enrollment-disenroll-group.ts +84 -0
- package/models/enrollment-disenroll.ts +28 -34
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- package/models/index.ts +15 -0
- package/models/mem-enrollment-plan.ts +9 -9
- package/models/mem-enrollment-rider.ts +10 -10
- package/models/member-beneficiary.ts +3 -3
- package/models/member-language.ts +38 -2
- package/models/member-medicare-resp.ts +50 -26
- package/models/members.ts +1 -1
- package/models/network-procedure-cluster.ts +15 -9
- package/models/plan-benefit-cluster.ts +12 -12
- package/models/plan-benefit-rate.ts +5 -5
- package/models/plan-benefits.ts +58 -52
- package/models/plan-type.ts +21 -21
- package/models/plans.ts +41 -41
- package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
- package/models/prem-invoice-group-summary.ts +114 -0
- package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-payment-ext.ts +102 -0
- package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-slim.ts +42 -0
- package/models/prem-rate-type-list-vbaresponse.ts +45 -0
- package/models/prem-rate-type-vbaresponse.ts +45 -0
- package/models/prem-rate-type.ts +72 -0
- package/models/prem-rate.ts +91 -85
- package/models/state-interest-list-vbaresponse.ts +45 -0
- package/models/state-interest-vbaresponse.ts +45 -0
- package/models/state-interest.ts +84 -0
- package/models/sub-enrollment-plan.ts +10 -10
- package/models/sub-enrollment-rider.ts +14 -14
- package/models/subscribers.ts +2 -2
- package/models/user-reset-password-request.ts +42 -0
- package/models/users.ts +8 -8
- package/package.json +1 -1
package/models/claim-batch.ts
CHANGED
|
@@ -21,427 +21,427 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ClaimBatch {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* This value, in combination with Batch_Claim, creates a unique identifier for each claim that is maintained in both batch and processed. 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 ClaimBatch
|
|
27
27
|
*/
|
|
28
28
|
'batch_Number': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* This value, in combination with Batch_Number, creates a unique identifier for each claim that is maintained in both batch and processed. 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.
|
|
31
31
|
* @type {number}
|
|
32
32
|
* @memberof ClaimBatch
|
|
33
33
|
*/
|
|
34
34
|
'batch_Claim': number;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* A flag indicating a claim is an Advanced EOB and not a claim for payment. Part of the No Surprise Act. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
37
37
|
* @type {boolean}
|
|
38
38
|
* @memberof ClaimBatch
|
|
39
39
|
*/
|
|
40
40
|
'aeoB_Claim': boolean;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* The date of accident.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof ClaimBatch
|
|
45
45
|
*/
|
|
46
46
|
'accident_Date'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* For claim funding, indicates the payor/account this claim would be paid from.
|
|
49
49
|
* @type {number}
|
|
50
50
|
* @memberof ClaimBatch
|
|
51
51
|
*/
|
|
52
52
|
'account_Key'?: number | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Indicates that this claim was part of an Adjustment process.
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof ClaimBatch
|
|
57
57
|
*/
|
|
58
58
|
'adjusted_From'?: number | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Indicates this claim is part of an adjustment process. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
61
61
|
* @type {boolean}
|
|
62
62
|
* @memberof ClaimBatch
|
|
63
63
|
*/
|
|
64
64
|
'adjustment_Claim': boolean;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* For institutional Claims, holds the Admission Date.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof ClaimBatch
|
|
69
69
|
*/
|
|
70
70
|
'admission_Date'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* The admission diagnosis code if applicable for this claim.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof ClaimBatch
|
|
75
75
|
*/
|
|
76
76
|
'admission_Diagnostic_Code'?: string | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* For institutional Claims, holds the Admission Hour.
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof ClaimBatch
|
|
81
81
|
*/
|
|
82
82
|
'admission_Hour'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* For institutional Claims, holds the Admission Source.
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof ClaimBatch
|
|
87
87
|
*/
|
|
88
88
|
'admission_Source'?: string | null;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Used to identify the date the member was admitted to the Hospital if hospitalized as part of this disability.
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof ClaimBatch
|
|
93
93
|
*/
|
|
94
94
|
'admit_Date'?: string | null;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Indicates if this claim, for disability, can be processed and paid in advance of that service dates. 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 ClaimBatch
|
|
99
99
|
*/
|
|
100
100
|
'advance_Pay': boolean;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Notes this claim is advice to pay and will not go through funding. 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.
|
|
103
103
|
* @type {boolean}
|
|
104
104
|
* @memberof ClaimBatch
|
|
105
105
|
*/
|
|
106
106
|
'advice_To_Pay': boolean;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Information field used in custom processing and reporting.
|
|
109
109
|
* @type {string}
|
|
110
110
|
* @memberof ClaimBatch
|
|
111
111
|
*/
|
|
112
112
|
'all_Docs_Rec_Date'?: string | null;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
115
115
|
* @type {string}
|
|
116
116
|
* @memberof ClaimBatch
|
|
117
117
|
*/
|
|
118
118
|
'ambulance_DropOff_Address'?: string | null;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
121
121
|
* @type {string}
|
|
122
122
|
* @memberof ClaimBatch
|
|
123
123
|
*/
|
|
124
124
|
'ambulance_DropOff_Address2'?: string | null;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
127
127
|
* @type {string}
|
|
128
128
|
* @memberof ClaimBatch
|
|
129
129
|
*/
|
|
130
130
|
'ambulance_DropOff_City'?: string | null;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
133
133
|
* @type {string}
|
|
134
134
|
* @memberof ClaimBatch
|
|
135
135
|
*/
|
|
136
136
|
'ambulance_DropOff_Location'?: string | null;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
139
139
|
* @type {string}
|
|
140
140
|
* @memberof ClaimBatch
|
|
141
141
|
*/
|
|
142
142
|
'ambulance_DropOff_Org_Name'?: string | null;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
145
145
|
* @type {string}
|
|
146
146
|
* @memberof ClaimBatch
|
|
147
147
|
*/
|
|
148
148
|
'ambulance_DropOff_State'?: string | null;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
151
151
|
* @type {string}
|
|
152
152
|
* @memberof ClaimBatch
|
|
153
153
|
*/
|
|
154
154
|
'ambulance_DropOff_Zip'?: string | null;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
157
157
|
* @type {string}
|
|
158
158
|
* @memberof ClaimBatch
|
|
159
159
|
*/
|
|
160
160
|
'ambulance_PickUp_Address'?: string | null;
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
163
163
|
* @type {string}
|
|
164
164
|
* @memberof ClaimBatch
|
|
165
165
|
*/
|
|
166
166
|
'ambulance_PickUp_Address2'?: string | null;
|
|
167
167
|
/**
|
|
168
|
-
*
|
|
168
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
169
169
|
* @type {string}
|
|
170
170
|
* @memberof ClaimBatch
|
|
171
171
|
*/
|
|
172
172
|
'ambulance_PickUp_City'?: string | null;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
174
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
175
175
|
* @type {string}
|
|
176
176
|
* @memberof ClaimBatch
|
|
177
177
|
*/
|
|
178
178
|
'ambulance_PickUp_Location'?: string | null;
|
|
179
179
|
/**
|
|
180
|
-
*
|
|
180
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
181
181
|
* @type {string}
|
|
182
182
|
* @memberof ClaimBatch
|
|
183
183
|
*/
|
|
184
184
|
'ambulance_PickUp_State'?: string | null;
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* If the claim utlized ambulance services (submitted via 837), we track that here.
|
|
187
187
|
* @type {string}
|
|
188
188
|
* @memberof ClaimBatch
|
|
189
189
|
*/
|
|
190
190
|
'ambulance_PickUp_Zip'?: string | null;
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* The date the orthodontic appliance was placed.
|
|
193
193
|
* @type {string}
|
|
194
194
|
* @memberof ClaimBatch
|
|
195
195
|
*/
|
|
196
196
|
'appliance_Placed_Date'?: string | null;
|
|
197
197
|
/**
|
|
198
|
-
*
|
|
198
|
+
* Information field used in custom processing and reporting.
|
|
199
199
|
* @type {string}
|
|
200
200
|
* @memberof ClaimBatch
|
|
201
201
|
*/
|
|
202
202
|
'assumed_Care_Date'?: string | null;
|
|
203
203
|
/**
|
|
204
|
-
*
|
|
204
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
205
205
|
* @type {string}
|
|
206
206
|
* @memberof ClaimBatch
|
|
207
207
|
*/
|
|
208
208
|
'attend_Provider_Address'?: string | null;
|
|
209
209
|
/**
|
|
210
|
-
*
|
|
210
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
211
211
|
* @type {string}
|
|
212
212
|
* @memberof ClaimBatch
|
|
213
213
|
*/
|
|
214
214
|
'attend_Provider_Address2'?: string | null;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
217
217
|
* @type {string}
|
|
218
218
|
* @memberof ClaimBatch
|
|
219
219
|
*/
|
|
220
220
|
'attend_Provider_City'?: string | null;
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
223
223
|
* @type {string}
|
|
224
224
|
* @memberof ClaimBatch
|
|
225
225
|
*/
|
|
226
226
|
'attend_Provider_Federal_ID'?: string | null;
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
229
229
|
* @type {string}
|
|
230
230
|
* @memberof ClaimBatch
|
|
231
231
|
*/
|
|
232
232
|
'attend_Provider_First_Name'?: string | null;
|
|
233
233
|
/**
|
|
234
|
-
*
|
|
234
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
235
235
|
* @type {string}
|
|
236
236
|
* @memberof ClaimBatch
|
|
237
237
|
*/
|
|
238
238
|
'attend_Provider_Last_Name'?: string | null;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
241
241
|
* @type {string}
|
|
242
242
|
* @memberof ClaimBatch
|
|
243
243
|
*/
|
|
244
244
|
'attend_Provider_MAID'?: string | null;
|
|
245
245
|
/**
|
|
246
|
-
*
|
|
246
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
247
247
|
* @type {string}
|
|
248
248
|
* @memberof ClaimBatch
|
|
249
249
|
*/
|
|
250
250
|
'attend_Provider_NPI'?: string | null;
|
|
251
251
|
/**
|
|
252
|
-
*
|
|
252
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
253
253
|
* @type {string}
|
|
254
254
|
* @memberof ClaimBatch
|
|
255
255
|
*/
|
|
256
256
|
'attend_Provider_Org_Name'?: string | null;
|
|
257
257
|
/**
|
|
258
|
-
*
|
|
258
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
259
259
|
* @type {string}
|
|
260
260
|
* @memberof ClaimBatch
|
|
261
261
|
*/
|
|
262
262
|
'attend_Provider_Phone'?: string | null;
|
|
263
263
|
/**
|
|
264
|
-
*
|
|
264
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
265
265
|
* @type {string}
|
|
266
266
|
* @memberof ClaimBatch
|
|
267
267
|
*/
|
|
268
268
|
'attend_Provider_State'?: string | null;
|
|
269
269
|
/**
|
|
270
|
-
*
|
|
270
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
271
271
|
* @type {string}
|
|
272
272
|
* @memberof ClaimBatch
|
|
273
273
|
*/
|
|
274
274
|
'attend_Provider_Taxonomy'?: string | null;
|
|
275
275
|
/**
|
|
276
|
-
*
|
|
276
|
+
* The attending provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
277
277
|
* @type {string}
|
|
278
278
|
* @memberof ClaimBatch
|
|
279
279
|
*/
|
|
280
280
|
'attend_Provider_Zip'?: string | null;
|
|
281
281
|
/**
|
|
282
|
-
*
|
|
282
|
+
* This identifies the date the member first visited the Physician. This field, in combination with Disabled by Physician Date and Last Day Worked, create the Disability Date for the Member.
|
|
283
283
|
* @type {string}
|
|
284
284
|
* @memberof ClaimBatch
|
|
285
285
|
*/
|
|
286
286
|
'attended_Physician_Date'?: string | null;
|
|
287
287
|
/**
|
|
288
|
-
*
|
|
288
|
+
* For flex claims, notes that this claim was auto-created by adjudication based on configuration at the 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.
|
|
289
289
|
* @type {boolean}
|
|
290
290
|
* @memberof ClaimBatch
|
|
291
291
|
*/
|
|
292
292
|
'auto_Flex': boolean;
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Flagged when a claim has gone through the baseload provider matching service. 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.
|
|
295
295
|
* @type {boolean}
|
|
296
296
|
* @memberof ClaimBatch
|
|
297
297
|
*/
|
|
298
298
|
'baseloadLookup': boolean;
|
|
299
299
|
/**
|
|
300
|
-
*
|
|
300
|
+
* Notes the beneficiary for Life & Disability claims. References the MemberBeneficiary.Beneficiary_ID.
|
|
301
301
|
* @type {string}
|
|
302
302
|
* @memberof ClaimBatch
|
|
303
303
|
*/
|
|
304
304
|
'beneficiary_ID'?: string | null;
|
|
305
305
|
/**
|
|
306
|
-
*
|
|
306
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
307
307
|
* @type {string}
|
|
308
308
|
* @memberof ClaimBatch
|
|
309
309
|
*/
|
|
310
310
|
'bill_Provider_Address'?: string | null;
|
|
311
311
|
/**
|
|
312
|
-
*
|
|
312
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
313
313
|
* @type {string}
|
|
314
314
|
* @memberof ClaimBatch
|
|
315
315
|
*/
|
|
316
316
|
'bill_Provider_Address2'?: string | null;
|
|
317
317
|
/**
|
|
318
|
-
*
|
|
318
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
319
319
|
* @type {string}
|
|
320
320
|
* @memberof ClaimBatch
|
|
321
321
|
*/
|
|
322
322
|
'bill_Provider_City'?: string | null;
|
|
323
323
|
/**
|
|
324
|
-
*
|
|
324
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
325
325
|
* @type {string}
|
|
326
326
|
* @memberof ClaimBatch
|
|
327
327
|
*/
|
|
328
328
|
'bill_Provider_Federal_ID'?: string | null;
|
|
329
329
|
/**
|
|
330
|
-
*
|
|
330
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
331
331
|
* @type {string}
|
|
332
332
|
* @memberof ClaimBatch
|
|
333
333
|
*/
|
|
334
334
|
'bill_Provider_First_Name'?: string | null;
|
|
335
335
|
/**
|
|
336
|
-
*
|
|
336
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
337
337
|
* @type {string}
|
|
338
338
|
* @memberof ClaimBatch
|
|
339
339
|
*/
|
|
340
340
|
'bill_Provider_Last_Name'?: string | null;
|
|
341
341
|
/**
|
|
342
|
-
*
|
|
342
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
343
343
|
* @type {string}
|
|
344
344
|
* @memberof ClaimBatch
|
|
345
345
|
*/
|
|
346
346
|
'bill_Provider_MAID'?: string | null;
|
|
347
347
|
/**
|
|
348
|
-
*
|
|
348
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
349
349
|
* @type {string}
|
|
350
350
|
* @memberof ClaimBatch
|
|
351
351
|
*/
|
|
352
352
|
'bill_Provider_NPI'?: string | null;
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
355
355
|
* @type {string}
|
|
356
356
|
* @memberof ClaimBatch
|
|
357
357
|
*/
|
|
358
358
|
'bill_Provider_Org_Name'?: string | null;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
360
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
361
361
|
* @type {string}
|
|
362
362
|
* @memberof ClaimBatch
|
|
363
363
|
*/
|
|
364
364
|
'bill_Provider_Phone'?: string | null;
|
|
365
365
|
/**
|
|
366
|
-
*
|
|
366
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
367
367
|
* @type {string}
|
|
368
368
|
* @memberof ClaimBatch
|
|
369
369
|
*/
|
|
370
370
|
'bill_Provider_State'?: string | null;
|
|
371
371
|
/**
|
|
372
|
-
*
|
|
372
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
373
373
|
* @type {string}
|
|
374
374
|
* @memberof ClaimBatch
|
|
375
375
|
*/
|
|
376
376
|
'bill_Provider_Taxonomy'?: string | null;
|
|
377
377
|
/**
|
|
378
|
-
*
|
|
378
|
+
* The billing provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
379
379
|
* @type {string}
|
|
380
380
|
* @memberof ClaimBatch
|
|
381
381
|
*/
|
|
382
382
|
'bill_Provider_Zip'?: string | null;
|
|
383
383
|
/**
|
|
384
|
-
*
|
|
384
|
+
* Holds the claim level billed amount that is used for balancing the claim detail billed_price values. If different, throws an error.
|
|
385
385
|
* @type {number}
|
|
386
386
|
* @memberof ClaimBatch
|
|
387
387
|
*/
|
|
388
388
|
'billed_Amount'?: number | null;
|
|
389
389
|
/**
|
|
390
|
-
*
|
|
390
|
+
* No longer in use.
|
|
391
391
|
* @type {string}
|
|
392
392
|
* @memberof ClaimBatch
|
|
393
393
|
*/
|
|
394
394
|
'cliA_Number'?: string | null;
|
|
395
395
|
/**
|
|
396
|
-
*
|
|
396
|
+
* Notes if interest was calculated for this claim as part of 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.
|
|
397
397
|
* @type {boolean}
|
|
398
398
|
* @memberof ClaimBatch
|
|
399
399
|
*/
|
|
400
400
|
'calculate_Interest': boolean;
|
|
401
401
|
/**
|
|
402
|
-
*
|
|
402
|
+
* Indicates if this claim is capitated. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
403
403
|
* @type {boolean}
|
|
404
404
|
* @memberof ClaimBatch
|
|
405
405
|
*/
|
|
406
406
|
'capitation_Claim': boolean;
|
|
407
407
|
/**
|
|
408
|
-
*
|
|
408
|
+
* For 837 transactions, indicates COB has been submitted.
|
|
409
409
|
* @type {string}
|
|
410
410
|
* @memberof ClaimBatch
|
|
411
411
|
*/
|
|
412
412
|
'claim_837_COB'?: string | null;
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* An identifier assigned by external vendors and used for integrations. Primarily comes from the REF*D9 value in the 837.
|
|
415
415
|
* @type {string}
|
|
416
416
|
* @memberof ClaimBatch
|
|
417
417
|
*/
|
|
418
418
|
'claim_ID'?: string | null;
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* For 837 transactions, indicates the submitted claim priority.
|
|
421
421
|
* @type {string}
|
|
422
422
|
* @memberof ClaimBatch
|
|
423
423
|
*/
|
|
424
424
|
'claim_Priority'?: string | null;
|
|
425
425
|
/**
|
|
426
|
-
*
|
|
426
|
+
* The status of the claim. Valid values reside in the ClaimStatus table.
|
|
427
427
|
* @type {string}
|
|
428
428
|
* @memberof ClaimBatch
|
|
429
429
|
*/
|
|
430
430
|
'claim_Status'?: string | null;
|
|
431
431
|
/**
|
|
432
|
-
*
|
|
432
|
+
* Notes the claim type for this claim. References ClaimType.Claim_Type.
|
|
433
433
|
* @type {string}
|
|
434
434
|
* @memberof ClaimBatch
|
|
435
435
|
*/
|
|
436
436
|
'claim_Type'?: string | null;
|
|
437
437
|
/**
|
|
438
|
-
*
|
|
438
|
+
* This is an information only field that allows the tracking of the Closure Effective Date.
|
|
439
439
|
* @type {string}
|
|
440
440
|
* @memberof ClaimBatch
|
|
441
441
|
*/
|
|
442
442
|
'closure_Effective_Date'?: string | null;
|
|
443
443
|
/**
|
|
444
|
-
*
|
|
444
|
+
* The Condition Code value for this claim.
|
|
445
445
|
* @type {string}
|
|
446
446
|
* @memberof ClaimBatch
|
|
447
447
|
*/
|
|
@@ -451,933 +451,1035 @@ export interface ClaimBatch {
|
|
|
451
451
|
* @type {string}
|
|
452
452
|
* @memberof ClaimBatch
|
|
453
453
|
*/
|
|
454
|
+
'condition_Code10'?: string | null;
|
|
455
|
+
/**
|
|
456
|
+
*
|
|
457
|
+
* @type {string}
|
|
458
|
+
* @memberof ClaimBatch
|
|
459
|
+
*/
|
|
460
|
+
'condition_Code11'?: string | null;
|
|
461
|
+
/**
|
|
462
|
+
*
|
|
463
|
+
* @type {string}
|
|
464
|
+
* @memberof ClaimBatch
|
|
465
|
+
*/
|
|
466
|
+
'condition_Code12'?: string | null;
|
|
467
|
+
/**
|
|
468
|
+
*
|
|
469
|
+
* @type {string}
|
|
470
|
+
* @memberof ClaimBatch
|
|
471
|
+
*/
|
|
472
|
+
'condition_Code13'?: string | null;
|
|
473
|
+
/**
|
|
474
|
+
*
|
|
475
|
+
* @type {string}
|
|
476
|
+
* @memberof ClaimBatch
|
|
477
|
+
*/
|
|
478
|
+
'condition_Code14'?: string | null;
|
|
479
|
+
/**
|
|
480
|
+
*
|
|
481
|
+
* @type {string}
|
|
482
|
+
* @memberof ClaimBatch
|
|
483
|
+
*/
|
|
484
|
+
'condition_Code15'?: string | null;
|
|
485
|
+
/**
|
|
486
|
+
*
|
|
487
|
+
* @type {string}
|
|
488
|
+
* @memberof ClaimBatch
|
|
489
|
+
*/
|
|
490
|
+
'condition_Code16'?: string | null;
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
* @type {string}
|
|
494
|
+
* @memberof ClaimBatch
|
|
495
|
+
*/
|
|
496
|
+
'condition_Code17'?: string | null;
|
|
497
|
+
/**
|
|
498
|
+
*
|
|
499
|
+
* @type {string}
|
|
500
|
+
* @memberof ClaimBatch
|
|
501
|
+
*/
|
|
502
|
+
'condition_Code18'?: string | null;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @type {string}
|
|
506
|
+
* @memberof ClaimBatch
|
|
507
|
+
*/
|
|
508
|
+
'condition_Code19'?: string | null;
|
|
509
|
+
/**
|
|
510
|
+
* The Condition Code value for this claim.
|
|
511
|
+
* @type {string}
|
|
512
|
+
* @memberof ClaimBatch
|
|
513
|
+
*/
|
|
454
514
|
'condition_Code2'?: string | null;
|
|
455
515
|
/**
|
|
456
516
|
*
|
|
457
517
|
* @type {string}
|
|
458
518
|
* @memberof ClaimBatch
|
|
459
519
|
*/
|
|
460
|
-
'
|
|
520
|
+
'condition_Code20'?: string | null;
|
|
461
521
|
/**
|
|
462
522
|
*
|
|
463
523
|
* @type {string}
|
|
464
524
|
* @memberof ClaimBatch
|
|
465
525
|
*/
|
|
466
|
-
'
|
|
526
|
+
'condition_Code21'?: string | null;
|
|
467
527
|
/**
|
|
468
528
|
*
|
|
469
529
|
* @type {string}
|
|
470
530
|
* @memberof ClaimBatch
|
|
471
531
|
*/
|
|
472
|
-
'
|
|
532
|
+
'condition_Code22'?: string | null;
|
|
473
533
|
/**
|
|
474
534
|
*
|
|
475
535
|
* @type {string}
|
|
476
536
|
* @memberof ClaimBatch
|
|
477
537
|
*/
|
|
478
|
-
'
|
|
538
|
+
'condition_Code23'?: string | null;
|
|
479
539
|
/**
|
|
480
540
|
*
|
|
481
541
|
* @type {string}
|
|
482
542
|
* @memberof ClaimBatch
|
|
483
543
|
*/
|
|
544
|
+
'condition_Code24'?: string | null;
|
|
545
|
+
/**
|
|
546
|
+
* The Condition Code value for this claim.
|
|
547
|
+
* @type {string}
|
|
548
|
+
* @memberof ClaimBatch
|
|
549
|
+
*/
|
|
550
|
+
'condition_Code3'?: string | null;
|
|
551
|
+
/**
|
|
552
|
+
* The Condition Code value for this claim.
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof ClaimBatch
|
|
555
|
+
*/
|
|
556
|
+
'condition_Code4'?: string | null;
|
|
557
|
+
/**
|
|
558
|
+
* The Condition Code value for this claim.
|
|
559
|
+
* @type {string}
|
|
560
|
+
* @memberof ClaimBatch
|
|
561
|
+
*/
|
|
562
|
+
'condition_Code5'?: string | null;
|
|
563
|
+
/**
|
|
564
|
+
* The Condition Code value for this claim.
|
|
565
|
+
* @type {string}
|
|
566
|
+
* @memberof ClaimBatch
|
|
567
|
+
*/
|
|
568
|
+
'condition_Code6'?: string | null;
|
|
569
|
+
/**
|
|
570
|
+
* The Condition Code value for this claim.
|
|
571
|
+
* @type {string}
|
|
572
|
+
* @memberof ClaimBatch
|
|
573
|
+
*/
|
|
484
574
|
'condition_Code7'?: string | null;
|
|
485
575
|
/**
|
|
486
576
|
*
|
|
577
|
+
* @type {string}
|
|
578
|
+
* @memberof ClaimBatch
|
|
579
|
+
*/
|
|
580
|
+
'condition_Code8'?: string | null;
|
|
581
|
+
/**
|
|
582
|
+
*
|
|
583
|
+
* @type {string}
|
|
584
|
+
* @memberof ClaimBatch
|
|
585
|
+
*/
|
|
586
|
+
'condition_Code9'?: string | null;
|
|
587
|
+
/**
|
|
588
|
+
* Allows the user to flag a claim to ignore Context4Health service results and stick to core adjudication edits. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
487
589
|
* @type {boolean}
|
|
488
590
|
* @memberof ClaimBatch
|
|
489
591
|
*/
|
|
490
592
|
'context4_Override': boolean;
|
|
491
593
|
/**
|
|
492
|
-
*
|
|
594
|
+
* The patients (or Subscribers) enrollment information, references Subenrollment.Group_Coverage_Start.
|
|
493
595
|
* @type {string}
|
|
494
596
|
* @memberof ClaimBatch
|
|
495
597
|
*/
|
|
496
598
|
'coverage_Start'?: string | null;
|
|
497
599
|
/**
|
|
498
|
-
*
|
|
600
|
+
* The current illness date for this claim.
|
|
499
601
|
* @type {string}
|
|
500
602
|
* @memberof ClaimBatch
|
|
501
603
|
*/
|
|
502
604
|
'current_Illness_Date'?: string | null;
|
|
503
605
|
/**
|
|
504
|
-
*
|
|
606
|
+
* The DRG Code for this claim, if applicable. References the DRGCodes.DRG_Code.
|
|
505
607
|
* @type {string}
|
|
506
608
|
* @memberof ClaimBatch
|
|
507
609
|
*/
|
|
508
610
|
'drG_Code'?: string | null;
|
|
509
611
|
/**
|
|
510
|
-
*
|
|
612
|
+
* The quantity associated with this DRG value.
|
|
511
613
|
* @type {number}
|
|
512
614
|
* @memberof ClaimBatch
|
|
513
615
|
*/
|
|
514
616
|
'drG_Quantity'?: number | null;
|
|
515
617
|
/**
|
|
516
|
-
*
|
|
618
|
+
* Information field used in custom processing and reporting.
|
|
517
619
|
* @type {string}
|
|
518
620
|
* @memberof ClaimBatch
|
|
519
621
|
*/
|
|
520
622
|
'death_Cert_Rec_Date'?: string | null;
|
|
521
623
|
/**
|
|
522
|
-
*
|
|
624
|
+
* This identifies the date of delivery for disability due to pregnancy.
|
|
523
625
|
* @type {string}
|
|
524
626
|
* @memberof ClaimBatch
|
|
525
627
|
*/
|
|
526
628
|
'delivery_Date'?: string | null;
|
|
527
629
|
/**
|
|
528
|
-
*
|
|
630
|
+
* This will identify the type of delivery that is performed as a result of pregnancy.
|
|
529
631
|
* @type {string}
|
|
530
632
|
* @memberof ClaimBatch
|
|
531
633
|
*/
|
|
532
634
|
'delivery_Type'?: string | null;
|
|
533
635
|
/**
|
|
534
|
-
*
|
|
636
|
+
* This is an information only field that allows the tracking of Dependent SSI End Date.
|
|
535
637
|
* @type {string}
|
|
536
638
|
* @memberof ClaimBatch
|
|
537
639
|
*/
|
|
538
640
|
'dep_SSDI_End_Date'?: string | null;
|
|
539
641
|
/**
|
|
540
|
-
*
|
|
642
|
+
* An assigned diagnostic code for this claim. This field, in the absence of a corresponding diagnosis pointer from a claim service line, indicates the primary diagnosis.
|
|
541
643
|
* @type {string}
|
|
542
644
|
* @memberof ClaimBatch
|
|
543
645
|
*/
|
|
544
646
|
'diagnostic_Code1'?: string | null;
|
|
545
647
|
/**
|
|
546
|
-
*
|
|
648
|
+
* An assigned diagnostic code for this claim.
|
|
547
649
|
* @type {string}
|
|
548
650
|
* @memberof ClaimBatch
|
|
549
651
|
*/
|
|
550
652
|
'diagnostic_Code10'?: string | null;
|
|
551
653
|
/**
|
|
552
|
-
*
|
|
654
|
+
* An assigned diagnostic code for this claim.
|
|
553
655
|
* @type {string}
|
|
554
656
|
* @memberof ClaimBatch
|
|
555
657
|
*/
|
|
556
658
|
'diagnostic_Code11'?: string | null;
|
|
557
659
|
/**
|
|
558
|
-
*
|
|
660
|
+
* An assigned diagnostic code for this claim.
|
|
559
661
|
* @type {string}
|
|
560
662
|
* @memberof ClaimBatch
|
|
561
663
|
*/
|
|
562
664
|
'diagnostic_Code12'?: string | null;
|
|
563
665
|
/**
|
|
564
|
-
*
|
|
666
|
+
* An assigned diagnostic code for this claim.
|
|
565
667
|
* @type {string}
|
|
566
668
|
* @memberof ClaimBatch
|
|
567
669
|
*/
|
|
568
670
|
'diagnostic_Code13'?: string | null;
|
|
569
671
|
/**
|
|
570
|
-
*
|
|
672
|
+
* An assigned diagnostic code for this claim.
|
|
571
673
|
* @type {string}
|
|
572
674
|
* @memberof ClaimBatch
|
|
573
675
|
*/
|
|
574
676
|
'diagnostic_Code14'?: string | null;
|
|
575
677
|
/**
|
|
576
|
-
*
|
|
678
|
+
* An assigned diagnostic code for this claim.
|
|
577
679
|
* @type {string}
|
|
578
680
|
* @memberof ClaimBatch
|
|
579
681
|
*/
|
|
580
682
|
'diagnostic_Code15'?: string | null;
|
|
581
683
|
/**
|
|
582
|
-
*
|
|
684
|
+
* An assigned diagnostic code for this claim.
|
|
583
685
|
* @type {string}
|
|
584
686
|
* @memberof ClaimBatch
|
|
585
687
|
*/
|
|
586
688
|
'diagnostic_Code16'?: string | null;
|
|
587
689
|
/**
|
|
588
|
-
*
|
|
690
|
+
* An assigned diagnostic code for this claim.
|
|
589
691
|
* @type {string}
|
|
590
692
|
* @memberof ClaimBatch
|
|
591
693
|
*/
|
|
592
694
|
'diagnostic_Code17'?: string | null;
|
|
593
695
|
/**
|
|
594
|
-
*
|
|
696
|
+
* An assigned diagnostic code for this claim.
|
|
595
697
|
* @type {string}
|
|
596
698
|
* @memberof ClaimBatch
|
|
597
699
|
*/
|
|
598
700
|
'diagnostic_Code18'?: string | null;
|
|
599
701
|
/**
|
|
600
|
-
*
|
|
702
|
+
* An assigned diagnostic code for this claim.
|
|
601
703
|
* @type {string}
|
|
602
704
|
* @memberof ClaimBatch
|
|
603
705
|
*/
|
|
604
706
|
'diagnostic_Code19'?: string | null;
|
|
605
707
|
/**
|
|
606
|
-
*
|
|
708
|
+
* An assigned diagnostic code for this claim.
|
|
607
709
|
* @type {string}
|
|
608
710
|
* @memberof ClaimBatch
|
|
609
711
|
*/
|
|
610
712
|
'diagnostic_Code2'?: string | null;
|
|
611
713
|
/**
|
|
612
|
-
*
|
|
714
|
+
* An assigned diagnostic code for this claim.
|
|
613
715
|
* @type {string}
|
|
614
716
|
* @memberof ClaimBatch
|
|
615
717
|
*/
|
|
616
718
|
'diagnostic_Code20'?: string | null;
|
|
617
719
|
/**
|
|
618
|
-
*
|
|
720
|
+
* An assigned diagnostic code for this claim.
|
|
619
721
|
* @type {string}
|
|
620
722
|
* @memberof ClaimBatch
|
|
621
723
|
*/
|
|
622
724
|
'diagnostic_Code21'?: string | null;
|
|
623
725
|
/**
|
|
624
|
-
*
|
|
726
|
+
* An assigned diagnostic code for this claim.
|
|
625
727
|
* @type {string}
|
|
626
728
|
* @memberof ClaimBatch
|
|
627
729
|
*/
|
|
628
730
|
'diagnostic_Code22'?: string | null;
|
|
629
731
|
/**
|
|
630
|
-
*
|
|
732
|
+
* An assigned diagnostic code for this claim.
|
|
631
733
|
* @type {string}
|
|
632
734
|
* @memberof ClaimBatch
|
|
633
735
|
*/
|
|
634
736
|
'diagnostic_Code23'?: string | null;
|
|
635
737
|
/**
|
|
636
|
-
*
|
|
738
|
+
* An assigned diagnostic code for this claim.
|
|
637
739
|
* @type {string}
|
|
638
740
|
* @memberof ClaimBatch
|
|
639
741
|
*/
|
|
640
742
|
'diagnostic_Code24'?: string | null;
|
|
641
743
|
/**
|
|
642
|
-
*
|
|
744
|
+
* An assigned diagnostic code for this claim.
|
|
643
745
|
* @type {string}
|
|
644
746
|
* @memberof ClaimBatch
|
|
645
747
|
*/
|
|
646
748
|
'diagnostic_Code3'?: string | null;
|
|
647
749
|
/**
|
|
648
|
-
*
|
|
750
|
+
* An assigned diagnostic code for this claim.
|
|
649
751
|
* @type {string}
|
|
650
752
|
* @memberof ClaimBatch
|
|
651
753
|
*/
|
|
652
754
|
'diagnostic_Code4'?: string | null;
|
|
653
755
|
/**
|
|
654
|
-
*
|
|
756
|
+
* An assigned diagnostic code for this claim.
|
|
655
757
|
* @type {string}
|
|
656
758
|
* @memberof ClaimBatch
|
|
657
759
|
*/
|
|
658
760
|
'diagnostic_Code5'?: string | null;
|
|
659
761
|
/**
|
|
660
|
-
*
|
|
762
|
+
* An assigned diagnostic code for this claim.
|
|
661
763
|
* @type {string}
|
|
662
764
|
* @memberof ClaimBatch
|
|
663
765
|
*/
|
|
664
766
|
'diagnostic_Code6'?: string | null;
|
|
665
767
|
/**
|
|
666
|
-
*
|
|
768
|
+
* An assigned diagnostic code for this claim.
|
|
667
769
|
* @type {string}
|
|
668
770
|
* @memberof ClaimBatch
|
|
669
771
|
*/
|
|
670
772
|
'diagnostic_Code7'?: string | null;
|
|
671
773
|
/**
|
|
672
|
-
*
|
|
774
|
+
* An assigned diagnostic code for this claim.
|
|
673
775
|
* @type {string}
|
|
674
776
|
* @memberof ClaimBatch
|
|
675
777
|
*/
|
|
676
778
|
'diagnostic_Code8'?: string | null;
|
|
677
779
|
/**
|
|
678
|
-
*
|
|
780
|
+
* An assigned diagnostic code for this claim.
|
|
679
781
|
* @type {string}
|
|
680
782
|
* @memberof ClaimBatch
|
|
681
783
|
*/
|
|
682
784
|
'diagnostic_Code9'?: string | null;
|
|
683
785
|
/**
|
|
684
|
-
*
|
|
786
|
+
* Indicates if the Diagnostic Code values on this claim are ICD9 or ICD10. Two possible values: 9 - ICD9 or 0 - ICD10.
|
|
685
787
|
* @type {string}
|
|
686
788
|
* @memberof ClaimBatch
|
|
687
789
|
*/
|
|
688
790
|
'diagnostic_Code_Type': string;
|
|
689
791
|
/**
|
|
690
|
-
*
|
|
792
|
+
* The calculated date of disability (or manually enetered) based on the disabilty advisor in VBASoftware.
|
|
691
793
|
* @type {string}
|
|
692
794
|
* @memberof ClaimBatch
|
|
693
795
|
*/
|
|
694
796
|
'disability_Date'?: string | null;
|
|
695
797
|
/**
|
|
696
|
-
*
|
|
798
|
+
* Information field used in custom processing and reporting.
|
|
697
799
|
* @type {string}
|
|
698
800
|
* @memberof ClaimBatch
|
|
699
801
|
*/
|
|
700
802
|
'disability_End_Date'?: string | null;
|
|
701
803
|
/**
|
|
702
|
-
*
|
|
804
|
+
* Used to identify the type of disability (Injury or Illness).
|
|
703
805
|
* @type {string}
|
|
704
806
|
* @memberof ClaimBatch
|
|
705
807
|
*/
|
|
706
808
|
'disability_Type'?: string | null;
|
|
707
809
|
/**
|
|
708
|
-
*
|
|
810
|
+
* This identifies the date the member was disabled by the Physician. This field, in combination with First Attended Physician Date and Last Day Worked, create the Disability Date for the Member.
|
|
709
811
|
* @type {string}
|
|
710
812
|
* @memberof ClaimBatch
|
|
711
813
|
*/
|
|
712
814
|
'disabled_By_Physician'?: string | null;
|
|
713
815
|
/**
|
|
714
|
-
*
|
|
816
|
+
* Used to identify the date the member was discharged from the Hospital if hospitalized as part of this disability.
|
|
715
817
|
* @type {string}
|
|
716
818
|
* @memberof ClaimBatch
|
|
717
819
|
*/
|
|
718
820
|
'discharge_Date'?: string | null;
|
|
719
821
|
/**
|
|
720
|
-
*
|
|
822
|
+
* For institutional Claims, holds the Discharge Hour.
|
|
721
823
|
* @type {string}
|
|
722
824
|
* @memberof ClaimBatch
|
|
723
825
|
*/
|
|
724
826
|
'discharge_Hour'?: string | null;
|
|
725
827
|
/**
|
|
726
|
-
*
|
|
828
|
+
* The patients (or Subscribers) enrollment information, references Subenrollment.Division_ID.
|
|
727
829
|
* @type {string}
|
|
728
830
|
* @memberof ClaimBatch
|
|
729
831
|
*/
|
|
730
832
|
'division_ID'?: string | null;
|
|
731
833
|
/**
|
|
732
|
-
*
|
|
834
|
+
* The external cause of injury code for this claim, if applicable.
|
|
733
835
|
* @type {string}
|
|
734
836
|
* @memberof ClaimBatch
|
|
735
837
|
*/
|
|
736
838
|
'eCode_Diagnostic_Code'?: string | null;
|
|
737
839
|
/**
|
|
738
|
-
*
|
|
840
|
+
* The external cause of injury code for this claim, if applicable.
|
|
739
841
|
* @type {string}
|
|
740
842
|
* @memberof ClaimBatch
|
|
741
843
|
*/
|
|
742
844
|
'eCode_Diagnostic_Code10'?: string | null;
|
|
743
845
|
/**
|
|
744
|
-
*
|
|
846
|
+
* The external cause of injury code for this claim, if applicable.
|
|
745
847
|
* @type {string}
|
|
746
848
|
* @memberof ClaimBatch
|
|
747
849
|
*/
|
|
748
850
|
'eCode_Diagnostic_Code11'?: string | null;
|
|
749
851
|
/**
|
|
750
|
-
*
|
|
852
|
+
* The external cause of injury code for this claim, if applicable.
|
|
751
853
|
* @type {string}
|
|
752
854
|
* @memberof ClaimBatch
|
|
753
855
|
*/
|
|
754
856
|
'eCode_Diagnostic_Code12'?: string | null;
|
|
755
857
|
/**
|
|
756
|
-
*
|
|
858
|
+
* The external cause of injury code for this claim, if applicable.
|
|
757
859
|
* @type {string}
|
|
758
860
|
* @memberof ClaimBatch
|
|
759
861
|
*/
|
|
760
862
|
'eCode_Diagnostic_Code2'?: string | null;
|
|
761
863
|
/**
|
|
762
|
-
*
|
|
864
|
+
* The external cause of injury code for this claim, if applicable.
|
|
763
865
|
* @type {string}
|
|
764
866
|
* @memberof ClaimBatch
|
|
765
867
|
*/
|
|
766
868
|
'eCode_Diagnostic_Code3'?: string | null;
|
|
767
869
|
/**
|
|
768
|
-
*
|
|
870
|
+
* The external cause of injury code for this claim, if applicable.
|
|
769
871
|
* @type {string}
|
|
770
872
|
* @memberof ClaimBatch
|
|
771
873
|
*/
|
|
772
874
|
'eCode_Diagnostic_Code4'?: string | null;
|
|
773
875
|
/**
|
|
774
|
-
*
|
|
876
|
+
* The external cause of injury code for this claim, if applicable.
|
|
775
877
|
* @type {string}
|
|
776
878
|
* @memberof ClaimBatch
|
|
777
879
|
*/
|
|
778
880
|
'eCode_Diagnostic_Code5'?: string | null;
|
|
779
881
|
/**
|
|
780
|
-
*
|
|
882
|
+
* The external cause of injury code for this claim, if applicable.
|
|
781
883
|
* @type {string}
|
|
782
884
|
* @memberof ClaimBatch
|
|
783
885
|
*/
|
|
784
886
|
'eCode_Diagnostic_Code6'?: string | null;
|
|
785
887
|
/**
|
|
786
|
-
*
|
|
888
|
+
* The external cause of injury code for this claim, if applicable.
|
|
787
889
|
* @type {string}
|
|
788
890
|
* @memberof ClaimBatch
|
|
789
891
|
*/
|
|
790
892
|
'eCode_Diagnostic_Code7'?: string | null;
|
|
791
893
|
/**
|
|
792
|
-
*
|
|
894
|
+
* The external cause of injury code for this claim, if applicable.
|
|
793
895
|
* @type {string}
|
|
794
896
|
* @memberof ClaimBatch
|
|
795
897
|
*/
|
|
796
898
|
'eCode_Diagnostic_Code8'?: string | null;
|
|
797
899
|
/**
|
|
798
|
-
*
|
|
900
|
+
* The external cause of injury code for this claim, if applicable.
|
|
799
901
|
* @type {string}
|
|
800
902
|
* @memberof ClaimBatch
|
|
801
903
|
*/
|
|
802
904
|
'eCode_Diagnostic_Code9'?: string | null;
|
|
803
905
|
/**
|
|
804
|
-
*
|
|
906
|
+
* Early and Periodic Screening, Diagnostic, and Treatment Indicator tracked from the claim submission.
|
|
805
907
|
* @type {string}
|
|
806
908
|
* @memberof ClaimBatch
|
|
807
909
|
*/
|
|
808
910
|
'epsdT_Condition_Indicator1'?: string | null;
|
|
809
911
|
/**
|
|
810
|
-
*
|
|
912
|
+
* Early and Periodic Screening, Diagnostic, and Treatment Indicator tracked from the claim submission.
|
|
811
913
|
* @type {string}
|
|
812
914
|
* @memberof ClaimBatch
|
|
813
915
|
*/
|
|
814
916
|
'epsdT_Condition_Indicator2'?: string | null;
|
|
815
917
|
/**
|
|
816
|
-
*
|
|
918
|
+
* Early and Periodic Screening, Diagnostic, and Treatment Indicator tracked from the claim submission.
|
|
817
919
|
* @type {string}
|
|
818
920
|
* @memberof ClaimBatch
|
|
819
921
|
*/
|
|
820
922
|
'epsdT_Condition_Indicator3'?: string | null;
|
|
821
923
|
/**
|
|
822
|
-
*
|
|
924
|
+
* Early and Periodic Screening, Diagnostic, and Treatment tracking for if a referral was given for this claim.
|
|
823
925
|
* @type {string}
|
|
824
926
|
* @memberof ClaimBatch
|
|
825
927
|
*/
|
|
826
928
|
'epsdT_Referral_Given'?: string | null;
|
|
827
929
|
/**
|
|
828
|
-
*
|
|
930
|
+
* Date when the record was first added to the system.
|
|
829
931
|
* @type {string}
|
|
830
932
|
* @memberof ClaimBatch
|
|
831
933
|
*/
|
|
832
934
|
'entry_Date'?: string;
|
|
833
935
|
/**
|
|
834
|
-
*
|
|
936
|
+
* User that first added the record to the system.
|
|
835
937
|
* @type {string}
|
|
836
938
|
* @memberof ClaimBatch
|
|
837
939
|
*/
|
|
838
940
|
'entry_User'?: string | null;
|
|
839
941
|
/**
|
|
840
|
-
*
|
|
942
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
841
943
|
* @type {string}
|
|
842
944
|
* @memberof ClaimBatch
|
|
843
945
|
*/
|
|
844
946
|
'error_Amount'?: string | null;
|
|
845
947
|
/**
|
|
846
|
-
*
|
|
948
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
847
949
|
* @type {string}
|
|
848
950
|
* @memberof ClaimBatch
|
|
849
951
|
*/
|
|
850
952
|
'error_Auth'?: string | null;
|
|
851
953
|
/**
|
|
852
|
-
*
|
|
954
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
853
955
|
* @type {string}
|
|
854
956
|
* @memberof ClaimBatch
|
|
855
957
|
*/
|
|
856
958
|
'error_Beneficiary'?: string | null;
|
|
857
959
|
/**
|
|
858
|
-
*
|
|
960
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
859
961
|
* @type {string}
|
|
860
962
|
* @memberof ClaimBatch
|
|
861
963
|
*/
|
|
862
964
|
'error_Benefit'?: string | null;
|
|
863
965
|
/**
|
|
864
|
-
*
|
|
966
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
865
967
|
* @type {string}
|
|
866
968
|
* @memberof ClaimBatch
|
|
867
969
|
*/
|
|
868
970
|
'error_ConditionCode'?: string | null;
|
|
869
971
|
/**
|
|
870
|
-
*
|
|
972
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
871
973
|
* @type {string}
|
|
872
974
|
* @memberof ClaimBatch
|
|
873
975
|
*/
|
|
874
976
|
'error_Dates'?: string | null;
|
|
875
977
|
/**
|
|
876
|
-
*
|
|
978
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
877
979
|
* @type {string}
|
|
878
980
|
* @memberof ClaimBatch
|
|
879
981
|
*/
|
|
880
982
|
'error_Detail'?: string | null;
|
|
881
983
|
/**
|
|
882
|
-
*
|
|
984
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
883
985
|
* @type {string}
|
|
884
986
|
* @memberof ClaimBatch
|
|
885
987
|
*/
|
|
886
988
|
'error_Diag1'?: string | null;
|
|
887
989
|
/**
|
|
888
|
-
*
|
|
990
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
889
991
|
* @type {string}
|
|
890
992
|
* @memberof ClaimBatch
|
|
891
993
|
*/
|
|
892
994
|
'error_Diag10'?: string | null;
|
|
893
995
|
/**
|
|
894
|
-
*
|
|
996
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
895
997
|
* @type {string}
|
|
896
998
|
* @memberof ClaimBatch
|
|
897
999
|
*/
|
|
898
1000
|
'error_Diag11'?: string | null;
|
|
899
1001
|
/**
|
|
900
|
-
*
|
|
1002
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
901
1003
|
* @type {string}
|
|
902
1004
|
* @memberof ClaimBatch
|
|
903
1005
|
*/
|
|
904
1006
|
'error_Diag12'?: string | null;
|
|
905
1007
|
/**
|
|
906
|
-
*
|
|
1008
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
907
1009
|
* @type {string}
|
|
908
1010
|
* @memberof ClaimBatch
|
|
909
1011
|
*/
|
|
910
1012
|
'error_Diag13'?: string | null;
|
|
911
1013
|
/**
|
|
912
|
-
*
|
|
1014
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
913
1015
|
* @type {string}
|
|
914
1016
|
* @memberof ClaimBatch
|
|
915
1017
|
*/
|
|
916
1018
|
'error_Diag14'?: string | null;
|
|
917
1019
|
/**
|
|
918
|
-
*
|
|
1020
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
919
1021
|
* @type {string}
|
|
920
1022
|
* @memberof ClaimBatch
|
|
921
1023
|
*/
|
|
922
1024
|
'error_Diag15'?: string | null;
|
|
923
1025
|
/**
|
|
924
|
-
*
|
|
1026
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
925
1027
|
* @type {string}
|
|
926
1028
|
* @memberof ClaimBatch
|
|
927
1029
|
*/
|
|
928
1030
|
'error_Diag16'?: string | null;
|
|
929
1031
|
/**
|
|
930
|
-
*
|
|
1032
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
931
1033
|
* @type {string}
|
|
932
1034
|
* @memberof ClaimBatch
|
|
933
1035
|
*/
|
|
934
1036
|
'error_Diag17'?: string | null;
|
|
935
1037
|
/**
|
|
936
|
-
*
|
|
1038
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
937
1039
|
* @type {string}
|
|
938
1040
|
* @memberof ClaimBatch
|
|
939
1041
|
*/
|
|
940
1042
|
'error_Diag18'?: string | null;
|
|
941
1043
|
/**
|
|
942
|
-
*
|
|
1044
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
943
1045
|
* @type {string}
|
|
944
1046
|
* @memberof ClaimBatch
|
|
945
1047
|
*/
|
|
946
1048
|
'error_Diag19'?: string | null;
|
|
947
1049
|
/**
|
|
948
|
-
*
|
|
1050
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
949
1051
|
* @type {string}
|
|
950
1052
|
* @memberof ClaimBatch
|
|
951
1053
|
*/
|
|
952
1054
|
'error_Diag2'?: string | null;
|
|
953
1055
|
/**
|
|
954
|
-
*
|
|
1056
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
955
1057
|
* @type {string}
|
|
956
1058
|
* @memberof ClaimBatch
|
|
957
1059
|
*/
|
|
958
1060
|
'error_Diag20'?: string | null;
|
|
959
1061
|
/**
|
|
960
|
-
*
|
|
1062
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
961
1063
|
* @type {string}
|
|
962
1064
|
* @memberof ClaimBatch
|
|
963
1065
|
*/
|
|
964
1066
|
'error_Diag21'?: string | null;
|
|
965
1067
|
/**
|
|
966
|
-
*
|
|
1068
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
967
1069
|
* @type {string}
|
|
968
1070
|
* @memberof ClaimBatch
|
|
969
1071
|
*/
|
|
970
1072
|
'error_Diag22'?: string | null;
|
|
971
1073
|
/**
|
|
972
|
-
*
|
|
1074
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
973
1075
|
* @type {string}
|
|
974
1076
|
* @memberof ClaimBatch
|
|
975
1077
|
*/
|
|
976
1078
|
'error_Diag23'?: string | null;
|
|
977
1079
|
/**
|
|
978
|
-
*
|
|
1080
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
979
1081
|
* @type {string}
|
|
980
1082
|
* @memberof ClaimBatch
|
|
981
1083
|
*/
|
|
982
1084
|
'error_Diag24'?: string | null;
|
|
983
1085
|
/**
|
|
984
|
-
*
|
|
1086
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
985
1087
|
* @type {string}
|
|
986
1088
|
* @memberof ClaimBatch
|
|
987
1089
|
*/
|
|
988
1090
|
'error_Diag3'?: string | null;
|
|
989
1091
|
/**
|
|
990
|
-
*
|
|
1092
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
991
1093
|
* @type {string}
|
|
992
1094
|
* @memberof ClaimBatch
|
|
993
1095
|
*/
|
|
994
1096
|
'error_Diag4'?: string | null;
|
|
995
1097
|
/**
|
|
996
|
-
*
|
|
1098
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
997
1099
|
* @type {string}
|
|
998
1100
|
* @memberof ClaimBatch
|
|
999
1101
|
*/
|
|
1000
1102
|
'error_Diag5'?: string | null;
|
|
1001
1103
|
/**
|
|
1002
|
-
*
|
|
1104
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1003
1105
|
* @type {string}
|
|
1004
1106
|
* @memberof ClaimBatch
|
|
1005
1107
|
*/
|
|
1006
1108
|
'error_Diag6'?: string | null;
|
|
1007
1109
|
/**
|
|
1008
|
-
*
|
|
1110
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1009
1111
|
* @type {string}
|
|
1010
1112
|
* @memberof ClaimBatch
|
|
1011
1113
|
*/
|
|
1012
1114
|
'error_Diag7'?: string | null;
|
|
1013
1115
|
/**
|
|
1014
|
-
*
|
|
1116
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1015
1117
|
* @type {string}
|
|
1016
1118
|
* @memberof ClaimBatch
|
|
1017
1119
|
*/
|
|
1018
1120
|
'error_Diag8'?: string | null;
|
|
1019
1121
|
/**
|
|
1020
|
-
*
|
|
1122
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1021
1123
|
* @type {string}
|
|
1022
1124
|
* @memberof ClaimBatch
|
|
1023
1125
|
*/
|
|
1024
1126
|
'error_Diag9'?: string | null;
|
|
1025
1127
|
/**
|
|
1026
|
-
*
|
|
1128
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1027
1129
|
* @type {string}
|
|
1028
1130
|
* @memberof ClaimBatch
|
|
1029
1131
|
*/
|
|
1030
1132
|
'error_ExCode1'?: string | null;
|
|
1031
1133
|
/**
|
|
1032
|
-
*
|
|
1134
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1033
1135
|
* @type {string}
|
|
1034
1136
|
* @memberof ClaimBatch
|
|
1035
1137
|
*/
|
|
1036
1138
|
'error_ExCode2'?: string | null;
|
|
1037
1139
|
/**
|
|
1038
|
-
*
|
|
1140
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1039
1141
|
* @type {string}
|
|
1040
1142
|
* @memberof ClaimBatch
|
|
1041
1143
|
*/
|
|
1042
1144
|
'error_Exists'?: string | null;
|
|
1043
1145
|
/**
|
|
1044
|
-
*
|
|
1146
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1045
1147
|
* @type {string}
|
|
1046
1148
|
* @memberof ClaimBatch
|
|
1047
1149
|
*/
|
|
1048
1150
|
'error_Group'?: string | null;
|
|
1049
1151
|
/**
|
|
1050
|
-
*
|
|
1152
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1051
1153
|
* @type {string}
|
|
1052
1154
|
* @memberof ClaimBatch
|
|
1053
1155
|
*/
|
|
1054
1156
|
'error_Mem'?: string | null;
|
|
1055
1157
|
/**
|
|
1056
|
-
*
|
|
1158
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1057
1159
|
* @type {string}
|
|
1058
1160
|
* @memberof ClaimBatch
|
|
1059
1161
|
*/
|
|
1060
1162
|
'error_Network'?: string | null;
|
|
1061
1163
|
/**
|
|
1062
|
-
*
|
|
1164
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1063
1165
|
* @type {string}
|
|
1064
1166
|
* @memberof ClaimBatch
|
|
1065
1167
|
*/
|
|
1066
1168
|
'error_OccurrenceCode'?: string | null;
|
|
1067
1169
|
/**
|
|
1068
|
-
*
|
|
1170
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1069
1171
|
* @type {string}
|
|
1070
1172
|
* @memberof ClaimBatch
|
|
1071
1173
|
*/
|
|
1072
1174
|
'error_Plan'?: string | null;
|
|
1073
1175
|
/**
|
|
1074
|
-
*
|
|
1176
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1075
1177
|
* @type {string}
|
|
1076
1178
|
* @memberof ClaimBatch
|
|
1077
1179
|
*/
|
|
1078
1180
|
'error_Procedure'?: string | null;
|
|
1079
1181
|
/**
|
|
1080
|
-
*
|
|
1182
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1081
1183
|
* @type {string}
|
|
1082
1184
|
* @memberof ClaimBatch
|
|
1083
1185
|
*/
|
|
1084
1186
|
'error_Prov'?: string | null;
|
|
1085
1187
|
/**
|
|
1086
|
-
*
|
|
1188
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1087
1189
|
* @type {string}
|
|
1088
1190
|
* @memberof ClaimBatch
|
|
1089
1191
|
*/
|
|
1090
1192
|
'error_Sub'?: string | null;
|
|
1091
1193
|
/**
|
|
1092
|
-
*
|
|
1194
|
+
* During adjudication, this holds the results of claim rules associated with this error code. For a list of valid Error Codes, check the ErrorCategoryType table.
|
|
1093
1195
|
* @type {string}
|
|
1094
1196
|
* @memberof ClaimBatch
|
|
1095
1197
|
*/
|
|
1096
1198
|
'error_ValueCode'?: string | null;
|
|
1097
1199
|
/**
|
|
1098
|
-
*
|
|
1200
|
+
* A place for both user assigned reason codes applicable to this claim or for adjudication to automatically assign ex code. References ExplanationCodes.Ex_Code.
|
|
1099
1201
|
* @type {string}
|
|
1100
1202
|
* @memberof ClaimBatch
|
|
1101
1203
|
*/
|
|
1102
1204
|
'ex_Code1'?: string | null;
|
|
1103
1205
|
/**
|
|
1104
|
-
*
|
|
1206
|
+
* A place for both user assigned reason codes applicable to this claim or for adjudication to automatically assign ex code. References ExplanationCodes.Ex_Code.
|
|
1105
1207
|
* @type {string}
|
|
1106
1208
|
* @memberof ClaimBatch
|
|
1107
1209
|
*/
|
|
1108
1210
|
'ex_Code2'?: string | null;
|
|
1109
1211
|
/**
|
|
1110
|
-
*
|
|
1212
|
+
* A place for both user assigned reason codes applicable to this claim or for adjudication to automatically assign ex code. References ExplanationCodes.Ex_Code.
|
|
1111
1213
|
* @type {string}
|
|
1112
1214
|
* @memberof ClaimBatch
|
|
1113
1215
|
*/
|
|
1114
1216
|
'ex_Code3'?: string | null;
|
|
1115
1217
|
/**
|
|
1116
|
-
*
|
|
1218
|
+
* A place for both user assigned reason codes applicable to this claim or for adjudication to automatically assign ex code. References ExplanationCodes.Ex_Code.
|
|
1117
1219
|
* @type {string}
|
|
1118
1220
|
* @memberof ClaimBatch
|
|
1119
1221
|
*/
|
|
1120
1222
|
'ex_Code4'?: string | null;
|
|
1121
1223
|
/**
|
|
1122
|
-
*
|
|
1224
|
+
* This is the Exhaust Date of the members Disability.
|
|
1123
1225
|
* @type {string}
|
|
1124
1226
|
* @memberof ClaimBatch
|
|
1125
1227
|
*/
|
|
1126
1228
|
'exhaust_Date'?: string | null;
|
|
1127
1229
|
/**
|
|
1128
|
-
*
|
|
1230
|
+
* Expected Typical Duration (ETD) is the duration of disability identified by the MDA based on the type of job the member has as well as the diagnosis of the disability.
|
|
1129
1231
|
* @type {number}
|
|
1130
1232
|
* @memberof ClaimBatch
|
|
1131
1233
|
*/
|
|
1132
1234
|
'expected_Typical_Duration'?: number | null;
|
|
1133
1235
|
/**
|
|
1134
|
-
*
|
|
1236
|
+
* This will hold the FICA withhold amount for each payment. If tax calculation module is enabled, this option will be ignored.
|
|
1135
1237
|
* @type {number}
|
|
1136
1238
|
* @memberof ClaimBatch
|
|
1137
1239
|
*/
|
|
1138
1240
|
'ficA_Percent'?: number | null;
|
|
1139
1241
|
/**
|
|
1140
|
-
*
|
|
1242
|
+
* This will hold the federal withhold amount for each payment. If tax calculation module is enabled, this option will be ignored.
|
|
1141
1243
|
* @type {number}
|
|
1142
1244
|
* @memberof ClaimBatch
|
|
1143
1245
|
*/
|
|
1144
1246
|
'federal_Withheld'?: number | null;
|
|
1145
1247
|
/**
|
|
1146
|
-
*
|
|
1248
|
+
* No longer in use.
|
|
1147
1249
|
* @type {string}
|
|
1148
1250
|
* @memberof ClaimBatch
|
|
1149
1251
|
*/
|
|
1150
1252
|
'filing_Indicator'?: string | null;
|
|
1151
1253
|
/**
|
|
1152
|
-
*
|
|
1254
|
+
* This will place a follow-up date on each payment as an additional identifier for when this disability should be reviewed.
|
|
1153
1255
|
* @type {string}
|
|
1154
1256
|
* @memberof ClaimBatch
|
|
1155
1257
|
*/
|
|
1156
1258
|
'followUp_Date'?: string | null;
|
|
1157
1259
|
/**
|
|
1158
|
-
*
|
|
1260
|
+
* This will place a follow-up ex code on each payment to allow the user to categorize what type of follow-up is being performed.
|
|
1159
1261
|
* @type {string}
|
|
1160
1262
|
* @memberof ClaimBatch
|
|
1161
1263
|
*/
|
|
1162
1264
|
'followUp_Ex_Code'?: string | null;
|
|
1163
1265
|
/**
|
|
1164
|
-
*
|
|
1266
|
+
* Medicare Resubmission code for the claim. Indicated in Box 22 of the claim report.
|
|
1165
1267
|
* @type {string}
|
|
1166
1268
|
* @memberof ClaimBatch
|
|
1167
1269
|
*/
|
|
1168
1270
|
'freq_Code'?: string | null;
|
|
1169
1271
|
/**
|
|
1170
|
-
*
|
|
1272
|
+
* The patients (or Subscribers) enrollment information, references Subenrollment.Group_ID.
|
|
1171
1273
|
* @type {string}
|
|
1172
1274
|
* @memberof ClaimBatch
|
|
1173
1275
|
*/
|
|
1174
1276
|
'group_ID'?: string | null;
|
|
1175
1277
|
/**
|
|
1176
|
-
*
|
|
1278
|
+
* Information field used in custom processing and reporting.
|
|
1177
1279
|
* @type {string}
|
|
1178
1280
|
* @memberof ClaimBatch
|
|
1179
1281
|
*/
|
|
1180
1282
|
'hearing_Vision_RX_Date'?: string | null;
|
|
1181
1283
|
/**
|
|
1182
|
-
*
|
|
1284
|
+
* Stores a reference, if applicable, to an image or document associated with this claim.
|
|
1183
1285
|
* @type {string}
|
|
1184
1286
|
* @memberof ClaimBatch
|
|
1185
1287
|
*/
|
|
1186
1288
|
'image_File_Location'?: string | null;
|
|
1187
1289
|
/**
|
|
1188
|
-
*
|
|
1290
|
+
* Stores a reference, if applicable, to an image or document associated with this claim.
|
|
1189
1291
|
* @type {string}
|
|
1190
1292
|
* @memberof ClaimBatch
|
|
1191
1293
|
*/
|
|
1192
1294
|
'image_File_Location2'?: string | null;
|
|
1193
1295
|
/**
|
|
1194
|
-
*
|
|
1296
|
+
* Stores a reference, if applicable, to an image or document associated with this claim.
|
|
1195
1297
|
* @type {string}
|
|
1196
1298
|
* @memberof ClaimBatch
|
|
1197
1299
|
*/
|
|
1198
1300
|
'image_File_Location3'?: string | null;
|
|
1199
1301
|
/**
|
|
1200
|
-
*
|
|
1302
|
+
* Stores a reference, if applicable, to an image or document associated with this claim.
|
|
1201
1303
|
* @type {string}
|
|
1202
1304
|
* @memberof ClaimBatch
|
|
1203
1305
|
*/
|
|
1204
1306
|
'image_File_Location4'?: string | null;
|
|
1205
1307
|
/**
|
|
1206
|
-
*
|
|
1308
|
+
* Information field to track the initial treatment date for this claim.
|
|
1207
1309
|
* @type {string}
|
|
1208
1310
|
* @memberof ClaimBatch
|
|
1209
1311
|
*/
|
|
1210
1312
|
'initial_Treatment_Date'?: string | null;
|
|
1211
1313
|
/**
|
|
1212
|
-
*
|
|
1314
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1213
1315
|
* @type {string}
|
|
1214
1316
|
* @memberof ClaimBatch
|
|
1215
1317
|
*/
|
|
1216
1318
|
'insured_Address'?: string | null;
|
|
1217
1319
|
/**
|
|
1218
|
-
*
|
|
1320
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1219
1321
|
* @type {string}
|
|
1220
1322
|
* @memberof ClaimBatch
|
|
1221
1323
|
*/
|
|
1222
1324
|
'insured_Address2'?: string | null;
|
|
1223
1325
|
/**
|
|
1224
|
-
*
|
|
1326
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1225
1327
|
* @type {string}
|
|
1226
1328
|
* @memberof ClaimBatch
|
|
1227
1329
|
*/
|
|
1228
1330
|
'insured_Alternate_ID'?: string | null;
|
|
1229
1331
|
/**
|
|
1230
|
-
*
|
|
1332
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1231
1333
|
* @type {string}
|
|
1232
1334
|
* @memberof ClaimBatch
|
|
1233
1335
|
*/
|
|
1234
1336
|
'insured_Birth_Date'?: string | null;
|
|
1235
1337
|
/**
|
|
1236
|
-
*
|
|
1338
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1237
1339
|
* @type {string}
|
|
1238
1340
|
* @memberof ClaimBatch
|
|
1239
1341
|
*/
|
|
1240
1342
|
'insured_City'?: string | null;
|
|
1241
1343
|
/**
|
|
1242
|
-
*
|
|
1344
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1243
1345
|
* @type {string}
|
|
1244
1346
|
* @memberof ClaimBatch
|
|
1245
1347
|
*/
|
|
1246
1348
|
'insured_Employer_ID'?: string | null;
|
|
1247
1349
|
/**
|
|
1248
|
-
*
|
|
1350
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1249
1351
|
* @type {string}
|
|
1250
1352
|
* @memberof ClaimBatch
|
|
1251
1353
|
*/
|
|
1252
1354
|
'insured_First_Name'?: string | null;
|
|
1253
1355
|
/**
|
|
1254
|
-
*
|
|
1356
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1255
1357
|
* @type {string}
|
|
1256
1358
|
* @memberof ClaimBatch
|
|
1257
1359
|
*/
|
|
1258
1360
|
'insured_ID'?: string | null;
|
|
1259
1361
|
/**
|
|
1260
|
-
*
|
|
1362
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1261
1363
|
* @type {string}
|
|
1262
1364
|
* @memberof ClaimBatch
|
|
1263
1365
|
*/
|
|
1264
1366
|
'insured_Last_Name'?: string | null;
|
|
1265
1367
|
/**
|
|
1266
|
-
*
|
|
1368
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1267
1369
|
* @type {string}
|
|
1268
1370
|
* @memberof ClaimBatch
|
|
1269
1371
|
*/
|
|
1270
1372
|
'insured_Phone'?: string | null;
|
|
1271
1373
|
/**
|
|
1272
|
-
*
|
|
1374
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1273
1375
|
* @type {string}
|
|
1274
1376
|
* @memberof ClaimBatch
|
|
1275
1377
|
*/
|
|
1276
1378
|
'insured_Policy_Number'?: string | null;
|
|
1277
1379
|
/**
|
|
1278
|
-
*
|
|
1380
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1279
1381
|
* @type {string}
|
|
1280
1382
|
* @memberof ClaimBatch
|
|
1281
1383
|
*/
|
|
1282
1384
|
'insured_SSN'?: string | null;
|
|
1283
1385
|
/**
|
|
1284
|
-
*
|
|
1386
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1285
1387
|
* @type {string}
|
|
1286
1388
|
* @memberof ClaimBatch
|
|
1287
1389
|
*/
|
|
1288
1390
|
'insured_Sex'?: string | null;
|
|
1289
1391
|
/**
|
|
1290
|
-
*
|
|
1392
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1291
1393
|
* @type {string}
|
|
1292
1394
|
* @memberof ClaimBatch
|
|
1293
1395
|
*/
|
|
1294
1396
|
'insured_State'?: string | null;
|
|
1295
1397
|
/**
|
|
1296
|
-
*
|
|
1398
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
1297
1399
|
* @type {string}
|
|
1298
1400
|
* @memberof ClaimBatch
|
|
1299
1401
|
*/
|
|
1300
1402
|
'insured_Zip'?: string | null;
|
|
1301
1403
|
/**
|
|
1302
|
-
*
|
|
1404
|
+
* This is the job classification for the member going on disability.
|
|
1303
1405
|
* @type {string}
|
|
1304
1406
|
* @memberof ClaimBatch
|
|
1305
1407
|
*/
|
|
1306
1408
|
'job_Type'?: string | null;
|
|
1307
1409
|
/**
|
|
1308
|
-
*
|
|
1410
|
+
* This is an information only field that holds the date the member went on Long-Term Disability.
|
|
1309
1411
|
* @type {string}
|
|
1310
1412
|
* @memberof ClaimBatch
|
|
1311
1413
|
*/
|
|
1312
1414
|
'ltD_Effective_Date'?: string | null;
|
|
1313
1415
|
/**
|
|
1314
|
-
*
|
|
1416
|
+
* This is an information only field that tracks the date the Long-Term Disability Packet was sent.
|
|
1315
1417
|
* @type {string}
|
|
1316
1418
|
* @memberof ClaimBatch
|
|
1317
1419
|
*/
|
|
1318
1420
|
'ltD_Packet_Date'?: string | null;
|
|
1319
1421
|
/**
|
|
1320
|
-
*
|
|
1422
|
+
* This identifies the date the member last attended work prior to going on disability. This field, in combination with First Attended Physician Date and Disabled by Physician, create the Disability Date for the Member.
|
|
1321
1423
|
* @type {string}
|
|
1322
1424
|
* @memberof ClaimBatch
|
|
1323
1425
|
*/
|
|
1324
1426
|
'last_Day_Worked'?: string | null;
|
|
1325
1427
|
/**
|
|
1326
|
-
*
|
|
1428
|
+
* This is an information only field that allows for the tracking of the Physician Warrant Date.
|
|
1327
1429
|
* @type {string}
|
|
1328
1430
|
* @memberof ClaimBatch
|
|
1329
1431
|
*/
|
|
1330
1432
|
'last_Physician_Warrant_Date'?: string | null;
|
|
1331
1433
|
/**
|
|
1332
|
-
*
|
|
1434
|
+
* Information field to track the last time a phyician was seen at the time of this claim submission.
|
|
1333
1435
|
* @type {string}
|
|
1334
1436
|
* @memberof ClaimBatch
|
|
1335
1437
|
*/
|
|
1336
1438
|
'last_Seen_Date'?: string | null;
|
|
1337
1439
|
/**
|
|
1338
|
-
*
|
|
1440
|
+
* This is an information only field that identifies if this disability is a liability injury. 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.
|
|
1339
1441
|
* @type {boolean}
|
|
1340
1442
|
* @memberof ClaimBatch
|
|
1341
1443
|
*/
|
|
1342
1444
|
'liability_Injury': boolean;
|
|
1343
1445
|
/**
|
|
1344
|
-
*
|
|
1446
|
+
* Notes if the payment should be mailed to an entity other than the \"Send_Check_To\".
|
|
1345
1447
|
* @type {string}
|
|
1346
1448
|
* @memberof ClaimBatch
|
|
1347
1449
|
*/
|
|
1348
1450
|
'mail_To'?: string | null;
|
|
1349
1451
|
/**
|
|
1350
|
-
*
|
|
1452
|
+
* The Member Sequence of the patient for this claim.
|
|
1351
1453
|
* @type {string}
|
|
1352
1454
|
* @memberof ClaimBatch
|
|
1353
1455
|
*/
|
|
1354
1456
|
'member_Seq'?: string | null;
|
|
1355
1457
|
/**
|
|
1356
|
-
*
|
|
1458
|
+
* The number of months the orthodontic treatment will be.
|
|
1357
1459
|
* @type {number}
|
|
1358
1460
|
* @memberof ClaimBatch
|
|
1359
1461
|
*/
|
|
1360
1462
|
'months_Of_Treatment'?: number | null;
|
|
1361
1463
|
/**
|
|
1362
|
-
*
|
|
1464
|
+
* Indicates the network this claim was paid against. If this value is NULL, the claim is considered \"Out of Network\".
|
|
1363
1465
|
* @type {string}
|
|
1364
1466
|
* @memberof ClaimBatch
|
|
1365
1467
|
*/
|
|
1366
1468
|
'network_ID'?: string | null;
|
|
1367
1469
|
/**
|
|
1368
|
-
*
|
|
1470
|
+
* No longer in use.
|
|
1369
1471
|
* @type {string}
|
|
1370
1472
|
* @memberof ClaimBatch
|
|
1371
1473
|
*/
|
|
1372
1474
|
'note'?: string | null;
|
|
1373
1475
|
/**
|
|
1374
|
-
*
|
|
1476
|
+
* Notes if the disability is related to the patiens occupation. 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.
|
|
1375
1477
|
* @type {boolean}
|
|
1376
1478
|
* @memberof ClaimBatch
|
|
1377
1479
|
*/
|
|
1378
1480
|
'occupational': boolean;
|
|
1379
1481
|
/**
|
|
1380
|
-
*
|
|
1482
|
+
* The Occurrence Code value for this claim.
|
|
1381
1483
|
* @type {string}
|
|
1382
1484
|
* @memberof ClaimBatch
|
|
1383
1485
|
*/
|
|
@@ -1387,1287 +1489,2163 @@ export interface ClaimBatch {
|
|
|
1387
1489
|
* @type {string}
|
|
1388
1490
|
* @memberof ClaimBatch
|
|
1389
1491
|
*/
|
|
1390
|
-
'
|
|
1492
|
+
'occurrence_Code10'?: string | null;
|
|
1391
1493
|
/**
|
|
1392
1494
|
*
|
|
1393
1495
|
* @type {string}
|
|
1394
1496
|
* @memberof ClaimBatch
|
|
1395
1497
|
*/
|
|
1396
|
-
'
|
|
1498
|
+
'occurrence_Code11'?: string | null;
|
|
1397
1499
|
/**
|
|
1398
1500
|
*
|
|
1399
1501
|
* @type {string}
|
|
1400
1502
|
* @memberof ClaimBatch
|
|
1401
1503
|
*/
|
|
1402
|
-
'
|
|
1504
|
+
'occurrence_Code12'?: string | null;
|
|
1403
1505
|
/**
|
|
1404
1506
|
*
|
|
1405
1507
|
* @type {string}
|
|
1406
1508
|
* @memberof ClaimBatch
|
|
1407
1509
|
*/
|
|
1408
|
-
'
|
|
1510
|
+
'occurrence_Code13'?: string | null;
|
|
1409
1511
|
/**
|
|
1410
1512
|
*
|
|
1411
1513
|
* @type {string}
|
|
1412
1514
|
* @memberof ClaimBatch
|
|
1413
1515
|
*/
|
|
1414
|
-
'
|
|
1516
|
+
'occurrence_Code14'?: string | null;
|
|
1415
1517
|
/**
|
|
1416
1518
|
*
|
|
1417
1519
|
* @type {string}
|
|
1418
1520
|
* @memberof ClaimBatch
|
|
1419
1521
|
*/
|
|
1420
|
-
'
|
|
1522
|
+
'occurrence_Code15'?: string | null;
|
|
1421
1523
|
/**
|
|
1422
1524
|
*
|
|
1423
1525
|
* @type {string}
|
|
1424
1526
|
* @memberof ClaimBatch
|
|
1425
1527
|
*/
|
|
1426
|
-
'
|
|
1528
|
+
'occurrence_Code16'?: string | null;
|
|
1427
1529
|
/**
|
|
1428
1530
|
*
|
|
1429
1531
|
* @type {string}
|
|
1430
1532
|
* @memberof ClaimBatch
|
|
1431
1533
|
*/
|
|
1432
|
-
'
|
|
1534
|
+
'occurrence_Code17'?: string | null;
|
|
1433
1535
|
/**
|
|
1434
1536
|
*
|
|
1435
1537
|
* @type {string}
|
|
1436
1538
|
* @memberof ClaimBatch
|
|
1437
1539
|
*/
|
|
1438
|
-
'
|
|
1540
|
+
'occurrence_Code18'?: string | null;
|
|
1439
1541
|
/**
|
|
1440
1542
|
*
|
|
1441
1543
|
* @type {string}
|
|
1442
1544
|
* @memberof ClaimBatch
|
|
1443
1545
|
*/
|
|
1444
|
-
'
|
|
1546
|
+
'occurrence_Code19'?: string | null;
|
|
1445
1547
|
/**
|
|
1446
|
-
*
|
|
1548
|
+
* The Occurrence Code value for this claim.
|
|
1447
1549
|
* @type {string}
|
|
1448
1550
|
* @memberof ClaimBatch
|
|
1449
1551
|
*/
|
|
1450
|
-
'
|
|
1552
|
+
'occurrence_Code2'?: string | null;
|
|
1451
1553
|
/**
|
|
1452
1554
|
*
|
|
1453
1555
|
* @type {string}
|
|
1454
1556
|
* @memberof ClaimBatch
|
|
1455
1557
|
*/
|
|
1456
|
-
'
|
|
1558
|
+
'occurrence_Code20'?: string | null;
|
|
1457
1559
|
/**
|
|
1458
1560
|
*
|
|
1459
1561
|
* @type {string}
|
|
1460
1562
|
* @memberof ClaimBatch
|
|
1461
1563
|
*/
|
|
1462
|
-
'
|
|
1564
|
+
'occurrence_Code21'?: string | null;
|
|
1463
1565
|
/**
|
|
1464
1566
|
*
|
|
1465
1567
|
* @type {string}
|
|
1466
1568
|
* @memberof ClaimBatch
|
|
1467
1569
|
*/
|
|
1468
|
-
'
|
|
1570
|
+
'occurrence_Code22'?: string | null;
|
|
1469
1571
|
/**
|
|
1470
1572
|
*
|
|
1471
1573
|
* @type {string}
|
|
1472
1574
|
* @memberof ClaimBatch
|
|
1473
1575
|
*/
|
|
1474
|
-
'
|
|
1576
|
+
'occurrence_Code23'?: string | null;
|
|
1475
1577
|
/**
|
|
1476
1578
|
*
|
|
1477
1579
|
* @type {string}
|
|
1478
1580
|
* @memberof ClaimBatch
|
|
1479
1581
|
*/
|
|
1480
|
-
'
|
|
1582
|
+
'occurrence_Code24'?: string | null;
|
|
1481
1583
|
/**
|
|
1482
|
-
*
|
|
1584
|
+
* The Occurrence Code value for this claim.
|
|
1483
1585
|
* @type {string}
|
|
1484
1586
|
* @memberof ClaimBatch
|
|
1485
1587
|
*/
|
|
1486
|
-
'
|
|
1588
|
+
'occurrence_Code3'?: string | null;
|
|
1487
1589
|
/**
|
|
1488
|
-
*
|
|
1590
|
+
* The Occurrence Code value for this claim.
|
|
1489
1591
|
* @type {string}
|
|
1490
1592
|
* @memberof ClaimBatch
|
|
1491
1593
|
*/
|
|
1492
|
-
'
|
|
1594
|
+
'occurrence_Code4'?: string | null;
|
|
1493
1595
|
/**
|
|
1494
1596
|
*
|
|
1495
1597
|
* @type {string}
|
|
1496
1598
|
* @memberof ClaimBatch
|
|
1497
1599
|
*/
|
|
1498
|
-
'
|
|
1600
|
+
'occurrence_Code5'?: string | null;
|
|
1499
1601
|
/**
|
|
1500
1602
|
*
|
|
1501
1603
|
* @type {string}
|
|
1502
1604
|
* @memberof ClaimBatch
|
|
1503
1605
|
*/
|
|
1504
|
-
'
|
|
1606
|
+
'occurrence_Code6'?: string | null;
|
|
1505
1607
|
/**
|
|
1506
1608
|
*
|
|
1507
1609
|
* @type {string}
|
|
1508
1610
|
* @memberof ClaimBatch
|
|
1509
1611
|
*/
|
|
1510
|
-
'
|
|
1612
|
+
'occurrence_Code7'?: string | null;
|
|
1511
1613
|
/**
|
|
1512
1614
|
*
|
|
1513
1615
|
* @type {string}
|
|
1514
1616
|
* @memberof ClaimBatch
|
|
1515
1617
|
*/
|
|
1516
|
-
'
|
|
1618
|
+
'occurrence_Code8'?: string | null;
|
|
1517
1619
|
/**
|
|
1518
1620
|
*
|
|
1519
1621
|
* @type {string}
|
|
1520
1622
|
* @memberof ClaimBatch
|
|
1521
1623
|
*/
|
|
1522
|
-
'
|
|
1624
|
+
'occurrence_Code9'?: string | null;
|
|
1523
1625
|
/**
|
|
1524
|
-
*
|
|
1626
|
+
* The Occurrence Date associated to the assigned Occurrence Codes.
|
|
1525
1627
|
* @type {string}
|
|
1526
1628
|
* @memberof ClaimBatch
|
|
1527
1629
|
*/
|
|
1528
|
-
'
|
|
1630
|
+
'occurrence_Date1'?: string | null;
|
|
1529
1631
|
/**
|
|
1530
1632
|
*
|
|
1531
|
-
* @type {
|
|
1633
|
+
* @type {string}
|
|
1532
1634
|
* @memberof ClaimBatch
|
|
1533
1635
|
*/
|
|
1534
|
-
'
|
|
1636
|
+
'occurrence_Date10'?: string | null;
|
|
1535
1637
|
/**
|
|
1536
1638
|
*
|
|
1537
|
-
* @type {
|
|
1639
|
+
* @type {string}
|
|
1538
1640
|
* @memberof ClaimBatch
|
|
1539
1641
|
*/
|
|
1540
|
-
'
|
|
1642
|
+
'occurrence_Date11'?: string | null;
|
|
1541
1643
|
/**
|
|
1542
1644
|
*
|
|
1543
1645
|
* @type {string}
|
|
1544
1646
|
* @memberof ClaimBatch
|
|
1545
1647
|
*/
|
|
1546
|
-
'
|
|
1648
|
+
'occurrence_Date12'?: string | null;
|
|
1547
1649
|
/**
|
|
1548
1650
|
*
|
|
1549
1651
|
* @type {string}
|
|
1550
1652
|
* @memberof ClaimBatch
|
|
1551
1653
|
*/
|
|
1552
|
-
'
|
|
1654
|
+
'occurrence_Date13'?: string | null;
|
|
1553
1655
|
/**
|
|
1554
1656
|
*
|
|
1555
1657
|
* @type {string}
|
|
1556
1658
|
* @memberof ClaimBatch
|
|
1557
1659
|
*/
|
|
1558
|
-
'
|
|
1660
|
+
'occurrence_Date14'?: string | null;
|
|
1559
1661
|
/**
|
|
1560
1662
|
*
|
|
1561
1663
|
* @type {string}
|
|
1562
1664
|
* @memberof ClaimBatch
|
|
1563
1665
|
*/
|
|
1564
|
-
'
|
|
1666
|
+
'occurrence_Date15'?: string | null;
|
|
1565
1667
|
/**
|
|
1566
1668
|
*
|
|
1567
1669
|
* @type {string}
|
|
1568
1670
|
* @memberof ClaimBatch
|
|
1569
1671
|
*/
|
|
1570
|
-
'
|
|
1672
|
+
'occurrence_Date16'?: string | null;
|
|
1571
1673
|
/**
|
|
1572
1674
|
*
|
|
1573
1675
|
* @type {string}
|
|
1574
1676
|
* @memberof ClaimBatch
|
|
1575
1677
|
*/
|
|
1576
|
-
'
|
|
1678
|
+
'occurrence_Date17'?: string | null;
|
|
1577
1679
|
/**
|
|
1578
1680
|
*
|
|
1579
1681
|
* @type {string}
|
|
1580
1682
|
* @memberof ClaimBatch
|
|
1581
1683
|
*/
|
|
1582
|
-
'
|
|
1684
|
+
'occurrence_Date18'?: string | null;
|
|
1583
1685
|
/**
|
|
1584
1686
|
*
|
|
1585
1687
|
* @type {string}
|
|
1586
1688
|
* @memberof ClaimBatch
|
|
1587
1689
|
*/
|
|
1588
|
-
'
|
|
1690
|
+
'occurrence_Date19'?: string | null;
|
|
1589
1691
|
/**
|
|
1590
|
-
*
|
|
1692
|
+
* The Occurrence Date associated to the assigned Occurrence Codes.
|
|
1591
1693
|
* @type {string}
|
|
1592
1694
|
* @memberof ClaimBatch
|
|
1593
1695
|
*/
|
|
1594
|
-
'
|
|
1696
|
+
'occurrence_Date2'?: string | null;
|
|
1595
1697
|
/**
|
|
1596
1698
|
*
|
|
1597
1699
|
* @type {string}
|
|
1598
1700
|
* @memberof ClaimBatch
|
|
1599
1701
|
*/
|
|
1600
|
-
'
|
|
1702
|
+
'occurrence_Date20'?: string | null;
|
|
1601
1703
|
/**
|
|
1602
1704
|
*
|
|
1603
1705
|
* @type {string}
|
|
1604
1706
|
* @memberof ClaimBatch
|
|
1605
1707
|
*/
|
|
1606
|
-
'
|
|
1708
|
+
'occurrence_Date21'?: string | null;
|
|
1607
1709
|
/**
|
|
1608
1710
|
*
|
|
1609
1711
|
* @type {string}
|
|
1610
1712
|
* @memberof ClaimBatch
|
|
1611
1713
|
*/
|
|
1612
|
-
'
|
|
1714
|
+
'occurrence_Date22'?: string | null;
|
|
1613
1715
|
/**
|
|
1614
1716
|
*
|
|
1615
|
-
* @type {
|
|
1717
|
+
* @type {string}
|
|
1616
1718
|
* @memberof ClaimBatch
|
|
1617
1719
|
*/
|
|
1618
|
-
'
|
|
1720
|
+
'occurrence_Date23'?: string | null;
|
|
1619
1721
|
/**
|
|
1620
1722
|
*
|
|
1621
|
-
* @type {
|
|
1723
|
+
* @type {string}
|
|
1622
1724
|
* @memberof ClaimBatch
|
|
1623
1725
|
*/
|
|
1624
|
-
'
|
|
1726
|
+
'occurrence_Date24'?: string | null;
|
|
1625
1727
|
/**
|
|
1626
|
-
*
|
|
1728
|
+
* The Occurrence Date associated to the assigned Occurrence Codes.
|
|
1627
1729
|
* @type {string}
|
|
1628
1730
|
* @memberof ClaimBatch
|
|
1629
1731
|
*/
|
|
1630
|
-
'
|
|
1732
|
+
'occurrence_Date3'?: string | null;
|
|
1631
1733
|
/**
|
|
1632
|
-
*
|
|
1633
|
-
* @type {
|
|
1734
|
+
* The Occurrence Date associated to the assigned Occurrence Codes.
|
|
1735
|
+
* @type {string}
|
|
1634
1736
|
* @memberof ClaimBatch
|
|
1635
1737
|
*/
|
|
1636
|
-
'
|
|
1738
|
+
'occurrence_Date4'?: string | null;
|
|
1637
1739
|
/**
|
|
1638
1740
|
*
|
|
1639
1741
|
* @type {string}
|
|
1640
1742
|
* @memberof ClaimBatch
|
|
1641
1743
|
*/
|
|
1642
|
-
'
|
|
1744
|
+
'occurrence_Date5'?: string | null;
|
|
1643
1745
|
/**
|
|
1644
1746
|
*
|
|
1645
1747
|
* @type {string}
|
|
1646
1748
|
* @memberof ClaimBatch
|
|
1647
1749
|
*/
|
|
1648
|
-
'
|
|
1750
|
+
'occurrence_Date6'?: string | null;
|
|
1649
1751
|
/**
|
|
1650
1752
|
*
|
|
1651
1753
|
* @type {string}
|
|
1652
1754
|
* @memberof ClaimBatch
|
|
1653
1755
|
*/
|
|
1654
|
-
'
|
|
1756
|
+
'occurrence_Date7'?: string | null;
|
|
1655
1757
|
/**
|
|
1656
1758
|
*
|
|
1657
1759
|
* @type {string}
|
|
1658
1760
|
* @memberof ClaimBatch
|
|
1659
1761
|
*/
|
|
1660
|
-
'
|
|
1762
|
+
'occurrence_Date8'?: string | null;
|
|
1661
1763
|
/**
|
|
1662
1764
|
*
|
|
1663
1765
|
* @type {string}
|
|
1664
1766
|
* @memberof ClaimBatch
|
|
1665
1767
|
*/
|
|
1666
|
-
'
|
|
1768
|
+
'occurrence_Date9'?: string | null;
|
|
1667
1769
|
/**
|
|
1668
|
-
*
|
|
1770
|
+
* The occurrence span indicator for the Occurrence Span From and Thru dates.
|
|
1669
1771
|
* @type {string}
|
|
1670
1772
|
* @memberof ClaimBatch
|
|
1671
1773
|
*/
|
|
1672
|
-
'
|
|
1774
|
+
'occurrence_Span_Code'?: string | null;
|
|
1673
1775
|
/**
|
|
1674
1776
|
*
|
|
1675
1777
|
* @type {string}
|
|
1676
1778
|
* @memberof ClaimBatch
|
|
1677
1779
|
*/
|
|
1678
|
-
'
|
|
1780
|
+
'occurrence_Span_Code10'?: string | null;
|
|
1679
1781
|
/**
|
|
1680
1782
|
*
|
|
1681
1783
|
* @type {string}
|
|
1682
1784
|
* @memberof ClaimBatch
|
|
1683
1785
|
*/
|
|
1684
|
-
'
|
|
1786
|
+
'occurrence_Span_Code11'?: string | null;
|
|
1685
1787
|
/**
|
|
1686
1788
|
*
|
|
1687
1789
|
* @type {string}
|
|
1688
1790
|
* @memberof ClaimBatch
|
|
1689
1791
|
*/
|
|
1690
|
-
'
|
|
1792
|
+
'occurrence_Span_Code12'?: string | null;
|
|
1691
1793
|
/**
|
|
1692
1794
|
*
|
|
1693
1795
|
* @type {string}
|
|
1694
1796
|
* @memberof ClaimBatch
|
|
1695
1797
|
*/
|
|
1696
|
-
'
|
|
1798
|
+
'occurrence_Span_Code13'?: string | null;
|
|
1697
1799
|
/**
|
|
1698
1800
|
*
|
|
1699
1801
|
* @type {string}
|
|
1700
1802
|
* @memberof ClaimBatch
|
|
1701
1803
|
*/
|
|
1702
|
-
'
|
|
1804
|
+
'occurrence_Span_Code14'?: string | null;
|
|
1703
1805
|
/**
|
|
1704
1806
|
*
|
|
1705
1807
|
* @type {string}
|
|
1706
1808
|
* @memberof ClaimBatch
|
|
1707
1809
|
*/
|
|
1708
|
-
'
|
|
1810
|
+
'occurrence_Span_Code15'?: string | null;
|
|
1709
1811
|
/**
|
|
1710
1812
|
*
|
|
1711
1813
|
* @type {string}
|
|
1712
1814
|
* @memberof ClaimBatch
|
|
1713
1815
|
*/
|
|
1714
|
-
'
|
|
1816
|
+
'occurrence_Span_Code16'?: string | null;
|
|
1715
1817
|
/**
|
|
1716
1818
|
*
|
|
1717
1819
|
* @type {string}
|
|
1718
1820
|
* @memberof ClaimBatch
|
|
1719
1821
|
*/
|
|
1720
|
-
'
|
|
1822
|
+
'occurrence_Span_Code17'?: string | null;
|
|
1721
1823
|
/**
|
|
1722
1824
|
*
|
|
1723
|
-
* @type {
|
|
1825
|
+
* @type {string}
|
|
1724
1826
|
* @memberof ClaimBatch
|
|
1725
1827
|
*/
|
|
1726
|
-
'
|
|
1828
|
+
'occurrence_Span_Code18'?: string | null;
|
|
1727
1829
|
/**
|
|
1728
1830
|
*
|
|
1729
1831
|
* @type {string}
|
|
1730
1832
|
* @memberof ClaimBatch
|
|
1731
1833
|
*/
|
|
1732
|
-
'
|
|
1834
|
+
'occurrence_Span_Code19'?: string | null;
|
|
1733
1835
|
/**
|
|
1734
1836
|
*
|
|
1735
1837
|
* @type {string}
|
|
1736
1838
|
* @memberof ClaimBatch
|
|
1737
1839
|
*/
|
|
1738
|
-
'
|
|
1840
|
+
'occurrence_Span_Code2'?: string | null;
|
|
1739
1841
|
/**
|
|
1740
1842
|
*
|
|
1741
1843
|
* @type {string}
|
|
1742
1844
|
* @memberof ClaimBatch
|
|
1743
1845
|
*/
|
|
1744
|
-
'
|
|
1846
|
+
'occurrence_Span_Code20'?: string | null;
|
|
1745
1847
|
/**
|
|
1746
1848
|
*
|
|
1747
1849
|
* @type {string}
|
|
1748
1850
|
* @memberof ClaimBatch
|
|
1749
1851
|
*/
|
|
1750
|
-
'
|
|
1852
|
+
'occurrence_Span_Code21'?: string | null;
|
|
1751
1853
|
/**
|
|
1752
1854
|
*
|
|
1753
1855
|
* @type {string}
|
|
1754
1856
|
* @memberof ClaimBatch
|
|
1755
1857
|
*/
|
|
1756
|
-
'
|
|
1858
|
+
'occurrence_Span_Code22'?: string | null;
|
|
1757
1859
|
/**
|
|
1758
1860
|
*
|
|
1759
1861
|
* @type {string}
|
|
1760
1862
|
* @memberof ClaimBatch
|
|
1761
1863
|
*/
|
|
1762
|
-
'
|
|
1864
|
+
'occurrence_Span_Code23'?: string | null;
|
|
1763
1865
|
/**
|
|
1764
1866
|
*
|
|
1765
1867
|
* @type {string}
|
|
1766
1868
|
* @memberof ClaimBatch
|
|
1767
1869
|
*/
|
|
1768
|
-
'
|
|
1870
|
+
'occurrence_Span_Code24'?: string | null;
|
|
1769
1871
|
/**
|
|
1770
1872
|
*
|
|
1771
1873
|
* @type {string}
|
|
1772
1874
|
* @memberof ClaimBatch
|
|
1773
1875
|
*/
|
|
1774
|
-
'
|
|
1876
|
+
'occurrence_Span_Code3'?: string | null;
|
|
1775
1877
|
/**
|
|
1776
1878
|
*
|
|
1777
1879
|
* @type {string}
|
|
1778
1880
|
* @memberof ClaimBatch
|
|
1779
1881
|
*/
|
|
1780
|
-
'
|
|
1882
|
+
'occurrence_Span_Code4'?: string | null;
|
|
1781
1883
|
/**
|
|
1782
1884
|
*
|
|
1783
1885
|
* @type {string}
|
|
1784
1886
|
* @memberof ClaimBatch
|
|
1785
1887
|
*/
|
|
1786
|
-
'
|
|
1888
|
+
'occurrence_Span_Code5'?: string | null;
|
|
1787
1889
|
/**
|
|
1788
1890
|
*
|
|
1789
1891
|
* @type {string}
|
|
1790
1892
|
* @memberof ClaimBatch
|
|
1791
1893
|
*/
|
|
1792
|
-
'
|
|
1894
|
+
'occurrence_Span_Code6'?: string | null;
|
|
1793
1895
|
/**
|
|
1794
1896
|
*
|
|
1795
1897
|
* @type {string}
|
|
1796
1898
|
* @memberof ClaimBatch
|
|
1797
1899
|
*/
|
|
1798
|
-
'
|
|
1900
|
+
'occurrence_Span_Code7'?: string | null;
|
|
1799
1901
|
/**
|
|
1800
1902
|
*
|
|
1801
1903
|
* @type {string}
|
|
1802
1904
|
* @memberof ClaimBatch
|
|
1803
1905
|
*/
|
|
1804
|
-
'
|
|
1906
|
+
'occurrence_Span_Code8'?: string | null;
|
|
1805
1907
|
/**
|
|
1806
1908
|
*
|
|
1807
1909
|
* @type {string}
|
|
1808
1910
|
* @memberof ClaimBatch
|
|
1809
1911
|
*/
|
|
1810
|
-
'
|
|
1912
|
+
'occurrence_Span_Code9'?: string | null;
|
|
1811
1913
|
/**
|
|
1812
|
-
*
|
|
1914
|
+
* The occurrence span from for this claim.
|
|
1813
1915
|
* @type {string}
|
|
1814
1916
|
* @memberof ClaimBatch
|
|
1815
1917
|
*/
|
|
1816
|
-
'
|
|
1918
|
+
'occurrence_Span_From'?: string | null;
|
|
1817
1919
|
/**
|
|
1818
1920
|
*
|
|
1819
1921
|
* @type {string}
|
|
1820
1922
|
* @memberof ClaimBatch
|
|
1821
1923
|
*/
|
|
1822
|
-
'
|
|
1924
|
+
'occurrence_Span_From10'?: string | null;
|
|
1823
1925
|
/**
|
|
1824
1926
|
*
|
|
1825
1927
|
* @type {string}
|
|
1826
1928
|
* @memberof ClaimBatch
|
|
1827
1929
|
*/
|
|
1828
|
-
'
|
|
1930
|
+
'occurrence_Span_From11'?: string | null;
|
|
1829
1931
|
/**
|
|
1830
1932
|
*
|
|
1831
1933
|
* @type {string}
|
|
1832
1934
|
* @memberof ClaimBatch
|
|
1833
1935
|
*/
|
|
1834
|
-
'
|
|
1936
|
+
'occurrence_Span_From12'?: string | null;
|
|
1835
1937
|
/**
|
|
1836
1938
|
*
|
|
1837
1939
|
* @type {string}
|
|
1838
1940
|
* @memberof ClaimBatch
|
|
1839
1941
|
*/
|
|
1840
|
-
'
|
|
1942
|
+
'occurrence_Span_From13'?: string | null;
|
|
1841
1943
|
/**
|
|
1842
1944
|
*
|
|
1843
1945
|
* @type {string}
|
|
1844
1946
|
* @memberof ClaimBatch
|
|
1845
1947
|
*/
|
|
1846
|
-
'
|
|
1948
|
+
'occurrence_Span_From14'?: string | null;
|
|
1847
1949
|
/**
|
|
1848
1950
|
*
|
|
1849
1951
|
* @type {string}
|
|
1850
1952
|
* @memberof ClaimBatch
|
|
1851
1953
|
*/
|
|
1852
|
-
'
|
|
1954
|
+
'occurrence_Span_From15'?: string | null;
|
|
1853
1955
|
/**
|
|
1854
1956
|
*
|
|
1855
1957
|
* @type {string}
|
|
1856
1958
|
* @memberof ClaimBatch
|
|
1857
1959
|
*/
|
|
1858
|
-
'
|
|
1960
|
+
'occurrence_Span_From16'?: string | null;
|
|
1859
1961
|
/**
|
|
1860
1962
|
*
|
|
1861
1963
|
* @type {string}
|
|
1862
1964
|
* @memberof ClaimBatch
|
|
1863
1965
|
*/
|
|
1864
|
-
'
|
|
1966
|
+
'occurrence_Span_From17'?: string | null;
|
|
1865
1967
|
/**
|
|
1866
1968
|
*
|
|
1867
1969
|
* @type {string}
|
|
1868
1970
|
* @memberof ClaimBatch
|
|
1869
1971
|
*/
|
|
1870
|
-
'
|
|
1972
|
+
'occurrence_Span_From18'?: string | null;
|
|
1871
1973
|
/**
|
|
1872
1974
|
*
|
|
1873
1975
|
* @type {string}
|
|
1874
1976
|
* @memberof ClaimBatch
|
|
1875
1977
|
*/
|
|
1876
|
-
'
|
|
1978
|
+
'occurrence_Span_From19'?: string | null;
|
|
1877
1979
|
/**
|
|
1878
1980
|
*
|
|
1879
1981
|
* @type {string}
|
|
1880
1982
|
* @memberof ClaimBatch
|
|
1881
1983
|
*/
|
|
1882
|
-
'
|
|
1984
|
+
'occurrence_Span_From2'?: string | null;
|
|
1883
1985
|
/**
|
|
1884
1986
|
*
|
|
1885
1987
|
* @type {string}
|
|
1886
1988
|
* @memberof ClaimBatch
|
|
1887
1989
|
*/
|
|
1888
|
-
'
|
|
1990
|
+
'occurrence_Span_From20'?: string | null;
|
|
1889
1991
|
/**
|
|
1890
1992
|
*
|
|
1891
1993
|
* @type {string}
|
|
1892
1994
|
* @memberof ClaimBatch
|
|
1893
1995
|
*/
|
|
1894
|
-
'
|
|
1996
|
+
'occurrence_Span_From21'?: string | null;
|
|
1895
1997
|
/**
|
|
1896
1998
|
*
|
|
1897
1999
|
* @type {string}
|
|
1898
2000
|
* @memberof ClaimBatch
|
|
1899
2001
|
*/
|
|
1900
|
-
'
|
|
2002
|
+
'occurrence_Span_From22'?: string | null;
|
|
1901
2003
|
/**
|
|
1902
2004
|
*
|
|
1903
2005
|
* @type {string}
|
|
1904
2006
|
* @memberof ClaimBatch
|
|
1905
2007
|
*/
|
|
1906
|
-
'
|
|
2008
|
+
'occurrence_Span_From23'?: string | null;
|
|
1907
2009
|
/**
|
|
1908
2010
|
*
|
|
1909
2011
|
* @type {string}
|
|
1910
2012
|
* @memberof ClaimBatch
|
|
1911
2013
|
*/
|
|
1912
|
-
'
|
|
2014
|
+
'occurrence_Span_From24'?: string | null;
|
|
1913
2015
|
/**
|
|
1914
2016
|
*
|
|
1915
2017
|
* @type {string}
|
|
1916
2018
|
* @memberof ClaimBatch
|
|
1917
2019
|
*/
|
|
1918
|
-
'
|
|
2020
|
+
'occurrence_Span_From3'?: string | null;
|
|
1919
2021
|
/**
|
|
1920
2022
|
*
|
|
1921
2023
|
* @type {string}
|
|
1922
2024
|
* @memberof ClaimBatch
|
|
1923
2025
|
*/
|
|
1924
|
-
'
|
|
2026
|
+
'occurrence_Span_From4'?: string | null;
|
|
1925
2027
|
/**
|
|
1926
2028
|
*
|
|
1927
2029
|
* @type {string}
|
|
1928
2030
|
* @memberof ClaimBatch
|
|
1929
2031
|
*/
|
|
1930
|
-
'
|
|
2032
|
+
'occurrence_Span_From5'?: string | null;
|
|
1931
2033
|
/**
|
|
1932
2034
|
*
|
|
1933
2035
|
* @type {string}
|
|
1934
2036
|
* @memberof ClaimBatch
|
|
1935
2037
|
*/
|
|
1936
|
-
'
|
|
2038
|
+
'occurrence_Span_From6'?: string | null;
|
|
1937
2039
|
/**
|
|
1938
2040
|
*
|
|
1939
2041
|
* @type {string}
|
|
1940
2042
|
* @memberof ClaimBatch
|
|
1941
2043
|
*/
|
|
1942
|
-
'
|
|
2044
|
+
'occurrence_Span_From7'?: string | null;
|
|
1943
2045
|
/**
|
|
1944
2046
|
*
|
|
1945
2047
|
* @type {string}
|
|
1946
2048
|
* @memberof ClaimBatch
|
|
1947
2049
|
*/
|
|
1948
|
-
'
|
|
2050
|
+
'occurrence_Span_From8'?: string | null;
|
|
1949
2051
|
/**
|
|
1950
2052
|
*
|
|
1951
2053
|
* @type {string}
|
|
1952
2054
|
* @memberof ClaimBatch
|
|
1953
2055
|
*/
|
|
1954
|
-
'
|
|
2056
|
+
'occurrence_Span_From9'?: string | null;
|
|
1955
2057
|
/**
|
|
1956
|
-
*
|
|
2058
|
+
* The occurrence span thru for this claim.
|
|
1957
2059
|
* @type {string}
|
|
1958
2060
|
* @memberof ClaimBatch
|
|
1959
2061
|
*/
|
|
1960
|
-
'
|
|
2062
|
+
'occurrence_Span_Thru'?: string | null;
|
|
1961
2063
|
/**
|
|
1962
2064
|
*
|
|
1963
2065
|
* @type {string}
|
|
1964
2066
|
* @memberof ClaimBatch
|
|
1965
2067
|
*/
|
|
1966
|
-
'
|
|
2068
|
+
'occurrence_Span_Thru10'?: string | null;
|
|
1967
2069
|
/**
|
|
1968
2070
|
*
|
|
1969
2071
|
* @type {string}
|
|
1970
2072
|
* @memberof ClaimBatch
|
|
1971
2073
|
*/
|
|
1972
|
-
'
|
|
2074
|
+
'occurrence_Span_Thru11'?: string | null;
|
|
1973
2075
|
/**
|
|
1974
2076
|
*
|
|
1975
2077
|
* @type {string}
|
|
1976
2078
|
* @memberof ClaimBatch
|
|
1977
2079
|
*/
|
|
1978
|
-
'
|
|
2080
|
+
'occurrence_Span_Thru12'?: string | null;
|
|
1979
2081
|
/**
|
|
1980
2082
|
*
|
|
1981
2083
|
* @type {string}
|
|
1982
2084
|
* @memberof ClaimBatch
|
|
1983
2085
|
*/
|
|
1984
|
-
'
|
|
2086
|
+
'occurrence_Span_Thru13'?: string | null;
|
|
1985
2087
|
/**
|
|
1986
2088
|
*
|
|
1987
2089
|
* @type {string}
|
|
1988
2090
|
* @memberof ClaimBatch
|
|
1989
2091
|
*/
|
|
1990
|
-
'
|
|
2092
|
+
'occurrence_Span_Thru14'?: string | null;
|
|
1991
2093
|
/**
|
|
1992
2094
|
*
|
|
1993
2095
|
* @type {string}
|
|
1994
2096
|
* @memberof ClaimBatch
|
|
1995
2097
|
*/
|
|
1996
|
-
'
|
|
2098
|
+
'occurrence_Span_Thru15'?: string | null;
|
|
1997
2099
|
/**
|
|
1998
2100
|
*
|
|
1999
2101
|
* @type {string}
|
|
2000
2102
|
* @memberof ClaimBatch
|
|
2001
2103
|
*/
|
|
2002
|
-
'
|
|
2104
|
+
'occurrence_Span_Thru16'?: string | null;
|
|
2003
2105
|
/**
|
|
2004
2106
|
*
|
|
2005
2107
|
* @type {string}
|
|
2006
2108
|
* @memberof ClaimBatch
|
|
2007
2109
|
*/
|
|
2008
|
-
'
|
|
2110
|
+
'occurrence_Span_Thru17'?: string | null;
|
|
2009
2111
|
/**
|
|
2010
2112
|
*
|
|
2011
2113
|
* @type {string}
|
|
2012
2114
|
* @memberof ClaimBatch
|
|
2013
2115
|
*/
|
|
2014
|
-
'
|
|
2116
|
+
'occurrence_Span_Thru18'?: string | null;
|
|
2015
2117
|
/**
|
|
2016
2118
|
*
|
|
2017
2119
|
* @type {string}
|
|
2018
2120
|
* @memberof ClaimBatch
|
|
2019
2121
|
*/
|
|
2020
|
-
'
|
|
2122
|
+
'occurrence_Span_Thru19'?: string | null;
|
|
2021
2123
|
/**
|
|
2022
2124
|
*
|
|
2023
2125
|
* @type {string}
|
|
2024
2126
|
* @memberof ClaimBatch
|
|
2025
2127
|
*/
|
|
2026
|
-
'
|
|
2128
|
+
'occurrence_Span_Thru2'?: string | null;
|
|
2027
2129
|
/**
|
|
2028
2130
|
*
|
|
2029
2131
|
* @type {string}
|
|
2030
2132
|
* @memberof ClaimBatch
|
|
2031
2133
|
*/
|
|
2032
|
-
'
|
|
2134
|
+
'occurrence_Span_Thru20'?: string | null;
|
|
2033
2135
|
/**
|
|
2034
2136
|
*
|
|
2035
2137
|
* @type {string}
|
|
2036
2138
|
* @memberof ClaimBatch
|
|
2037
2139
|
*/
|
|
2038
|
-
'
|
|
2140
|
+
'occurrence_Span_Thru21'?: string | null;
|
|
2039
2141
|
/**
|
|
2040
2142
|
*
|
|
2041
2143
|
* @type {string}
|
|
2042
2144
|
* @memberof ClaimBatch
|
|
2043
2145
|
*/
|
|
2044
|
-
'
|
|
2146
|
+
'occurrence_Span_Thru22'?: string | null;
|
|
2045
2147
|
/**
|
|
2046
2148
|
*
|
|
2047
2149
|
* @type {string}
|
|
2048
2150
|
* @memberof ClaimBatch
|
|
2049
2151
|
*/
|
|
2050
|
-
'
|
|
2152
|
+
'occurrence_Span_Thru23'?: string | null;
|
|
2051
2153
|
/**
|
|
2052
2154
|
*
|
|
2053
2155
|
* @type {string}
|
|
2054
2156
|
* @memberof ClaimBatch
|
|
2055
2157
|
*/
|
|
2056
|
-
'
|
|
2158
|
+
'occurrence_Span_Thru24'?: string | null;
|
|
2057
2159
|
/**
|
|
2058
2160
|
*
|
|
2059
2161
|
* @type {string}
|
|
2060
2162
|
* @memberof ClaimBatch
|
|
2061
2163
|
*/
|
|
2062
|
-
'
|
|
2164
|
+
'occurrence_Span_Thru3'?: string | null;
|
|
2063
2165
|
/**
|
|
2064
2166
|
*
|
|
2065
2167
|
* @type {string}
|
|
2066
2168
|
* @memberof ClaimBatch
|
|
2067
2169
|
*/
|
|
2068
|
-
'
|
|
2170
|
+
'occurrence_Span_Thru4'?: string | null;
|
|
2069
2171
|
/**
|
|
2070
2172
|
*
|
|
2071
2173
|
* @type {string}
|
|
2072
2174
|
* @memberof ClaimBatch
|
|
2073
2175
|
*/
|
|
2074
|
-
'
|
|
2176
|
+
'occurrence_Span_Thru5'?: string | null;
|
|
2075
2177
|
/**
|
|
2076
2178
|
*
|
|
2077
2179
|
* @type {string}
|
|
2078
2180
|
* @memberof ClaimBatch
|
|
2079
2181
|
*/
|
|
2080
|
-
'
|
|
2182
|
+
'occurrence_Span_Thru6'?: string | null;
|
|
2081
2183
|
/**
|
|
2082
2184
|
*
|
|
2083
2185
|
* @type {string}
|
|
2084
2186
|
* @memberof ClaimBatch
|
|
2085
2187
|
*/
|
|
2086
|
-
'
|
|
2188
|
+
'occurrence_Span_Thru7'?: string | null;
|
|
2087
2189
|
/**
|
|
2088
2190
|
*
|
|
2089
2191
|
* @type {string}
|
|
2090
2192
|
* @memberof ClaimBatch
|
|
2091
2193
|
*/
|
|
2092
|
-
'
|
|
2194
|
+
'occurrence_Span_Thru8'?: string | null;
|
|
2093
2195
|
/**
|
|
2094
2196
|
*
|
|
2095
2197
|
* @type {string}
|
|
2096
2198
|
* @memberof ClaimBatch
|
|
2097
2199
|
*/
|
|
2098
|
-
'
|
|
2200
|
+
'occurrence_Span_Thru9'?: string | null;
|
|
2099
2201
|
/**
|
|
2100
|
-
*
|
|
2202
|
+
* Notes the date of the original illness if this claim is associated to that illness.
|
|
2101
2203
|
* @type {string}
|
|
2102
2204
|
* @memberof ClaimBatch
|
|
2103
2205
|
*/
|
|
2104
|
-
'
|
|
2206
|
+
'onset_Similar_Illness_Date'?: string | null;
|
|
2105
2207
|
/**
|
|
2106
|
-
*
|
|
2107
|
-
* @type {
|
|
2208
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2209
|
+
* @type {string}
|
|
2108
2210
|
* @memberof ClaimBatch
|
|
2109
2211
|
*/
|
|
2110
|
-
'
|
|
2212
|
+
'oper_Provider_Address'?: string | null;
|
|
2111
2213
|
/**
|
|
2112
|
-
*
|
|
2214
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2113
2215
|
* @type {string}
|
|
2114
2216
|
* @memberof ClaimBatch
|
|
2115
2217
|
*/
|
|
2116
|
-
'
|
|
2218
|
+
'oper_Provider_Address2'?: string | null;
|
|
2117
2219
|
/**
|
|
2118
|
-
*
|
|
2220
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2119
2221
|
* @type {string}
|
|
2120
2222
|
* @memberof ClaimBatch
|
|
2121
2223
|
*/
|
|
2122
|
-
'
|
|
2224
|
+
'oper_Provider_City'?: string | null;
|
|
2123
2225
|
/**
|
|
2124
|
-
*
|
|
2226
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2125
2227
|
* @type {string}
|
|
2126
2228
|
* @memberof ClaimBatch
|
|
2127
2229
|
*/
|
|
2128
|
-
'
|
|
2230
|
+
'oper_Provider_Federal_ID'?: string | null;
|
|
2129
2231
|
/**
|
|
2130
|
-
*
|
|
2131
|
-
* @type {
|
|
2232
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2233
|
+
* @type {string}
|
|
2132
2234
|
* @memberof ClaimBatch
|
|
2133
2235
|
*/
|
|
2134
|
-
'
|
|
2236
|
+
'oper_Provider_First_Name'?: string | null;
|
|
2135
2237
|
/**
|
|
2136
|
-
*
|
|
2238
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2137
2239
|
* @type {string}
|
|
2138
2240
|
* @memberof ClaimBatch
|
|
2139
2241
|
*/
|
|
2140
|
-
'
|
|
2242
|
+
'oper_Provider_Last_Name'?: string | null;
|
|
2141
2243
|
/**
|
|
2142
|
-
*
|
|
2244
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2143
2245
|
* @type {string}
|
|
2144
2246
|
* @memberof ClaimBatch
|
|
2145
2247
|
*/
|
|
2146
|
-
'
|
|
2248
|
+
'oper_Provider_MAID'?: string | null;
|
|
2147
2249
|
/**
|
|
2148
|
-
*
|
|
2250
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2149
2251
|
* @type {string}
|
|
2150
2252
|
* @memberof ClaimBatch
|
|
2151
2253
|
*/
|
|
2152
|
-
'
|
|
2254
|
+
'oper_Provider_NPI'?: string | null;
|
|
2153
2255
|
/**
|
|
2154
|
-
*
|
|
2256
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2155
2257
|
* @type {string}
|
|
2156
2258
|
* @memberof ClaimBatch
|
|
2157
2259
|
*/
|
|
2158
|
-
'
|
|
2260
|
+
'oper_Provider_Org_Name'?: string | null;
|
|
2159
2261
|
/**
|
|
2160
|
-
*
|
|
2262
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2161
2263
|
* @type {string}
|
|
2162
2264
|
* @memberof ClaimBatch
|
|
2163
2265
|
*/
|
|
2164
|
-
'
|
|
2266
|
+
'oper_Provider_Phone'?: string | null;
|
|
2165
2267
|
/**
|
|
2166
|
-
*
|
|
2268
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2167
2269
|
* @type {string}
|
|
2168
2270
|
* @memberof ClaimBatch
|
|
2169
2271
|
*/
|
|
2170
|
-
'
|
|
2272
|
+
'oper_Provider_State'?: string | null;
|
|
2171
2273
|
/**
|
|
2172
|
-
*
|
|
2274
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2173
2275
|
* @type {string}
|
|
2174
2276
|
* @memberof ClaimBatch
|
|
2175
2277
|
*/
|
|
2176
|
-
'
|
|
2278
|
+
'oper_Provider_Taxonomy'?: string | null;
|
|
2177
2279
|
/**
|
|
2178
|
-
*
|
|
2280
|
+
* The operating physician information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2179
2281
|
* @type {string}
|
|
2180
2282
|
* @memberof ClaimBatch
|
|
2181
2283
|
*/
|
|
2182
|
-
'
|
|
2284
|
+
'oper_Provider_Zip'?: string | null;
|
|
2183
2285
|
/**
|
|
2184
|
-
*
|
|
2185
|
-
* @type {
|
|
2286
|
+
* When this flag is checked, it indicates the dental claim is for orthodontics. 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.
|
|
2287
|
+
* @type {boolean}
|
|
2186
2288
|
* @memberof ClaimBatch
|
|
2187
2289
|
*/
|
|
2188
|
-
'
|
|
2290
|
+
'orthodontics_Treatment': boolean;
|
|
2189
2291
|
/**
|
|
2190
|
-
*
|
|
2191
|
-
* @type {
|
|
2292
|
+
* Indicates if other insurance is applicable on this claim. This indicator unlocks COB amount fields on the ClaimDetail (service line). 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.
|
|
2293
|
+
* @type {boolean}
|
|
2192
2294
|
* @memberof ClaimBatch
|
|
2193
2295
|
*/
|
|
2194
|
-
'
|
|
2296
|
+
'other_Insurance': boolean;
|
|
2297
|
+
/**
|
|
2298
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2299
|
+
* @type {string}
|
|
2300
|
+
* @memberof ClaimBatch
|
|
2301
|
+
*/
|
|
2302
|
+
'other_Procedure_Code1'?: string | null;
|
|
2303
|
+
/**
|
|
2304
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2305
|
+
* @type {string}
|
|
2306
|
+
* @memberof ClaimBatch
|
|
2307
|
+
*/
|
|
2308
|
+
'other_Procedure_Code10'?: string | null;
|
|
2309
|
+
/**
|
|
2310
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2311
|
+
* @type {string}
|
|
2312
|
+
* @memberof ClaimBatch
|
|
2313
|
+
*/
|
|
2314
|
+
'other_Procedure_Code11'?: string | null;
|
|
2315
|
+
/**
|
|
2316
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2317
|
+
* @type {string}
|
|
2318
|
+
* @memberof ClaimBatch
|
|
2319
|
+
*/
|
|
2320
|
+
'other_Procedure_Code12'?: string | null;
|
|
2321
|
+
/**
|
|
2322
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2323
|
+
* @type {string}
|
|
2324
|
+
* @memberof ClaimBatch
|
|
2325
|
+
*/
|
|
2326
|
+
'other_Procedure_Code13'?: string | null;
|
|
2327
|
+
/**
|
|
2328
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2329
|
+
* @type {string}
|
|
2330
|
+
* @memberof ClaimBatch
|
|
2331
|
+
*/
|
|
2332
|
+
'other_Procedure_Code14'?: string | null;
|
|
2333
|
+
/**
|
|
2334
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2335
|
+
* @type {string}
|
|
2336
|
+
* @memberof ClaimBatch
|
|
2337
|
+
*/
|
|
2338
|
+
'other_Procedure_Code15'?: string | null;
|
|
2339
|
+
/**
|
|
2340
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2341
|
+
* @type {string}
|
|
2342
|
+
* @memberof ClaimBatch
|
|
2343
|
+
*/
|
|
2344
|
+
'other_Procedure_Code16'?: string | null;
|
|
2345
|
+
/**
|
|
2346
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2347
|
+
* @type {string}
|
|
2348
|
+
* @memberof ClaimBatch
|
|
2349
|
+
*/
|
|
2350
|
+
'other_Procedure_Code17'?: string | null;
|
|
2351
|
+
/**
|
|
2352
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2353
|
+
* @type {string}
|
|
2354
|
+
* @memberof ClaimBatch
|
|
2355
|
+
*/
|
|
2356
|
+
'other_Procedure_Code18'?: string | null;
|
|
2357
|
+
/**
|
|
2358
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2359
|
+
* @type {string}
|
|
2360
|
+
* @memberof ClaimBatch
|
|
2361
|
+
*/
|
|
2362
|
+
'other_Procedure_Code19'?: string | null;
|
|
2363
|
+
/**
|
|
2364
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2365
|
+
* @type {string}
|
|
2366
|
+
* @memberof ClaimBatch
|
|
2367
|
+
*/
|
|
2368
|
+
'other_Procedure_Code2'?: string | null;
|
|
2369
|
+
/**
|
|
2370
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2371
|
+
* @type {string}
|
|
2372
|
+
* @memberof ClaimBatch
|
|
2373
|
+
*/
|
|
2374
|
+
'other_Procedure_Code20'?: string | null;
|
|
2375
|
+
/**
|
|
2376
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2377
|
+
* @type {string}
|
|
2378
|
+
* @memberof ClaimBatch
|
|
2379
|
+
*/
|
|
2380
|
+
'other_Procedure_Code21'?: string | null;
|
|
2381
|
+
/**
|
|
2382
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2383
|
+
* @type {string}
|
|
2384
|
+
* @memberof ClaimBatch
|
|
2385
|
+
*/
|
|
2386
|
+
'other_Procedure_Code22'?: string | null;
|
|
2387
|
+
/**
|
|
2388
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2389
|
+
* @type {string}
|
|
2390
|
+
* @memberof ClaimBatch
|
|
2391
|
+
*/
|
|
2392
|
+
'other_Procedure_Code23'?: string | null;
|
|
2393
|
+
/**
|
|
2394
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2395
|
+
* @type {string}
|
|
2396
|
+
* @memberof ClaimBatch
|
|
2397
|
+
*/
|
|
2398
|
+
'other_Procedure_Code3'?: string | null;
|
|
2399
|
+
/**
|
|
2400
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2401
|
+
* @type {string}
|
|
2402
|
+
* @memberof ClaimBatch
|
|
2403
|
+
*/
|
|
2404
|
+
'other_Procedure_Code4'?: string | null;
|
|
2405
|
+
/**
|
|
2406
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2407
|
+
* @type {string}
|
|
2408
|
+
* @memberof ClaimBatch
|
|
2409
|
+
*/
|
|
2410
|
+
'other_Procedure_Code5'?: string | null;
|
|
2411
|
+
/**
|
|
2412
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2413
|
+
* @type {string}
|
|
2414
|
+
* @memberof ClaimBatch
|
|
2415
|
+
*/
|
|
2416
|
+
'other_Procedure_Code6'?: string | null;
|
|
2417
|
+
/**
|
|
2418
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2419
|
+
* @type {string}
|
|
2420
|
+
* @memberof ClaimBatch
|
|
2421
|
+
*/
|
|
2422
|
+
'other_Procedure_Code7'?: string | null;
|
|
2423
|
+
/**
|
|
2424
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2425
|
+
* @type {string}
|
|
2426
|
+
* @memberof ClaimBatch
|
|
2427
|
+
*/
|
|
2428
|
+
'other_Procedure_Code8'?: string | null;
|
|
2429
|
+
/**
|
|
2430
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2431
|
+
* @type {string}
|
|
2432
|
+
* @memberof ClaimBatch
|
|
2433
|
+
*/
|
|
2434
|
+
'other_Procedure_Code9'?: string | null;
|
|
2435
|
+
/**
|
|
2436
|
+
* Date associated with the additional procedure code.
|
|
2437
|
+
* @type {string}
|
|
2438
|
+
* @memberof ClaimBatch
|
|
2439
|
+
*/
|
|
2440
|
+
'other_Procedure_Date1'?: string | null;
|
|
2441
|
+
/**
|
|
2442
|
+
* Date associated with the additional procedure code.
|
|
2443
|
+
* @type {string}
|
|
2444
|
+
* @memberof ClaimBatch
|
|
2445
|
+
*/
|
|
2446
|
+
'other_Procedure_Date10'?: string | null;
|
|
2447
|
+
/**
|
|
2448
|
+
* Date associated with the additional procedure code.
|
|
2449
|
+
* @type {string}
|
|
2450
|
+
* @memberof ClaimBatch
|
|
2451
|
+
*/
|
|
2452
|
+
'other_Procedure_Date11'?: string | null;
|
|
2453
|
+
/**
|
|
2454
|
+
* Date associated with the additional procedure code.
|
|
2455
|
+
* @type {string}
|
|
2456
|
+
* @memberof ClaimBatch
|
|
2457
|
+
*/
|
|
2458
|
+
'other_Procedure_Date12'?: string | null;
|
|
2459
|
+
/**
|
|
2460
|
+
* Date associated with the additional procedure code.
|
|
2461
|
+
* @type {string}
|
|
2462
|
+
* @memberof ClaimBatch
|
|
2463
|
+
*/
|
|
2464
|
+
'other_Procedure_Date13'?: string | null;
|
|
2465
|
+
/**
|
|
2466
|
+
* Date associated with the additional procedure code.
|
|
2467
|
+
* @type {string}
|
|
2468
|
+
* @memberof ClaimBatch
|
|
2469
|
+
*/
|
|
2470
|
+
'other_Procedure_Date14'?: string | null;
|
|
2471
|
+
/**
|
|
2472
|
+
* Date associated with the additional procedure code.
|
|
2473
|
+
* @type {string}
|
|
2474
|
+
* @memberof ClaimBatch
|
|
2475
|
+
*/
|
|
2476
|
+
'other_Procedure_Date15'?: string | null;
|
|
2477
|
+
/**
|
|
2478
|
+
* Date associated with the additional procedure code.
|
|
2479
|
+
* @type {string}
|
|
2480
|
+
* @memberof ClaimBatch
|
|
2481
|
+
*/
|
|
2482
|
+
'other_Procedure_Date16'?: string | null;
|
|
2483
|
+
/**
|
|
2484
|
+
* Date associated with the additional procedure code.
|
|
2485
|
+
* @type {string}
|
|
2486
|
+
* @memberof ClaimBatch
|
|
2487
|
+
*/
|
|
2488
|
+
'other_Procedure_Date17'?: string | null;
|
|
2489
|
+
/**
|
|
2490
|
+
* Date associated with the additional procedure code.
|
|
2491
|
+
* @type {string}
|
|
2492
|
+
* @memberof ClaimBatch
|
|
2493
|
+
*/
|
|
2494
|
+
'other_Procedure_Date18'?: string | null;
|
|
2495
|
+
/**
|
|
2496
|
+
* Date associated with the additional procedure code.
|
|
2497
|
+
* @type {string}
|
|
2498
|
+
* @memberof ClaimBatch
|
|
2499
|
+
*/
|
|
2500
|
+
'other_Procedure_Date19'?: string | null;
|
|
2501
|
+
/**
|
|
2502
|
+
* Date associated with the additional procedure code.
|
|
2503
|
+
* @type {string}
|
|
2504
|
+
* @memberof ClaimBatch
|
|
2505
|
+
*/
|
|
2506
|
+
'other_Procedure_Date2'?: string | null;
|
|
2507
|
+
/**
|
|
2508
|
+
* Date associated with the additional procedure code.
|
|
2509
|
+
* @type {string}
|
|
2510
|
+
* @memberof ClaimBatch
|
|
2511
|
+
*/
|
|
2512
|
+
'other_Procedure_Date20'?: string | null;
|
|
2513
|
+
/**
|
|
2514
|
+
* Date associated with the additional procedure code.
|
|
2515
|
+
* @type {string}
|
|
2516
|
+
* @memberof ClaimBatch
|
|
2517
|
+
*/
|
|
2518
|
+
'other_Procedure_Date21'?: string | null;
|
|
2519
|
+
/**
|
|
2520
|
+
* Date associated with the additional procedure code.
|
|
2521
|
+
* @type {string}
|
|
2522
|
+
* @memberof ClaimBatch
|
|
2523
|
+
*/
|
|
2524
|
+
'other_Procedure_Date22'?: string | null;
|
|
2525
|
+
/**
|
|
2526
|
+
* Date associated with the additional procedure code.
|
|
2527
|
+
* @type {string}
|
|
2528
|
+
* @memberof ClaimBatch
|
|
2529
|
+
*/
|
|
2530
|
+
'other_Procedure_Date23'?: string | null;
|
|
2531
|
+
/**
|
|
2532
|
+
* Date associated with the additional procedure code.
|
|
2533
|
+
* @type {string}
|
|
2534
|
+
* @memberof ClaimBatch
|
|
2535
|
+
*/
|
|
2536
|
+
'other_Procedure_Date3'?: string | null;
|
|
2537
|
+
/**
|
|
2538
|
+
* Date associated with the additional procedure code.
|
|
2539
|
+
* @type {string}
|
|
2540
|
+
* @memberof ClaimBatch
|
|
2541
|
+
*/
|
|
2542
|
+
'other_Procedure_Date4'?: string | null;
|
|
2543
|
+
/**
|
|
2544
|
+
* Date associated with the additional procedure code.
|
|
2545
|
+
* @type {string}
|
|
2546
|
+
* @memberof ClaimBatch
|
|
2547
|
+
*/
|
|
2548
|
+
'other_Procedure_Date5'?: string | null;
|
|
2549
|
+
/**
|
|
2550
|
+
* Date associated with the additional procedure code.
|
|
2551
|
+
* @type {string}
|
|
2552
|
+
* @memberof ClaimBatch
|
|
2553
|
+
*/
|
|
2554
|
+
'other_Procedure_Date6'?: string | null;
|
|
2555
|
+
/**
|
|
2556
|
+
* Date associated with the additional procedure code.
|
|
2557
|
+
* @type {string}
|
|
2558
|
+
* @memberof ClaimBatch
|
|
2559
|
+
*/
|
|
2560
|
+
'other_Procedure_Date7'?: string | null;
|
|
2561
|
+
/**
|
|
2562
|
+
* Date associated with the additional procedure code.
|
|
2563
|
+
* @type {string}
|
|
2564
|
+
* @memberof ClaimBatch
|
|
2565
|
+
*/
|
|
2566
|
+
'other_Procedure_Date8'?: string | null;
|
|
2567
|
+
/**
|
|
2568
|
+
* Date associated with the additional procedure code.
|
|
2569
|
+
* @type {string}
|
|
2570
|
+
* @memberof ClaimBatch
|
|
2571
|
+
*/
|
|
2572
|
+
'other_Procedure_Date9'?: string | null;
|
|
2573
|
+
/**
|
|
2574
|
+
* No longer in use.
|
|
2575
|
+
* @type {string}
|
|
2576
|
+
* @memberof ClaimBatch
|
|
2577
|
+
*/
|
|
2578
|
+
'override'?: string | null;
|
|
2579
|
+
/**
|
|
2580
|
+
* No longer in use.
|
|
2581
|
+
* @type {string}
|
|
2582
|
+
* @memberof ClaimBatch
|
|
2583
|
+
*/
|
|
2584
|
+
'override_Date'?: string | null;
|
|
2585
|
+
/**
|
|
2586
|
+
* This indicator lets the system know that the front end user has assigned this network ID and not 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.
|
|
2587
|
+
* @type {boolean}
|
|
2588
|
+
* @memberof ClaimBatch
|
|
2589
|
+
*/
|
|
2590
|
+
'override_Network_ID': boolean;
|
|
2591
|
+
/**
|
|
2592
|
+
* Users can choose the payor from the More Information screen and this flag prevents adjudication from using the expected payor. 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.
|
|
2593
|
+
* @type {boolean}
|
|
2594
|
+
* @memberof ClaimBatch
|
|
2595
|
+
*/
|
|
2596
|
+
'override_Payor_Account': boolean;
|
|
2597
|
+
/**
|
|
2598
|
+
* No longer in use.
|
|
2599
|
+
* @type {string}
|
|
2600
|
+
* @memberof ClaimBatch
|
|
2601
|
+
*/
|
|
2602
|
+
'override_User'?: string | null;
|
|
2603
|
+
/**
|
|
2604
|
+
* This will identify if this is a partial disability payment. Partial Disability payments have additional tax and payment rules applied 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.
|
|
2605
|
+
* @type {boolean}
|
|
2606
|
+
* @memberof ClaimBatch
|
|
2607
|
+
*/
|
|
2608
|
+
'partial_Disability': boolean;
|
|
2609
|
+
/**
|
|
2610
|
+
* For the servicing provider, this indicates the patient account identifier in their practice management system.
|
|
2611
|
+
* @type {string}
|
|
2612
|
+
* @memberof ClaimBatch
|
|
2613
|
+
*/
|
|
2614
|
+
'patient_Account'?: string | null;
|
|
2615
|
+
/**
|
|
2616
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2617
|
+
* @type {string}
|
|
2618
|
+
* @memberof ClaimBatch
|
|
2619
|
+
*/
|
|
2620
|
+
'patient_Address'?: string | null;
|
|
2621
|
+
/**
|
|
2622
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2623
|
+
* @type {string}
|
|
2624
|
+
* @memberof ClaimBatch
|
|
2625
|
+
*/
|
|
2626
|
+
'patient_Address2'?: string | null;
|
|
2627
|
+
/**
|
|
2628
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2629
|
+
* @type {string}
|
|
2630
|
+
* @memberof ClaimBatch
|
|
2631
|
+
*/
|
|
2632
|
+
'patient_Birth_Date'?: string | null;
|
|
2633
|
+
/**
|
|
2634
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2635
|
+
* @type {string}
|
|
2636
|
+
* @memberof ClaimBatch
|
|
2637
|
+
*/
|
|
2638
|
+
'patient_City'?: string | null;
|
|
2639
|
+
/**
|
|
2640
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2641
|
+
* @type {string}
|
|
2642
|
+
* @memberof ClaimBatch
|
|
2643
|
+
*/
|
|
2644
|
+
'patient_First_Name'?: string | null;
|
|
2645
|
+
/**
|
|
2646
|
+
* For EDI submissions, this holds the Insured information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2647
|
+
* @type {string}
|
|
2648
|
+
* @memberof ClaimBatch
|
|
2649
|
+
*/
|
|
2650
|
+
'patient_ID'?: string | null;
|
|
2651
|
+
/**
|
|
2652
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2653
|
+
* @type {string}
|
|
2654
|
+
* @memberof ClaimBatch
|
|
2655
|
+
*/
|
|
2656
|
+
'patient_Last_Name'?: string | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2659
|
+
* @type {string}
|
|
2660
|
+
* @memberof ClaimBatch
|
|
2661
|
+
*/
|
|
2662
|
+
'patient_Phone'?: string | null;
|
|
2663
|
+
/**
|
|
2664
|
+
* Reason for Visit code on Diagnosis Code 1
|
|
2665
|
+
* @type {string}
|
|
2666
|
+
* @memberof ClaimBatch
|
|
2667
|
+
*/
|
|
2668
|
+
'patient_Reason_for_Visit_Diagnostic_Code1'?: string | null;
|
|
2669
|
+
/**
|
|
2670
|
+
* Reason for Visit code on Diagnosis Code 2
|
|
2671
|
+
* @type {string}
|
|
2672
|
+
* @memberof ClaimBatch
|
|
2673
|
+
*/
|
|
2674
|
+
'patient_Reason_for_Visit_Diagnostic_Code2'?: string | null;
|
|
2675
|
+
/**
|
|
2676
|
+
* Reason for Visit code on Diagnosis Code 3
|
|
2677
|
+
* @type {string}
|
|
2678
|
+
* @memberof ClaimBatch
|
|
2679
|
+
*/
|
|
2680
|
+
'patient_Reason_for_Visit_Diagnostic_Code3'?: string | null;
|
|
2681
|
+
/**
|
|
2682
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2683
|
+
* @type {string}
|
|
2684
|
+
* @memberof ClaimBatch
|
|
2685
|
+
*/
|
|
2686
|
+
'patient_Relationship'?: string | null;
|
|
2687
|
+
/**
|
|
2688
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2689
|
+
* @type {string}
|
|
2690
|
+
* @memberof ClaimBatch
|
|
2691
|
+
*/
|
|
2692
|
+
'patient_Sex'?: string | null;
|
|
2693
|
+
/**
|
|
2694
|
+
* Indicates if the patient signature has been collected. 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.
|
|
2695
|
+
* @type {boolean}
|
|
2696
|
+
* @memberof ClaimBatch
|
|
2697
|
+
*/
|
|
2698
|
+
'patient_Signature': boolean;
|
|
2699
|
+
/**
|
|
2700
|
+
* Indicates the date of the patient signature being collected.
|
|
2701
|
+
* @type {string}
|
|
2702
|
+
* @memberof ClaimBatch
|
|
2703
|
+
*/
|
|
2704
|
+
'patient_Signature_Date'?: string | null;
|
|
2705
|
+
/**
|
|
2706
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2707
|
+
* @type {string}
|
|
2708
|
+
* @memberof ClaimBatch
|
|
2709
|
+
*/
|
|
2710
|
+
'patient_State'?: string | null;
|
|
2711
|
+
/**
|
|
2712
|
+
* For institutional Claims, holds the Patient Status.
|
|
2713
|
+
* @type {string}
|
|
2714
|
+
* @memberof ClaimBatch
|
|
2715
|
+
*/
|
|
2716
|
+
'patient_Status'?: string | null;
|
|
2717
|
+
/**
|
|
2718
|
+
* For EDI submissions, this holds the Patient information so it can be tracked via trigger to the ClaimPreBatch table.
|
|
2719
|
+
* @type {string}
|
|
2720
|
+
* @memberof ClaimBatch
|
|
2721
|
+
*/
|
|
2722
|
+
'patient_Zip'?: string | null;
|
|
2723
|
+
/**
|
|
2724
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2725
|
+
* @type {string}
|
|
2726
|
+
* @memberof ClaimBatch
|
|
2727
|
+
*/
|
|
2728
|
+
'payToPlan_Address'?: string | null;
|
|
2729
|
+
/**
|
|
2730
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2731
|
+
* @type {string}
|
|
2732
|
+
* @memberof ClaimBatch
|
|
2733
|
+
*/
|
|
2734
|
+
'payToPlan_Address2'?: string | null;
|
|
2735
|
+
/**
|
|
2736
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2737
|
+
* @type {string}
|
|
2738
|
+
* @memberof ClaimBatch
|
|
2739
|
+
*/
|
|
2740
|
+
'payToPlan_City'?: string | null;
|
|
2741
|
+
/**
|
|
2742
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2743
|
+
* @type {string}
|
|
2744
|
+
* @memberof ClaimBatch
|
|
2745
|
+
*/
|
|
2746
|
+
'payToPlan_Claim_Office_Num'?: string | null;
|
|
2747
|
+
/**
|
|
2748
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2749
|
+
* @type {string}
|
|
2750
|
+
* @memberof ClaimBatch
|
|
2751
|
+
*/
|
|
2752
|
+
'payToPlan_ID'?: string | null;
|
|
2753
|
+
/**
|
|
2754
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2755
|
+
* @type {string}
|
|
2756
|
+
* @memberof ClaimBatch
|
|
2757
|
+
*/
|
|
2758
|
+
'payToPlan_NAIC'?: string | null;
|
|
2759
|
+
/**
|
|
2760
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2761
|
+
* @type {string}
|
|
2762
|
+
* @memberof ClaimBatch
|
|
2763
|
+
*/
|
|
2764
|
+
'payToPlan_Name'?: string | null;
|
|
2765
|
+
/**
|
|
2766
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2767
|
+
* @type {string}
|
|
2768
|
+
* @memberof ClaimBatch
|
|
2769
|
+
*/
|
|
2770
|
+
'payToPlan_State'?: string | null;
|
|
2771
|
+
/**
|
|
2772
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2773
|
+
* @type {string}
|
|
2774
|
+
* @memberof ClaimBatch
|
|
2775
|
+
*/
|
|
2776
|
+
'payToPlan_Zip'?: string | null;
|
|
2777
|
+
/**
|
|
2778
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2779
|
+
* @type {string}
|
|
2780
|
+
* @memberof ClaimBatch
|
|
2781
|
+
*/
|
|
2782
|
+
'payTo_Address'?: string | null;
|
|
2783
|
+
/**
|
|
2784
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2785
|
+
* @type {string}
|
|
2786
|
+
* @memberof ClaimBatch
|
|
2787
|
+
*/
|
|
2788
|
+
'payTo_Address2'?: string | null;
|
|
2789
|
+
/**
|
|
2790
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2791
|
+
* @type {string}
|
|
2792
|
+
* @memberof ClaimBatch
|
|
2793
|
+
*/
|
|
2794
|
+
'payTo_City'?: string | null;
|
|
2795
|
+
/**
|
|
2796
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2797
|
+
* @type {string}
|
|
2798
|
+
* @memberof ClaimBatch
|
|
2799
|
+
*/
|
|
2800
|
+
'payTo_State'?: string | null;
|
|
2801
|
+
/**
|
|
2802
|
+
* The Pay To information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2803
|
+
* @type {string}
|
|
2804
|
+
* @memberof ClaimBatch
|
|
2805
|
+
*/
|
|
2806
|
+
'payTo_Zip'?: string | null;
|
|
2807
|
+
/**
|
|
2808
|
+
* The billing provider (payee) for this claim. References the ProviderPayee.Payee_ID (by Provider_ID).
|
|
2809
|
+
* @type {string}
|
|
2810
|
+
* @memberof ClaimBatch
|
|
2811
|
+
*/
|
|
2812
|
+
'payee_ID'?: string | null;
|
|
2813
|
+
/**
|
|
2814
|
+
* A claim reference number used in conjunction with the Medicare Resubmission code. Indicated in Box 22 of the claim report.
|
|
2815
|
+
* @type {string}
|
|
2816
|
+
* @memberof ClaimBatch
|
|
2817
|
+
*/
|
|
2818
|
+
'payor_Claim_Control_Number'?: string | null;
|
|
2819
|
+
/**
|
|
2820
|
+
* For claim funding, indicates the payor/account this claim would be paid from.
|
|
2821
|
+
* @type {string}
|
|
2822
|
+
* @memberof ClaimBatch
|
|
2823
|
+
*/
|
|
2824
|
+
'payor_ID'?: string | null;
|
|
2825
|
+
/**
|
|
2826
|
+
* This is the Return to Work date identified by the Physician at the start of disability. This may or may not be the actual date the member returns to work.
|
|
2827
|
+
* @type {string}
|
|
2828
|
+
* @memberof ClaimBatch
|
|
2829
|
+
*/
|
|
2830
|
+
'physician_Return_To_Work'?: string | null;
|
|
2831
|
+
/**
|
|
2832
|
+
* Some transactions hold the Place of Service at the header but typically this value is empty and the ClaimDetail.Place_Of_Service is used for each service line. This value is not used in standard processing.
|
|
2833
|
+
* @type {string}
|
|
2834
|
+
* @memberof ClaimBatch
|
|
2835
|
+
*/
|
|
2836
|
+
'place_Of_Service'?: string | null;
|
|
2837
|
+
/**
|
|
2838
|
+
* Holds the plan the patient is enrolled in and that benefits are assigned.
|
|
2839
|
+
* @type {string}
|
|
2840
|
+
* @memberof ClaimBatch
|
|
2841
|
+
*/
|
|
2842
|
+
'plan_ID'?: string | null;
|
|
2843
|
+
/**
|
|
2844
|
+
* No longer in use.
|
|
2845
|
+
* @type {string}
|
|
2846
|
+
* @memberof ClaimBatch
|
|
2847
|
+
*/
|
|
2848
|
+
'plan_Provider'?: string | null;
|
|
2849
|
+
/**
|
|
2850
|
+
* Indicates the Plan Year this claim is processed under. This drives accumulator calculations and referneces the GroupPlanYear.Plan_Year value.
|
|
2851
|
+
* @type {string}
|
|
2852
|
+
* @memberof ClaimBatch
|
|
2853
|
+
*/
|
|
2854
|
+
'plan_Year'?: string | null;
|
|
2855
|
+
/**
|
|
2856
|
+
* Indicates if the patient was present on admission for diagnosis 1.
|
|
2857
|
+
* @type {string}
|
|
2858
|
+
* @memberof ClaimBatch
|
|
2859
|
+
*/
|
|
2860
|
+
'present_On_Admission1'?: string | null;
|
|
2861
|
+
/**
|
|
2862
|
+
* Indicates if the patient was present on admission for diagnosis 10.
|
|
2863
|
+
* @type {string}
|
|
2864
|
+
* @memberof ClaimBatch
|
|
2865
|
+
*/
|
|
2866
|
+
'present_On_Admission10'?: string | null;
|
|
2867
|
+
/**
|
|
2868
|
+
* Indicates if the patient was present on admission for diagnosis 11.
|
|
2869
|
+
* @type {string}
|
|
2870
|
+
* @memberof ClaimBatch
|
|
2871
|
+
*/
|
|
2872
|
+
'present_On_Admission11'?: string | null;
|
|
2873
|
+
/**
|
|
2874
|
+
* Indicates if the patient was present on admission for diagnosis 12.
|
|
2875
|
+
* @type {string}
|
|
2876
|
+
* @memberof ClaimBatch
|
|
2877
|
+
*/
|
|
2878
|
+
'present_On_Admission12'?: string | null;
|
|
2879
|
+
/**
|
|
2880
|
+
* Indicates if the patient was present on admission for diagnosis 13.
|
|
2881
|
+
* @type {string}
|
|
2882
|
+
* @memberof ClaimBatch
|
|
2883
|
+
*/
|
|
2884
|
+
'present_On_Admission13'?: string | null;
|
|
2885
|
+
/**
|
|
2886
|
+
* Indicates if the patient was present on admission for diagnosis 14.
|
|
2887
|
+
* @type {string}
|
|
2888
|
+
* @memberof ClaimBatch
|
|
2889
|
+
*/
|
|
2890
|
+
'present_On_Admission14'?: string | null;
|
|
2195
2891
|
/**
|
|
2196
|
-
*
|
|
2892
|
+
* Indicates if the patient was present on admission for diagnosis 15.
|
|
2893
|
+
* @type {string}
|
|
2894
|
+
* @memberof ClaimBatch
|
|
2895
|
+
*/
|
|
2896
|
+
'present_On_Admission15'?: string | null;
|
|
2897
|
+
/**
|
|
2898
|
+
* Indicates if the patient was present on admission for diagnosis 16.
|
|
2899
|
+
* @type {string}
|
|
2900
|
+
* @memberof ClaimBatch
|
|
2901
|
+
*/
|
|
2902
|
+
'present_On_Admission16'?: string | null;
|
|
2903
|
+
/**
|
|
2904
|
+
* Indicates if the patient was present on admission for diagnosis 17.
|
|
2905
|
+
* @type {string}
|
|
2906
|
+
* @memberof ClaimBatch
|
|
2907
|
+
*/
|
|
2908
|
+
'present_On_Admission17'?: string | null;
|
|
2909
|
+
/**
|
|
2910
|
+
* Indicates if the patient was present on admission for diagnosis 18.
|
|
2911
|
+
* @type {string}
|
|
2912
|
+
* @memberof ClaimBatch
|
|
2913
|
+
*/
|
|
2914
|
+
'present_On_Admission18'?: string | null;
|
|
2915
|
+
/**
|
|
2916
|
+
* Indicates if the patient was present on admission for diagnosis 19.
|
|
2917
|
+
* @type {string}
|
|
2918
|
+
* @memberof ClaimBatch
|
|
2919
|
+
*/
|
|
2920
|
+
'present_On_Admission19'?: string | null;
|
|
2921
|
+
/**
|
|
2922
|
+
* Indicates if the patient was present on admission for diagnosis 2.
|
|
2923
|
+
* @type {string}
|
|
2924
|
+
* @memberof ClaimBatch
|
|
2925
|
+
*/
|
|
2926
|
+
'present_On_Admission2'?: string | null;
|
|
2927
|
+
/**
|
|
2928
|
+
* Indicates if the patient was present on admission for diagnosis 20.
|
|
2929
|
+
* @type {string}
|
|
2930
|
+
* @memberof ClaimBatch
|
|
2931
|
+
*/
|
|
2932
|
+
'present_On_Admission20'?: string | null;
|
|
2933
|
+
/**
|
|
2934
|
+
* Indicates if the patient was present on admission for diagnosis 21.
|
|
2935
|
+
* @type {string}
|
|
2936
|
+
* @memberof ClaimBatch
|
|
2937
|
+
*/
|
|
2938
|
+
'present_On_Admission21'?: string | null;
|
|
2939
|
+
/**
|
|
2940
|
+
* Indicates if the patient was present on admission for diagnosis 22.
|
|
2941
|
+
* @type {string}
|
|
2942
|
+
* @memberof ClaimBatch
|
|
2943
|
+
*/
|
|
2944
|
+
'present_On_Admission22'?: string | null;
|
|
2945
|
+
/**
|
|
2946
|
+
* Indicates if the patient was present on admission for diagnosis 23.
|
|
2947
|
+
* @type {string}
|
|
2948
|
+
* @memberof ClaimBatch
|
|
2949
|
+
*/
|
|
2950
|
+
'present_On_Admission23'?: string | null;
|
|
2951
|
+
/**
|
|
2952
|
+
* Indicates if the patient was present on admission for diagnosis 24.
|
|
2953
|
+
* @type {string}
|
|
2954
|
+
* @memberof ClaimBatch
|
|
2955
|
+
*/
|
|
2956
|
+
'present_On_Admission24'?: string | null;
|
|
2957
|
+
/**
|
|
2958
|
+
* Indicates if the patient was present on admission for diagnosis 3.
|
|
2959
|
+
* @type {string}
|
|
2960
|
+
* @memberof ClaimBatch
|
|
2961
|
+
*/
|
|
2962
|
+
'present_On_Admission3'?: string | null;
|
|
2963
|
+
/**
|
|
2964
|
+
* Indicates if the patient was present on admission for diagnosis 4.
|
|
2965
|
+
* @type {string}
|
|
2966
|
+
* @memberof ClaimBatch
|
|
2967
|
+
*/
|
|
2968
|
+
'present_On_Admission4'?: string | null;
|
|
2969
|
+
/**
|
|
2970
|
+
* Indicates if the patient was present on admission for diagnosis 5.
|
|
2971
|
+
* @type {string}
|
|
2972
|
+
* @memberof ClaimBatch
|
|
2973
|
+
*/
|
|
2974
|
+
'present_On_Admission5'?: string | null;
|
|
2975
|
+
/**
|
|
2976
|
+
* Indicates if the patient was present on admission for diagnosis 6.
|
|
2977
|
+
* @type {string}
|
|
2978
|
+
* @memberof ClaimBatch
|
|
2979
|
+
*/
|
|
2980
|
+
'present_On_Admission6'?: string | null;
|
|
2981
|
+
/**
|
|
2982
|
+
* Indicates if the patient was present on admission for diagnosis 7.
|
|
2983
|
+
* @type {string}
|
|
2984
|
+
* @memberof ClaimBatch
|
|
2985
|
+
*/
|
|
2986
|
+
'present_On_Admission7'?: string | null;
|
|
2987
|
+
/**
|
|
2988
|
+
* Indicates if the patient was present on admission for diagnosis 8.
|
|
2989
|
+
* @type {string}
|
|
2990
|
+
* @memberof ClaimBatch
|
|
2991
|
+
*/
|
|
2992
|
+
'present_On_Admission8'?: string | null;
|
|
2993
|
+
/**
|
|
2994
|
+
* Indicates if the patient was present on admission for diagnosis 9.
|
|
2995
|
+
* @type {string}
|
|
2996
|
+
* @memberof ClaimBatch
|
|
2997
|
+
*/
|
|
2998
|
+
'present_On_Admission9'?: string | null;
|
|
2999
|
+
/**
|
|
3000
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 1.
|
|
3001
|
+
* @type {string}
|
|
3002
|
+
* @memberof ClaimBatch
|
|
3003
|
+
*/
|
|
3004
|
+
'present_On_Admission_ECode1'?: string | null;
|
|
3005
|
+
/**
|
|
3006
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 10.
|
|
3007
|
+
* @type {string}
|
|
3008
|
+
* @memberof ClaimBatch
|
|
3009
|
+
*/
|
|
3010
|
+
'present_On_Admission_ECode10'?: string | null;
|
|
3011
|
+
/**
|
|
3012
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 11.
|
|
3013
|
+
* @type {string}
|
|
3014
|
+
* @memberof ClaimBatch
|
|
3015
|
+
*/
|
|
3016
|
+
'present_On_Admission_ECode11'?: string | null;
|
|
3017
|
+
/**
|
|
3018
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 12.
|
|
3019
|
+
* @type {string}
|
|
3020
|
+
* @memberof ClaimBatch
|
|
3021
|
+
*/
|
|
3022
|
+
'present_On_Admission_ECode12'?: string | null;
|
|
3023
|
+
/**
|
|
3024
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 2.
|
|
3025
|
+
* @type {string}
|
|
3026
|
+
* @memberof ClaimBatch
|
|
3027
|
+
*/
|
|
3028
|
+
'present_On_Admission_ECode2'?: string | null;
|
|
3029
|
+
/**
|
|
3030
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 3.
|
|
3031
|
+
* @type {string}
|
|
3032
|
+
* @memberof ClaimBatch
|
|
3033
|
+
*/
|
|
3034
|
+
'present_On_Admission_ECode3'?: string | null;
|
|
3035
|
+
/**
|
|
3036
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 4.
|
|
3037
|
+
* @type {string}
|
|
3038
|
+
* @memberof ClaimBatch
|
|
3039
|
+
*/
|
|
3040
|
+
'present_On_Admission_ECode4'?: string | null;
|
|
3041
|
+
/**
|
|
3042
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 5.
|
|
3043
|
+
* @type {string}
|
|
3044
|
+
* @memberof ClaimBatch
|
|
3045
|
+
*/
|
|
3046
|
+
'present_On_Admission_ECode5'?: string | null;
|
|
3047
|
+
/**
|
|
3048
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 6.
|
|
3049
|
+
* @type {string}
|
|
3050
|
+
* @memberof ClaimBatch
|
|
3051
|
+
*/
|
|
3052
|
+
'present_On_Admission_ECode6'?: string | null;
|
|
3053
|
+
/**
|
|
3054
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 7.
|
|
3055
|
+
* @type {string}
|
|
3056
|
+
* @memberof ClaimBatch
|
|
3057
|
+
*/
|
|
3058
|
+
'present_On_Admission_ECode7'?: string | null;
|
|
3059
|
+
/**
|
|
3060
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 8.
|
|
3061
|
+
* @type {string}
|
|
3062
|
+
* @memberof ClaimBatch
|
|
3063
|
+
*/
|
|
3064
|
+
'present_On_Admission_ECode8'?: string | null;
|
|
3065
|
+
/**
|
|
3066
|
+
* Indicates if the patient was present for the external cause of injury diagnosis 9.
|
|
3067
|
+
* @type {string}
|
|
3068
|
+
* @memberof ClaimBatch
|
|
3069
|
+
*/
|
|
3070
|
+
'present_On_Admission_ECode9'?: string | null;
|
|
3071
|
+
/**
|
|
3072
|
+
* For reprice claims (typically submitted via 837), this notes the reprice method used to reprice this claim.
|
|
3073
|
+
* @type {string}
|
|
3074
|
+
* @memberof ClaimBatch
|
|
3075
|
+
*/
|
|
3076
|
+
'pricing_Method'?: string | null;
|
|
3077
|
+
/**
|
|
3078
|
+
* The ID of the pricing organization. Data is obtained in segment HCP04 on an 837.
|
|
3079
|
+
* @type {string}
|
|
3080
|
+
* @memberof ClaimBatch
|
|
3081
|
+
*/
|
|
3082
|
+
'pricing_Org_ID'?: string | null;
|
|
3083
|
+
/**
|
|
3084
|
+
* The rate associated with the reprice method (Pricing_Method).
|
|
3085
|
+
* @type {number}
|
|
3086
|
+
* @memberof ClaimBatch
|
|
3087
|
+
*/
|
|
3088
|
+
'pricing_Rate'?: number | null;
|
|
3089
|
+
/**
|
|
3090
|
+
* The principal procedure (ICD10 Diagnosis) for this claim submission.
|
|
3091
|
+
* @type {string}
|
|
3092
|
+
* @memberof ClaimBatch
|
|
3093
|
+
*/
|
|
3094
|
+
'principal_Procedure_Code'?: string | null;
|
|
3095
|
+
/**
|
|
3096
|
+
* The principal procedure date.
|
|
3097
|
+
* @type {string}
|
|
3098
|
+
* @memberof ClaimBatch
|
|
3099
|
+
*/
|
|
3100
|
+
'principal_Procedure_Date'?: string | null;
|
|
3101
|
+
/**
|
|
3102
|
+
* The date of a previous prosthetic or crown applied, if there was one.
|
|
3103
|
+
* @type {string}
|
|
3104
|
+
* @memberof ClaimBatch
|
|
3105
|
+
*/
|
|
3106
|
+
'prior_Placement_Date'?: string | null;
|
|
3107
|
+
/**
|
|
3108
|
+
* This flag indicates if this claim is for the replacement of a prosthesis. 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.
|
|
3109
|
+
* @type {boolean}
|
|
3110
|
+
* @memberof ClaimBatch
|
|
3111
|
+
*/
|
|
3112
|
+
'prosthesis_Replacement': boolean;
|
|
3113
|
+
/**
|
|
3114
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3115
|
+
* @type {string}
|
|
3116
|
+
* @memberof ClaimBatch
|
|
3117
|
+
*/
|
|
3118
|
+
'provider_Address'?: string | null;
|
|
3119
|
+
/**
|
|
3120
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3121
|
+
* @type {string}
|
|
3122
|
+
* @memberof ClaimBatch
|
|
3123
|
+
*/
|
|
3124
|
+
'provider_Address2'?: string | null;
|
|
3125
|
+
/**
|
|
3126
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3127
|
+
* @type {string}
|
|
3128
|
+
* @memberof ClaimBatch
|
|
3129
|
+
*/
|
|
3130
|
+
'provider_City'?: string | null;
|
|
3131
|
+
/**
|
|
3132
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3133
|
+
* @type {string}
|
|
3134
|
+
* @memberof ClaimBatch
|
|
3135
|
+
*/
|
|
3136
|
+
'provider_Federal_ID'?: string | null;
|
|
3137
|
+
/**
|
|
3138
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3139
|
+
* @type {string}
|
|
3140
|
+
* @memberof ClaimBatch
|
|
3141
|
+
*/
|
|
3142
|
+
'provider_First_Name'?: string | null;
|
|
3143
|
+
/**
|
|
3144
|
+
* The provider ID of the servicing provider. References Provider.Provider_ID.
|
|
3145
|
+
* @type {string}
|
|
3146
|
+
* @memberof ClaimBatch
|
|
3147
|
+
*/
|
|
3148
|
+
'provider_ID'?: string | null;
|
|
3149
|
+
/**
|
|
3150
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3151
|
+
* @type {string}
|
|
3152
|
+
* @memberof ClaimBatch
|
|
3153
|
+
*/
|
|
3154
|
+
'provider_Last_Name'?: string | null;
|
|
3155
|
+
/**
|
|
3156
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3157
|
+
* @type {string}
|
|
3158
|
+
* @memberof ClaimBatch
|
|
3159
|
+
*/
|
|
3160
|
+
'provider_MAID'?: string | null;
|
|
3161
|
+
/**
|
|
3162
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3163
|
+
* @type {string}
|
|
3164
|
+
* @memberof ClaimBatch
|
|
3165
|
+
*/
|
|
3166
|
+
'provider_NPI'?: string | null;
|
|
3167
|
+
/**
|
|
3168
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
3169
|
+
* @type {string}
|
|
3170
|
+
* @memberof ClaimBatch
|
|
3171
|
+
*/
|
|
3172
|
+
'provider_Org_Name'?: string | null;
|
|
3173
|
+
/**
|
|
3174
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
2197
3175
|
* @type {string}
|
|
2198
3176
|
* @memberof ClaimBatch
|
|
2199
3177
|
*/
|
|
2200
3178
|
'provider_Phone'?: string | null;
|
|
2201
3179
|
/**
|
|
2202
|
-
*
|
|
3180
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
2203
3181
|
* @type {string}
|
|
2204
3182
|
* @memberof ClaimBatch
|
|
2205
3183
|
*/
|
|
2206
3184
|
'provider_State'?: string | null;
|
|
2207
3185
|
/**
|
|
2208
|
-
*
|
|
3186
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
2209
3187
|
* @type {string}
|
|
2210
3188
|
* @memberof ClaimBatch
|
|
2211
3189
|
*/
|
|
2212
3190
|
'provider_Taxonomy'?: string | null;
|
|
2213
3191
|
/**
|
|
2214
|
-
*
|
|
3192
|
+
* For EDI submissions, this holds the service provider information based on matching logic that interrogates the submitted Billing Provider, Service Provider, and Rendering Provider.
|
|
2215
3193
|
* @type {string}
|
|
2216
3194
|
* @memberof ClaimBatch
|
|
2217
3195
|
*/
|
|
2218
3196
|
'provider_Zip'?: string | null;
|
|
2219
3197
|
/**
|
|
2220
|
-
*
|
|
3198
|
+
* Overrides the QPA Method set on the Plan for this claim.
|
|
2221
3199
|
* @type {string}
|
|
2222
3200
|
* @memberof ClaimBatch
|
|
2223
3201
|
*/
|
|
2224
3202
|
'qpA_Method'?: string | null;
|
|
2225
3203
|
/**
|
|
2226
|
-
*
|
|
3204
|
+
* Notes if the claim is ready to process out of batch.
|
|
2227
3205
|
* @type {string}
|
|
2228
3206
|
* @memberof ClaimBatch
|
|
2229
3207
|
*/
|
|
2230
3208
|
'ready_To_Process'?: string | null;
|
|
2231
3209
|
/**
|
|
2232
|
-
*
|
|
3210
|
+
* The date this claim was received into the admin system.
|
|
2233
3211
|
* @type {string}
|
|
2234
3212
|
* @memberof ClaimBatch
|
|
2235
3213
|
*/
|
|
2236
3214
|
'received_Date'?: string | null;
|
|
2237
3215
|
/**
|
|
2238
|
-
*
|
|
3216
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2239
3217
|
* @type {string}
|
|
2240
3218
|
* @memberof ClaimBatch
|
|
2241
3219
|
*/
|
|
2242
3220
|
'ref_Provider_Address'?: string | null;
|
|
2243
3221
|
/**
|
|
2244
|
-
*
|
|
3222
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2245
3223
|
* @type {string}
|
|
2246
3224
|
* @memberof ClaimBatch
|
|
2247
3225
|
*/
|
|
2248
3226
|
'ref_Provider_Address2'?: string | null;
|
|
2249
3227
|
/**
|
|
2250
|
-
*
|
|
3228
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2251
3229
|
* @type {string}
|
|
2252
3230
|
* @memberof ClaimBatch
|
|
2253
3231
|
*/
|
|
2254
3232
|
'ref_Provider_City'?: string | null;
|
|
2255
3233
|
/**
|
|
2256
|
-
*
|
|
3234
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2257
3235
|
* @type {string}
|
|
2258
3236
|
* @memberof ClaimBatch
|
|
2259
3237
|
*/
|
|
2260
3238
|
'ref_Provider_Federal_ID'?: string | null;
|
|
2261
3239
|
/**
|
|
2262
|
-
*
|
|
3240
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2263
3241
|
* @type {string}
|
|
2264
3242
|
* @memberof ClaimBatch
|
|
2265
3243
|
*/
|
|
2266
3244
|
'ref_Provider_First_Name'?: string | null;
|
|
2267
3245
|
/**
|
|
2268
|
-
*
|
|
3246
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2269
3247
|
* @type {string}
|
|
2270
3248
|
* @memberof ClaimBatch
|
|
2271
3249
|
*/
|
|
2272
3250
|
'ref_Provider_Last_Name'?: string | null;
|
|
2273
3251
|
/**
|
|
2274
|
-
*
|
|
3252
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2275
3253
|
* @type {string}
|
|
2276
3254
|
* @memberof ClaimBatch
|
|
2277
3255
|
*/
|
|
2278
3256
|
'ref_Provider_MAID'?: string | null;
|
|
2279
3257
|
/**
|
|
2280
|
-
*
|
|
3258
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2281
3259
|
* @type {string}
|
|
2282
3260
|
* @memberof ClaimBatch
|
|
2283
3261
|
*/
|
|
2284
3262
|
'ref_Provider_NPI'?: string | null;
|
|
2285
3263
|
/**
|
|
2286
|
-
*
|
|
3264
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2287
3265
|
* @type {string}
|
|
2288
3266
|
* @memberof ClaimBatch
|
|
2289
3267
|
*/
|
|
2290
3268
|
'ref_Provider_Org_Name'?: string | null;
|
|
2291
3269
|
/**
|
|
2292
|
-
*
|
|
3270
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2293
3271
|
* @type {string}
|
|
2294
3272
|
* @memberof ClaimBatch
|
|
2295
3273
|
*/
|
|
2296
3274
|
'ref_Provider_Phone'?: string | null;
|
|
2297
3275
|
/**
|
|
2298
|
-
*
|
|
3276
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2299
3277
|
* @type {string}
|
|
2300
3278
|
* @memberof ClaimBatch
|
|
2301
3279
|
*/
|
|
2302
3280
|
'ref_Provider_State'?: string | null;
|
|
2303
3281
|
/**
|
|
2304
|
-
*
|
|
3282
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2305
3283
|
* @type {string}
|
|
2306
3284
|
* @memberof ClaimBatch
|
|
2307
3285
|
*/
|
|
2308
3286
|
'ref_Provider_Taxonomy'?: string | null;
|
|
2309
3287
|
/**
|
|
2310
|
-
*
|
|
3288
|
+
* The referring provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2311
3289
|
* @type {string}
|
|
2312
3290
|
* @memberof ClaimBatch
|
|
2313
3291
|
*/
|
|
2314
3292
|
'ref_Provider_Zip'?: string | null;
|
|
2315
3293
|
/**
|
|
2316
|
-
*
|
|
3294
|
+
* Information field to track if a referral was sent for this claim.
|
|
2317
3295
|
* @type {string}
|
|
2318
3296
|
* @memberof ClaimBatch
|
|
2319
3297
|
*/
|
|
2320
3298
|
'referred_By'?: string | null;
|
|
2321
3299
|
/**
|
|
2322
|
-
*
|
|
3300
|
+
* Indicates that this claim was part of a Void process.
|
|
2323
3301
|
* @type {number}
|
|
2324
3302
|
* @memberof ClaimBatch
|
|
2325
3303
|
*/
|
|
2326
3304
|
'refund_Check_ID'?: number | null;
|
|
2327
3305
|
/**
|
|
2328
|
-
*
|
|
3306
|
+
* Indicates this claim is part of a refund process. 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.
|
|
2329
3307
|
* @type {boolean}
|
|
2330
3308
|
* @memberof ClaimBatch
|
|
2331
3309
|
*/
|
|
2332
3310
|
'refund_Claim': boolean;
|
|
2333
3311
|
/**
|
|
2334
|
-
*
|
|
3312
|
+
* If this claim was part of a refund process, this will hold the reference to the receipt generated by the refund process.
|
|
2335
3313
|
* @type {number}
|
|
2336
3314
|
* @memberof ClaimBatch
|
|
2337
3315
|
*/
|
|
2338
3316
|
'refund_Funding_Key'?: number | null;
|
|
2339
3317
|
/**
|
|
2340
|
-
*
|
|
3318
|
+
* Indicates if the claim is related to a non-car accident. 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.
|
|
2341
3319
|
* @type {boolean}
|
|
2342
3320
|
* @memberof ClaimBatch
|
|
2343
3321
|
*/
|
|
2344
3322
|
'related_To_Accident': boolean;
|
|
2345
3323
|
/**
|
|
2346
|
-
*
|
|
3324
|
+
* Indicates if the claim was casued by a third party. 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.
|
|
2347
3325
|
* @type {boolean}
|
|
2348
3326
|
* @memberof ClaimBatch
|
|
2349
3327
|
*/
|
|
2350
3328
|
'related_To_Another_Party': boolean;
|
|
2351
3329
|
/**
|
|
2352
|
-
*
|
|
3330
|
+
* Indicates if the claim is related to a car accident. 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.
|
|
2353
3331
|
* @type {boolean}
|
|
2354
3332
|
* @memberof ClaimBatch
|
|
2355
3333
|
*/
|
|
2356
3334
|
'related_To_Auto': boolean;
|
|
2357
3335
|
/**
|
|
2358
|
-
*
|
|
3336
|
+
* Indicates if the claim is work related. 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.
|
|
2359
3337
|
* @type {boolean}
|
|
2360
3338
|
* @memberof ClaimBatch
|
|
2361
3339
|
*/
|
|
2362
3340
|
'related_To_Employment': boolean;
|
|
2363
3341
|
/**
|
|
2364
|
-
*
|
|
3342
|
+
* Information field used in custom processing and reporting.
|
|
2365
3343
|
* @type {string}
|
|
2366
3344
|
* @memberof ClaimBatch
|
|
2367
3345
|
*/
|
|
2368
3346
|
'relinquished_Care_Date'?: string | null;
|
|
2369
3347
|
/**
|
|
2370
|
-
*
|
|
3348
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2371
3349
|
* @type {string}
|
|
2372
3350
|
* @memberof ClaimBatch
|
|
2373
3351
|
*/
|
|
2374
3352
|
'rend_Provider_Address'?: string | null;
|
|
2375
3353
|
/**
|
|
2376
|
-
*
|
|
3354
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2377
3355
|
* @type {string}
|
|
2378
3356
|
* @memberof ClaimBatch
|
|
2379
3357
|
*/
|
|
2380
3358
|
'rend_Provider_Address2'?: string | null;
|
|
2381
3359
|
/**
|
|
2382
|
-
*
|
|
3360
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2383
3361
|
* @type {string}
|
|
2384
3362
|
* @memberof ClaimBatch
|
|
2385
3363
|
*/
|
|
2386
3364
|
'rend_Provider_City'?: string | null;
|
|
2387
3365
|
/**
|
|
2388
|
-
*
|
|
3366
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2389
3367
|
* @type {string}
|
|
2390
3368
|
* @memberof ClaimBatch
|
|
2391
3369
|
*/
|
|
2392
3370
|
'rend_Provider_Federal_ID'?: string | null;
|
|
2393
3371
|
/**
|
|
2394
|
-
*
|
|
3372
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2395
3373
|
* @type {string}
|
|
2396
3374
|
* @memberof ClaimBatch
|
|
2397
3375
|
*/
|
|
2398
3376
|
'rend_Provider_First_Name'?: string | null;
|
|
2399
3377
|
/**
|
|
2400
|
-
*
|
|
3378
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2401
3379
|
* @type {string}
|
|
2402
3380
|
* @memberof ClaimBatch
|
|
2403
3381
|
*/
|
|
2404
3382
|
'rend_Provider_Last_Name'?: string | null;
|
|
2405
3383
|
/**
|
|
2406
|
-
*
|
|
3384
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2407
3385
|
* @type {string}
|
|
2408
3386
|
* @memberof ClaimBatch
|
|
2409
3387
|
*/
|
|
2410
3388
|
'rend_Provider_MAID'?: string | null;
|
|
2411
3389
|
/**
|
|
2412
|
-
*
|
|
3390
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2413
3391
|
* @type {string}
|
|
2414
3392
|
* @memberof ClaimBatch
|
|
2415
3393
|
*/
|
|
2416
3394
|
'rend_Provider_NPI'?: string | null;
|
|
2417
3395
|
/**
|
|
2418
|
-
*
|
|
3396
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2419
3397
|
* @type {string}
|
|
2420
3398
|
* @memberof ClaimBatch
|
|
2421
3399
|
*/
|
|
2422
3400
|
'rend_Provider_Org_Name'?: string | null;
|
|
2423
3401
|
/**
|
|
2424
|
-
*
|
|
3402
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2425
3403
|
* @type {string}
|
|
2426
3404
|
* @memberof ClaimBatch
|
|
2427
3405
|
*/
|
|
2428
3406
|
'rend_Provider_Phone'?: string | null;
|
|
2429
3407
|
/**
|
|
2430
|
-
*
|
|
3408
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2431
3409
|
* @type {string}
|
|
2432
3410
|
* @memberof ClaimBatch
|
|
2433
3411
|
*/
|
|
2434
3412
|
'rend_Provider_State'?: string | null;
|
|
2435
3413
|
/**
|
|
2436
|
-
*
|
|
3414
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2437
3415
|
* @type {string}
|
|
2438
3416
|
* @memberof ClaimBatch
|
|
2439
3417
|
*/
|
|
2440
3418
|
'rend_Provider_Taxonomy'?: string | null;
|
|
2441
3419
|
/**
|
|
2442
|
-
*
|
|
3420
|
+
* The rendering provider information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2443
3421
|
* @type {string}
|
|
2444
3422
|
* @memberof ClaimBatch
|
|
2445
3423
|
*/
|
|
2446
3424
|
'rend_Provider_Zip'?: string | null;
|
|
2447
3425
|
/**
|
|
2448
|
-
*
|
|
3426
|
+
* As part of reprice claim submissions (via 837), this will hold the repricing network.
|
|
2449
3427
|
* @type {string}
|
|
2450
3428
|
* @memberof ClaimBatch
|
|
2451
3429
|
*/
|
|
2452
3430
|
'repriced_Network_ID'?: string | null;
|
|
2453
3431
|
/**
|
|
2454
|
-
*
|
|
3432
|
+
* This is the date the member Returned to Work. This date affects the total payments created as well as other calculations during adjudication.
|
|
2455
3433
|
* @type {string}
|
|
2456
3434
|
* @memberof ClaimBatch
|
|
2457
3435
|
*/
|
|
2458
3436
|
'return_To_Work_Date'?: string | null;
|
|
2459
3437
|
/**
|
|
2460
|
-
*
|
|
3438
|
+
* This flag identifies that there is salary continuation during this disability. 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.
|
|
2461
3439
|
* @type {boolean}
|
|
2462
3440
|
* @memberof ClaimBatch
|
|
2463
3441
|
*/
|
|
2464
3442
|
'salary_Continuation': boolean;
|
|
2465
3443
|
/**
|
|
2466
|
-
*
|
|
3444
|
+
* Indicates the entity that should be paid for this claim. S - Subscriber, G - Group, B - Beneficiary, P - Payee, or V - Provider.
|
|
2467
3445
|
* @type {string}
|
|
2468
3446
|
* @memberof ClaimBatch
|
|
2469
3447
|
*/
|
|
2470
3448
|
'send_Check_To'?: string | null;
|
|
2471
3449
|
/**
|
|
2472
|
-
*
|
|
3450
|
+
* The Sender ID sent inbound for x12 (837) transactions.
|
|
2473
3451
|
* @type {string}
|
|
2474
3452
|
* @memberof ClaimBatch
|
|
2475
3453
|
*/
|
|
2476
3454
|
'sender_ID'?: string | null;
|
|
2477
3455
|
/**
|
|
2478
|
-
*
|
|
3456
|
+
* The earliest Service_Date of all service lines on this claim.
|
|
2479
3457
|
* @type {string}
|
|
2480
3458
|
* @memberof ClaimBatch
|
|
2481
3459
|
*/
|
|
2482
3460
|
'service_Date'?: string | null;
|
|
2483
3461
|
/**
|
|
2484
|
-
*
|
|
3462
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2485
3463
|
* @type {string}
|
|
2486
3464
|
* @memberof ClaimBatch
|
|
2487
3465
|
*/
|
|
2488
3466
|
'service_Fac_Loc_Address'?: string | null;
|
|
2489
3467
|
/**
|
|
2490
|
-
*
|
|
3468
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2491
3469
|
* @type {string}
|
|
2492
3470
|
* @memberof ClaimBatch
|
|
2493
3471
|
*/
|
|
2494
3472
|
'service_Fac_Loc_Address2'?: string | null;
|
|
2495
3473
|
/**
|
|
2496
|
-
*
|
|
3474
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2497
3475
|
* @type {string}
|
|
2498
3476
|
* @memberof ClaimBatch
|
|
2499
3477
|
*/
|
|
2500
3478
|
'service_Fac_Loc_City'?: string | null;
|
|
2501
3479
|
/**
|
|
2502
|
-
*
|
|
3480
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2503
3481
|
* @type {string}
|
|
2504
3482
|
* @memberof ClaimBatch
|
|
2505
3483
|
*/
|
|
2506
3484
|
'service_Fac_Loc_Federal_ID'?: string | null;
|
|
2507
3485
|
/**
|
|
2508
|
-
*
|
|
3486
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2509
3487
|
* @type {string}
|
|
2510
3488
|
* @memberof ClaimBatch
|
|
2511
3489
|
*/
|
|
2512
3490
|
'service_Fac_Loc_First_Name'?: string | null;
|
|
2513
3491
|
/**
|
|
2514
|
-
*
|
|
3492
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2515
3493
|
* @type {string}
|
|
2516
3494
|
* @memberof ClaimBatch
|
|
2517
3495
|
*/
|
|
2518
3496
|
'service_Fac_Loc_Last_Name'?: string | null;
|
|
2519
3497
|
/**
|
|
2520
|
-
*
|
|
3498
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2521
3499
|
* @type {string}
|
|
2522
3500
|
* @memberof ClaimBatch
|
|
2523
3501
|
*/
|
|
2524
3502
|
'service_Fac_Loc_MAID'?: string | null;
|
|
2525
3503
|
/**
|
|
2526
|
-
*
|
|
3504
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2527
3505
|
* @type {string}
|
|
2528
3506
|
* @memberof ClaimBatch
|
|
2529
3507
|
*/
|
|
2530
3508
|
'service_Fac_Loc_NPI'?: string | null;
|
|
2531
3509
|
/**
|
|
2532
|
-
*
|
|
3510
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2533
3511
|
* @type {string}
|
|
2534
3512
|
* @memberof ClaimBatch
|
|
2535
3513
|
*/
|
|
2536
3514
|
'service_Fac_Loc_Org_Name'?: string | null;
|
|
2537
3515
|
/**
|
|
2538
|
-
*
|
|
3516
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2539
3517
|
* @type {string}
|
|
2540
3518
|
* @memberof ClaimBatch
|
|
2541
3519
|
*/
|
|
2542
3520
|
'service_Fac_Loc_Phone'?: string | null;
|
|
2543
3521
|
/**
|
|
2544
|
-
*
|
|
3522
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2545
3523
|
* @type {string}
|
|
2546
3524
|
* @memberof ClaimBatch
|
|
2547
3525
|
*/
|
|
2548
3526
|
'service_Fac_Loc_State'?: string | null;
|
|
2549
3527
|
/**
|
|
2550
|
-
*
|
|
3528
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2551
3529
|
* @type {string}
|
|
2552
3530
|
* @memberof ClaimBatch
|
|
2553
3531
|
*/
|
|
2554
3532
|
'service_Fac_Loc_Taxonomy'?: string | null;
|
|
2555
3533
|
/**
|
|
2556
|
-
*
|
|
3534
|
+
* The service facility information as submitted on the 837. This field is used for tracking via trigger to the ClaimPreBatch.
|
|
2557
3535
|
* @type {string}
|
|
2558
3536
|
* @memberof ClaimBatch
|
|
2559
3537
|
*/
|
|
2560
3538
|
'service_Fac_Loc_Zip'?: string | null;
|
|
2561
3539
|
/**
|
|
2562
|
-
*
|
|
3540
|
+
* The latest Service_Thru for all service lines on this claim.
|
|
2563
3541
|
* @type {string}
|
|
2564
3542
|
* @memberof ClaimBatch
|
|
2565
3543
|
*/
|
|
2566
3544
|
'service_Thru'?: string | null;
|
|
2567
3545
|
/**
|
|
2568
|
-
*
|
|
3546
|
+
* This flag identifies that there is sick time during this disability. 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.
|
|
2569
3547
|
* @type {boolean}
|
|
2570
3548
|
* @memberof ClaimBatch
|
|
2571
3549
|
*/
|
|
2572
3550
|
'sick_Time': boolean;
|
|
2573
3551
|
/**
|
|
2574
|
-
*
|
|
3552
|
+
* For Institutional Claims, holds the Statement Date.
|
|
2575
3553
|
* @type {string}
|
|
2576
3554
|
* @memberof ClaimBatch
|
|
2577
3555
|
*/
|
|
2578
3556
|
'statement_From_Date'?: string | null;
|
|
2579
3557
|
/**
|
|
2580
|
-
*
|
|
3558
|
+
* For Institutional Claims, holds the Statement Date.
|
|
2581
3559
|
* @type {string}
|
|
2582
3560
|
* @memberof ClaimBatch
|
|
2583
3561
|
*/
|
|
2584
3562
|
'statement_Thru_Date'?: string | null;
|
|
2585
3563
|
/**
|
|
2586
|
-
*
|
|
3564
|
+
* The Subscriber ID of the patient for this claim.
|
|
2587
3565
|
* @type {string}
|
|
2588
3566
|
* @memberof ClaimBatch
|
|
2589
3567
|
*/
|
|
2590
3568
|
'subscriber_ID'?: string | null;
|
|
2591
3569
|
/**
|
|
2592
|
-
*
|
|
3570
|
+
* Indicates if the insured signature has been collected. 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.
|
|
2593
3571
|
* @type {boolean}
|
|
2594
3572
|
* @memberof ClaimBatch
|
|
2595
3573
|
*/
|
|
2596
3574
|
'subscriber_Signature': boolean;
|
|
2597
3575
|
/**
|
|
2598
|
-
*
|
|
3576
|
+
* Indicates if Survivor Benefit was applied for this disability payment. 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.
|
|
2599
3577
|
* @type {boolean}
|
|
2600
3578
|
* @memberof ClaimBatch
|
|
2601
3579
|
*/
|
|
2602
3580
|
'survivor_Benefit': boolean;
|
|
2603
3581
|
/**
|
|
2604
|
-
*
|
|
3582
|
+
* For disability, indicates if this professional claim is a 3rd party payment (typically related to alimony, garnishment, etc.) 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.
|
|
2605
3583
|
* @type {boolean}
|
|
2606
3584
|
* @memberof ClaimBatch
|
|
2607
3585
|
*/
|
|
2608
3586
|
'third_Party_Payment': boolean;
|
|
2609
3587
|
/**
|
|
2610
|
-
*
|
|
3588
|
+
* COB total for all claim detail lines 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.
|
|
2611
3589
|
* @type {number}
|
|
2612
3590
|
* @memberof ClaimBatch
|
|
2613
3591
|
*/
|
|
2614
3592
|
'total_COB': number;
|
|
2615
3593
|
/**
|
|
2616
|
-
*
|
|
3594
|
+
* No longer in use.
|
|
2617
3595
|
* @type {number}
|
|
2618
3596
|
* @memberof ClaimBatch
|
|
2619
3597
|
*/
|
|
2620
3598
|
'trading_Partner_Key'?: number | null;
|
|
2621
3599
|
/**
|
|
2622
|
-
*
|
|
3600
|
+
* For 837 transactions, this is the control number assgined by the submitter.
|
|
2623
3601
|
* @type {string}
|
|
2624
3602
|
* @memberof ClaimBatch
|
|
2625
3603
|
*/
|
|
2626
3604
|
'trans_837_Control_Num'?: string | null;
|
|
2627
3605
|
/**
|
|
2628
|
-
*
|
|
3606
|
+
* Indicates this is a claim entered by an inbound 837. 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.
|
|
2629
3607
|
* @type {boolean}
|
|
2630
3608
|
* @memberof ClaimBatch
|
|
2631
3609
|
*/
|
|
2632
3610
|
'transaction_837': boolean;
|
|
2633
3611
|
/**
|
|
2634
|
-
*
|
|
3612
|
+
* For 837 transactions, this holds the transaction ID assigned by the submission.
|
|
2635
3613
|
* @type {string}
|
|
2636
3614
|
* @memberof ClaimBatch
|
|
2637
3615
|
*/
|
|
2638
3616
|
'transaction_837_ID'?: string | null;
|
|
2639
3617
|
/**
|
|
2640
|
-
*
|
|
3618
|
+
* The Admission Type associated to this claim.
|
|
2641
3619
|
* @type {string}
|
|
2642
3620
|
* @memberof ClaimBatch
|
|
2643
3621
|
*/
|
|
2644
3622
|
'type_Of_Admission'?: string | null;
|
|
2645
3623
|
/**
|
|
2646
|
-
*
|
|
3624
|
+
* The Bill Type associated to this claim. References BillType.Type_Of_Bill.
|
|
2647
3625
|
* @type {string}
|
|
2648
3626
|
* @memberof ClaimBatch
|
|
2649
3627
|
*/
|
|
2650
3628
|
'type_Of_Bill'?: string | null;
|
|
2651
3629
|
/**
|
|
2652
|
-
*
|
|
3630
|
+
* Date when the record was last updated in the system.
|
|
2653
3631
|
* @type {string}
|
|
2654
3632
|
* @memberof ClaimBatch
|
|
2655
3633
|
*/
|
|
2656
3634
|
'update_Date'?: string;
|
|
2657
3635
|
/**
|
|
2658
|
-
*
|
|
3636
|
+
* User that last updated the record in the system.
|
|
2659
3637
|
* @type {string}
|
|
2660
3638
|
* @memberof ClaimBatch
|
|
2661
3639
|
*/
|
|
2662
3640
|
'update_User'?: string | null;
|
|
2663
3641
|
/**
|
|
2664
|
-
*
|
|
3642
|
+
* This flag identifies that there is vacation during this disability. 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.
|
|
2665
3643
|
* @type {boolean}
|
|
2666
3644
|
* @memberof ClaimBatch
|
|
2667
3645
|
*/
|
|
2668
3646
|
'vacation': boolean;
|
|
2669
3647
|
/**
|
|
2670
|
-
*
|
|
3648
|
+
* The monetary amount related to the value code.
|
|
2671
3649
|
* @type {number}
|
|
2672
3650
|
* @memberof ClaimBatch
|
|
2673
3651
|
*/
|
|
@@ -2677,21 +3655,141 @@ export interface ClaimBatch {
|
|
|
2677
3655
|
* @type {number}
|
|
2678
3656
|
* @memberof ClaimBatch
|
|
2679
3657
|
*/
|
|
3658
|
+
'value_Amount10'?: number | null;
|
|
3659
|
+
/**
|
|
3660
|
+
*
|
|
3661
|
+
* @type {number}
|
|
3662
|
+
* @memberof ClaimBatch
|
|
3663
|
+
*/
|
|
3664
|
+
'value_Amount11'?: number | null;
|
|
3665
|
+
/**
|
|
3666
|
+
*
|
|
3667
|
+
* @type {number}
|
|
3668
|
+
* @memberof ClaimBatch
|
|
3669
|
+
*/
|
|
3670
|
+
'value_Amount12'?: number | null;
|
|
3671
|
+
/**
|
|
3672
|
+
*
|
|
3673
|
+
* @type {number}
|
|
3674
|
+
* @memberof ClaimBatch
|
|
3675
|
+
*/
|
|
3676
|
+
'value_Amount13'?: number | null;
|
|
3677
|
+
/**
|
|
3678
|
+
*
|
|
3679
|
+
* @type {number}
|
|
3680
|
+
* @memberof ClaimBatch
|
|
3681
|
+
*/
|
|
3682
|
+
'value_Amount14'?: number | null;
|
|
3683
|
+
/**
|
|
3684
|
+
*
|
|
3685
|
+
* @type {number}
|
|
3686
|
+
* @memberof ClaimBatch
|
|
3687
|
+
*/
|
|
3688
|
+
'value_Amount15'?: number | null;
|
|
3689
|
+
/**
|
|
3690
|
+
*
|
|
3691
|
+
* @type {number}
|
|
3692
|
+
* @memberof ClaimBatch
|
|
3693
|
+
*/
|
|
3694
|
+
'value_Amount16'?: number | null;
|
|
3695
|
+
/**
|
|
3696
|
+
*
|
|
3697
|
+
* @type {number}
|
|
3698
|
+
* @memberof ClaimBatch
|
|
3699
|
+
*/
|
|
3700
|
+
'value_Amount17'?: number | null;
|
|
3701
|
+
/**
|
|
3702
|
+
*
|
|
3703
|
+
* @type {number}
|
|
3704
|
+
* @memberof ClaimBatch
|
|
3705
|
+
*/
|
|
3706
|
+
'value_Amount18'?: number | null;
|
|
3707
|
+
/**
|
|
3708
|
+
*
|
|
3709
|
+
* @type {number}
|
|
3710
|
+
* @memberof ClaimBatch
|
|
3711
|
+
*/
|
|
3712
|
+
'value_Amount19'?: number | null;
|
|
3713
|
+
/**
|
|
3714
|
+
* The monetary amount related to the value code.
|
|
3715
|
+
* @type {number}
|
|
3716
|
+
* @memberof ClaimBatch
|
|
3717
|
+
*/
|
|
2680
3718
|
'value_Amount2'?: number | null;
|
|
2681
3719
|
/**
|
|
2682
3720
|
*
|
|
2683
3721
|
* @type {number}
|
|
2684
3722
|
* @memberof ClaimBatch
|
|
2685
3723
|
*/
|
|
2686
|
-
'
|
|
3724
|
+
'value_Amount20'?: number | null;
|
|
3725
|
+
/**
|
|
3726
|
+
*
|
|
3727
|
+
* @type {number}
|
|
3728
|
+
* @memberof ClaimBatch
|
|
3729
|
+
*/
|
|
3730
|
+
'value_Amount21'?: number | null;
|
|
3731
|
+
/**
|
|
3732
|
+
*
|
|
3733
|
+
* @type {number}
|
|
3734
|
+
* @memberof ClaimBatch
|
|
3735
|
+
*/
|
|
3736
|
+
'value_Amount22'?: number | null;
|
|
3737
|
+
/**
|
|
3738
|
+
*
|
|
3739
|
+
* @type {number}
|
|
3740
|
+
* @memberof ClaimBatch
|
|
3741
|
+
*/
|
|
3742
|
+
'value_Amount23'?: number | null;
|
|
2687
3743
|
/**
|
|
2688
3744
|
*
|
|
2689
3745
|
* @type {number}
|
|
2690
3746
|
* @memberof ClaimBatch
|
|
2691
3747
|
*/
|
|
3748
|
+
'value_Amount24'?: number | null;
|
|
3749
|
+
/**
|
|
3750
|
+
* The monetary amount related to the value code.
|
|
3751
|
+
* @type {number}
|
|
3752
|
+
* @memberof ClaimBatch
|
|
3753
|
+
*/
|
|
3754
|
+
'value_Amount3'?: number | null;
|
|
3755
|
+
/**
|
|
3756
|
+
* The monetary amount related to the value code.
|
|
3757
|
+
* @type {number}
|
|
3758
|
+
* @memberof ClaimBatch
|
|
3759
|
+
*/
|
|
2692
3760
|
'value_Amount4'?: number | null;
|
|
2693
3761
|
/**
|
|
2694
3762
|
*
|
|
3763
|
+
* @type {number}
|
|
3764
|
+
* @memberof ClaimBatch
|
|
3765
|
+
*/
|
|
3766
|
+
'value_Amount5'?: number | null;
|
|
3767
|
+
/**
|
|
3768
|
+
*
|
|
3769
|
+
* @type {number}
|
|
3770
|
+
* @memberof ClaimBatch
|
|
3771
|
+
*/
|
|
3772
|
+
'value_Amount6'?: number | null;
|
|
3773
|
+
/**
|
|
3774
|
+
*
|
|
3775
|
+
* @type {number}
|
|
3776
|
+
* @memberof ClaimBatch
|
|
3777
|
+
*/
|
|
3778
|
+
'value_Amount7'?: number | null;
|
|
3779
|
+
/**
|
|
3780
|
+
*
|
|
3781
|
+
* @type {number}
|
|
3782
|
+
* @memberof ClaimBatch
|
|
3783
|
+
*/
|
|
3784
|
+
'value_Amount8'?: number | null;
|
|
3785
|
+
/**
|
|
3786
|
+
*
|
|
3787
|
+
* @type {number}
|
|
3788
|
+
* @memberof ClaimBatch
|
|
3789
|
+
*/
|
|
3790
|
+
'value_Amount9'?: number | null;
|
|
3791
|
+
/**
|
|
3792
|
+
* The code indicating a monetary condition which was used by the intermediary to process an institutional claim.
|
|
2695
3793
|
* @type {string}
|
|
2696
3794
|
* @memberof ClaimBatch
|
|
2697
3795
|
*/
|
|
@@ -2701,33 +3799,153 @@ export interface ClaimBatch {
|
|
|
2701
3799
|
* @type {string}
|
|
2702
3800
|
* @memberof ClaimBatch
|
|
2703
3801
|
*/
|
|
3802
|
+
'value_Code10'?: string | null;
|
|
3803
|
+
/**
|
|
3804
|
+
*
|
|
3805
|
+
* @type {string}
|
|
3806
|
+
* @memberof ClaimBatch
|
|
3807
|
+
*/
|
|
3808
|
+
'value_Code11'?: string | null;
|
|
3809
|
+
/**
|
|
3810
|
+
*
|
|
3811
|
+
* @type {string}
|
|
3812
|
+
* @memberof ClaimBatch
|
|
3813
|
+
*/
|
|
3814
|
+
'value_Code12'?: string | null;
|
|
3815
|
+
/**
|
|
3816
|
+
*
|
|
3817
|
+
* @type {string}
|
|
3818
|
+
* @memberof ClaimBatch
|
|
3819
|
+
*/
|
|
3820
|
+
'value_Code13'?: string | null;
|
|
3821
|
+
/**
|
|
3822
|
+
*
|
|
3823
|
+
* @type {string}
|
|
3824
|
+
* @memberof ClaimBatch
|
|
3825
|
+
*/
|
|
3826
|
+
'value_Code14'?: string | null;
|
|
3827
|
+
/**
|
|
3828
|
+
*
|
|
3829
|
+
* @type {string}
|
|
3830
|
+
* @memberof ClaimBatch
|
|
3831
|
+
*/
|
|
3832
|
+
'value_Code15'?: string | null;
|
|
3833
|
+
/**
|
|
3834
|
+
*
|
|
3835
|
+
* @type {string}
|
|
3836
|
+
* @memberof ClaimBatch
|
|
3837
|
+
*/
|
|
3838
|
+
'value_Code16'?: string | null;
|
|
3839
|
+
/**
|
|
3840
|
+
*
|
|
3841
|
+
* @type {string}
|
|
3842
|
+
* @memberof ClaimBatch
|
|
3843
|
+
*/
|
|
3844
|
+
'value_Code17'?: string | null;
|
|
3845
|
+
/**
|
|
3846
|
+
*
|
|
3847
|
+
* @type {string}
|
|
3848
|
+
* @memberof ClaimBatch
|
|
3849
|
+
*/
|
|
3850
|
+
'value_Code18'?: string | null;
|
|
3851
|
+
/**
|
|
3852
|
+
*
|
|
3853
|
+
* @type {string}
|
|
3854
|
+
* @memberof ClaimBatch
|
|
3855
|
+
*/
|
|
3856
|
+
'value_Code19'?: string | null;
|
|
3857
|
+
/**
|
|
3858
|
+
* The code indicating a monetary condition which was used by the intermediary to process an institutional claim.
|
|
3859
|
+
* @type {string}
|
|
3860
|
+
* @memberof ClaimBatch
|
|
3861
|
+
*/
|
|
2704
3862
|
'value_Code2'?: string | null;
|
|
2705
3863
|
/**
|
|
2706
3864
|
*
|
|
2707
3865
|
* @type {string}
|
|
2708
3866
|
* @memberof ClaimBatch
|
|
2709
3867
|
*/
|
|
2710
|
-
'
|
|
3868
|
+
'value_Code20'?: string | null;
|
|
3869
|
+
/**
|
|
3870
|
+
*
|
|
3871
|
+
* @type {string}
|
|
3872
|
+
* @memberof ClaimBatch
|
|
3873
|
+
*/
|
|
3874
|
+
'value_Code21'?: string | null;
|
|
3875
|
+
/**
|
|
3876
|
+
*
|
|
3877
|
+
* @type {string}
|
|
3878
|
+
* @memberof ClaimBatch
|
|
3879
|
+
*/
|
|
3880
|
+
'value_Code22'?: string | null;
|
|
2711
3881
|
/**
|
|
2712
3882
|
*
|
|
2713
3883
|
* @type {string}
|
|
2714
3884
|
* @memberof ClaimBatch
|
|
2715
3885
|
*/
|
|
3886
|
+
'value_Code23'?: string | null;
|
|
3887
|
+
/**
|
|
3888
|
+
*
|
|
3889
|
+
* @type {string}
|
|
3890
|
+
* @memberof ClaimBatch
|
|
3891
|
+
*/
|
|
3892
|
+
'value_Code24'?: string | null;
|
|
3893
|
+
/**
|
|
3894
|
+
* The code indicating a monetary condition which was used by the intermediary to process an institutional claim.
|
|
3895
|
+
* @type {string}
|
|
3896
|
+
* @memberof ClaimBatch
|
|
3897
|
+
*/
|
|
3898
|
+
'value_Code3'?: string | null;
|
|
3899
|
+
/**
|
|
3900
|
+
* The code indicating a monetary condition which was used by the intermediary to process an institutional claim.
|
|
3901
|
+
* @type {string}
|
|
3902
|
+
* @memberof ClaimBatch
|
|
3903
|
+
*/
|
|
2716
3904
|
'value_Code4'?: string | null;
|
|
2717
3905
|
/**
|
|
2718
3906
|
*
|
|
3907
|
+
* @type {string}
|
|
3908
|
+
* @memberof ClaimBatch
|
|
3909
|
+
*/
|
|
3910
|
+
'value_Code5'?: string | null;
|
|
3911
|
+
/**
|
|
3912
|
+
*
|
|
3913
|
+
* @type {string}
|
|
3914
|
+
* @memberof ClaimBatch
|
|
3915
|
+
*/
|
|
3916
|
+
'value_Code6'?: string | null;
|
|
3917
|
+
/**
|
|
3918
|
+
*
|
|
3919
|
+
* @type {string}
|
|
3920
|
+
* @memberof ClaimBatch
|
|
3921
|
+
*/
|
|
3922
|
+
'value_Code7'?: string | null;
|
|
3923
|
+
/**
|
|
3924
|
+
*
|
|
3925
|
+
* @type {string}
|
|
3926
|
+
* @memberof ClaimBatch
|
|
3927
|
+
*/
|
|
3928
|
+
'value_Code8'?: string | null;
|
|
3929
|
+
/**
|
|
3930
|
+
*
|
|
3931
|
+
* @type {string}
|
|
3932
|
+
* @memberof ClaimBatch
|
|
3933
|
+
*/
|
|
3934
|
+
'value_Code9'?: string | null;
|
|
3935
|
+
/**
|
|
3936
|
+
* Indicates that this claim was part of a Refund process.
|
|
2719
3937
|
* @type {number}
|
|
2720
3938
|
* @memberof ClaimBatch
|
|
2721
3939
|
*/
|
|
2722
3940
|
'void_Check_ID'?: number | null;
|
|
2723
3941
|
/**
|
|
2724
|
-
*
|
|
3942
|
+
* Notes that the benefit amount, for disability claims, has been manually overridden. 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.
|
|
2725
3943
|
* @type {boolean}
|
|
2726
3944
|
* @memberof ClaimBatch
|
|
2727
3945
|
*/
|
|
2728
3946
|
'volume_Override': boolean;
|
|
2729
3947
|
/**
|
|
2730
|
-
*
|
|
3948
|
+
* Indicates if this disability payment is a waiting period payment. 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.
|
|
2731
3949
|
* @type {boolean}
|
|
2732
3950
|
* @memberof ClaimBatch
|
|
2733
3951
|
*/
|