@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
|
@@ -21,409 +21,409 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ClaimPreBatch {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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 ClaimPreBatch
|
|
27
27
|
*/
|
|
28
28
|
'claimPreBatch_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* 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.
|
|
31
31
|
* @type {boolean}
|
|
32
32
|
* @memberof ClaimPreBatch
|
|
33
33
|
*/
|
|
34
34
|
'aeoB_Claim': boolean;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof ClaimPreBatch
|
|
39
39
|
*/
|
|
40
40
|
'accident_Date'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
43
43
|
* @type {number}
|
|
44
44
|
* @memberof ClaimPreBatch
|
|
45
45
|
*/
|
|
46
46
|
'account_Key'?: number | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
49
49
|
* @type {number}
|
|
50
50
|
* @memberof ClaimPreBatch
|
|
51
51
|
*/
|
|
52
52
|
'adjusted_From'?: number | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof ClaimPreBatch
|
|
57
57
|
*/
|
|
58
58
|
'admission_Date'?: string | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof ClaimPreBatch
|
|
63
63
|
*/
|
|
64
64
|
'admission_Diagnostic_Code'?: string | null;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof ClaimPreBatch
|
|
69
69
|
*/
|
|
70
70
|
'admission_Hour'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof ClaimPreBatch
|
|
75
75
|
*/
|
|
76
76
|
'admission_Source'?: string | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof ClaimPreBatch
|
|
81
81
|
*/
|
|
82
82
|
'admit_Date'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
85
85
|
* @type {boolean}
|
|
86
86
|
* @memberof ClaimPreBatch
|
|
87
87
|
*/
|
|
88
88
|
'advance_Pay': boolean;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
91
91
|
* @type {boolean}
|
|
92
92
|
* @memberof ClaimPreBatch
|
|
93
93
|
*/
|
|
94
94
|
'advice_To_Pay': boolean;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
97
97
|
* @type {string}
|
|
98
98
|
* @memberof ClaimPreBatch
|
|
99
99
|
*/
|
|
100
100
|
'all_Docs_Rec_Date'?: string | null;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
103
103
|
* @type {string}
|
|
104
104
|
* @memberof ClaimPreBatch
|
|
105
105
|
*/
|
|
106
106
|
'ambulance_DropOff_Address'?: string | null;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
109
109
|
* @type {string}
|
|
110
110
|
* @memberof ClaimPreBatch
|
|
111
111
|
*/
|
|
112
112
|
'ambulance_DropOff_Address2'?: string | null;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
115
115
|
* @type {string}
|
|
116
116
|
* @memberof ClaimPreBatch
|
|
117
117
|
*/
|
|
118
118
|
'ambulance_DropOff_City'?: string | null;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
121
121
|
* @type {string}
|
|
122
122
|
* @memberof ClaimPreBatch
|
|
123
123
|
*/
|
|
124
124
|
'ambulance_DropOff_Location'?: string | null;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
127
127
|
* @type {string}
|
|
128
128
|
* @memberof ClaimPreBatch
|
|
129
129
|
*/
|
|
130
130
|
'ambulance_DropOff_Org_Name'?: string | null;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
133
133
|
* @type {string}
|
|
134
134
|
* @memberof ClaimPreBatch
|
|
135
135
|
*/
|
|
136
136
|
'ambulance_DropOff_State'?: string | null;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
139
139
|
* @type {string}
|
|
140
140
|
* @memberof ClaimPreBatch
|
|
141
141
|
*/
|
|
142
142
|
'ambulance_DropOff_Zip'?: string | null;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
145
145
|
* @type {string}
|
|
146
146
|
* @memberof ClaimPreBatch
|
|
147
147
|
*/
|
|
148
148
|
'ambulance_PickUp_Address'?: string | null;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
151
151
|
* @type {string}
|
|
152
152
|
* @memberof ClaimPreBatch
|
|
153
153
|
*/
|
|
154
154
|
'ambulance_PickUp_Address2'?: string | null;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
157
157
|
* @type {string}
|
|
158
158
|
* @memberof ClaimPreBatch
|
|
159
159
|
*/
|
|
160
160
|
'ambulance_PickUp_City'?: string | null;
|
|
161
161
|
/**
|
|
162
|
-
*
|
|
162
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
163
163
|
* @type {string}
|
|
164
164
|
* @memberof ClaimPreBatch
|
|
165
165
|
*/
|
|
166
166
|
'ambulance_PickUp_Location'?: string | null;
|
|
167
167
|
/**
|
|
168
|
-
*
|
|
168
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
169
169
|
* @type {string}
|
|
170
170
|
* @memberof ClaimPreBatch
|
|
171
171
|
*/
|
|
172
172
|
'ambulance_PickUp_State'?: string | null;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
174
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
175
175
|
* @type {string}
|
|
176
176
|
* @memberof ClaimPreBatch
|
|
177
177
|
*/
|
|
178
178
|
'ambulance_PickUp_Zip'?: string | null;
|
|
179
179
|
/**
|
|
180
|
-
*
|
|
180
|
+
* The date the orthodontic appliance was placed.
|
|
181
181
|
* @type {string}
|
|
182
182
|
* @memberof ClaimPreBatch
|
|
183
183
|
*/
|
|
184
184
|
'appliance_Placed_Date'?: string | null;
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
187
187
|
* @type {string}
|
|
188
188
|
* @memberof ClaimPreBatch
|
|
189
189
|
*/
|
|
190
190
|
'assumed_Care_Date'?: string | null;
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
193
193
|
* @type {string}
|
|
194
194
|
* @memberof ClaimPreBatch
|
|
195
195
|
*/
|
|
196
196
|
'attend_Provider_Address'?: string | null;
|
|
197
197
|
/**
|
|
198
|
-
*
|
|
198
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
199
199
|
* @type {string}
|
|
200
200
|
* @memberof ClaimPreBatch
|
|
201
201
|
*/
|
|
202
202
|
'attend_Provider_Address2'?: string | null;
|
|
203
203
|
/**
|
|
204
|
-
*
|
|
204
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
205
205
|
* @type {string}
|
|
206
206
|
* @memberof ClaimPreBatch
|
|
207
207
|
*/
|
|
208
208
|
'attend_Provider_City'?: string | null;
|
|
209
209
|
/**
|
|
210
|
-
*
|
|
210
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
211
211
|
* @type {string}
|
|
212
212
|
* @memberof ClaimPreBatch
|
|
213
213
|
*/
|
|
214
214
|
'attend_Provider_Federal_ID'?: string | null;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
217
217
|
* @type {string}
|
|
218
218
|
* @memberof ClaimPreBatch
|
|
219
219
|
*/
|
|
220
220
|
'attend_Provider_First_Name'?: string | null;
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
223
223
|
* @type {string}
|
|
224
224
|
* @memberof ClaimPreBatch
|
|
225
225
|
*/
|
|
226
226
|
'attend_Provider_Last_Name'?: string | null;
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
229
229
|
* @type {string}
|
|
230
230
|
* @memberof ClaimPreBatch
|
|
231
231
|
*/
|
|
232
232
|
'attend_Provider_MAID'?: string | null;
|
|
233
233
|
/**
|
|
234
|
-
*
|
|
234
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
235
235
|
* @type {string}
|
|
236
236
|
* @memberof ClaimPreBatch
|
|
237
237
|
*/
|
|
238
238
|
'attend_Provider_NPI'?: string | null;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
241
241
|
* @type {string}
|
|
242
242
|
* @memberof ClaimPreBatch
|
|
243
243
|
*/
|
|
244
244
|
'attend_Provider_Org_Name'?: string | null;
|
|
245
245
|
/**
|
|
246
|
-
*
|
|
246
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
247
247
|
* @type {string}
|
|
248
248
|
* @memberof ClaimPreBatch
|
|
249
249
|
*/
|
|
250
250
|
'attend_Provider_Phone'?: string | null;
|
|
251
251
|
/**
|
|
252
|
-
*
|
|
252
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
253
253
|
* @type {string}
|
|
254
254
|
* @memberof ClaimPreBatch
|
|
255
255
|
*/
|
|
256
256
|
'attend_Provider_State'?: string | null;
|
|
257
257
|
/**
|
|
258
|
-
*
|
|
258
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
259
259
|
* @type {string}
|
|
260
260
|
* @memberof ClaimPreBatch
|
|
261
261
|
*/
|
|
262
262
|
'attend_Provider_Taxonomy'?: string | null;
|
|
263
263
|
/**
|
|
264
|
-
*
|
|
264
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
265
265
|
* @type {string}
|
|
266
266
|
* @memberof ClaimPreBatch
|
|
267
267
|
*/
|
|
268
268
|
'attend_Provider_Zip'?: string | null;
|
|
269
269
|
/**
|
|
270
|
-
*
|
|
270
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
271
271
|
* @type {string}
|
|
272
272
|
* @memberof ClaimPreBatch
|
|
273
273
|
*/
|
|
274
274
|
'attended_Physician_Date'?: string | null;
|
|
275
275
|
/**
|
|
276
|
-
*
|
|
276
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
277
277
|
* @type {number}
|
|
278
278
|
* @memberof ClaimPreBatch
|
|
279
279
|
*/
|
|
280
280
|
'batch_Claim': number;
|
|
281
281
|
/**
|
|
282
|
-
*
|
|
282
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
283
283
|
* @type {number}
|
|
284
284
|
* @memberof ClaimPreBatch
|
|
285
285
|
*/
|
|
286
286
|
'batch_Number': number;
|
|
287
287
|
/**
|
|
288
|
-
*
|
|
288
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
289
289
|
* @type {string}
|
|
290
290
|
* @memberof ClaimPreBatch
|
|
291
291
|
*/
|
|
292
292
|
'beneficiary_ID'?: string | null;
|
|
293
293
|
/**
|
|
294
|
-
*
|
|
294
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
295
295
|
* @type {string}
|
|
296
296
|
* @memberof ClaimPreBatch
|
|
297
297
|
*/
|
|
298
298
|
'bill_Provider_Address'?: string | null;
|
|
299
299
|
/**
|
|
300
|
-
*
|
|
300
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
301
301
|
* @type {string}
|
|
302
302
|
* @memberof ClaimPreBatch
|
|
303
303
|
*/
|
|
304
304
|
'bill_Provider_Address2'?: string | null;
|
|
305
305
|
/**
|
|
306
|
-
*
|
|
306
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
307
307
|
* @type {string}
|
|
308
308
|
* @memberof ClaimPreBatch
|
|
309
309
|
*/
|
|
310
310
|
'bill_Provider_City'?: string | null;
|
|
311
311
|
/**
|
|
312
|
-
*
|
|
312
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
313
313
|
* @type {string}
|
|
314
314
|
* @memberof ClaimPreBatch
|
|
315
315
|
*/
|
|
316
316
|
'bill_Provider_Federal_ID'?: string | null;
|
|
317
317
|
/**
|
|
318
|
-
*
|
|
318
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
319
319
|
* @type {string}
|
|
320
320
|
* @memberof ClaimPreBatch
|
|
321
321
|
*/
|
|
322
322
|
'bill_Provider_First_Name'?: string | null;
|
|
323
323
|
/**
|
|
324
|
-
*
|
|
324
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
325
325
|
* @type {string}
|
|
326
326
|
* @memberof ClaimPreBatch
|
|
327
327
|
*/
|
|
328
328
|
'bill_Provider_Last_Name'?: string | null;
|
|
329
329
|
/**
|
|
330
|
-
*
|
|
330
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
331
331
|
* @type {string}
|
|
332
332
|
* @memberof ClaimPreBatch
|
|
333
333
|
*/
|
|
334
334
|
'bill_Provider_MAID'?: string | null;
|
|
335
335
|
/**
|
|
336
|
-
*
|
|
336
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
337
337
|
* @type {string}
|
|
338
338
|
* @memberof ClaimPreBatch
|
|
339
339
|
*/
|
|
340
340
|
'bill_Provider_NPI'?: string | null;
|
|
341
341
|
/**
|
|
342
|
-
*
|
|
342
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
343
343
|
* @type {string}
|
|
344
344
|
* @memberof ClaimPreBatch
|
|
345
345
|
*/
|
|
346
346
|
'bill_Provider_Org_Name'?: string | null;
|
|
347
347
|
/**
|
|
348
|
-
*
|
|
348
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
349
349
|
* @type {string}
|
|
350
350
|
* @memberof ClaimPreBatch
|
|
351
351
|
*/
|
|
352
352
|
'bill_Provider_Phone'?: string | null;
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
355
355
|
* @type {string}
|
|
356
356
|
* @memberof ClaimPreBatch
|
|
357
357
|
*/
|
|
358
358
|
'bill_Provider_State'?: string | null;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
360
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
361
361
|
* @type {string}
|
|
362
362
|
* @memberof ClaimPreBatch
|
|
363
363
|
*/
|
|
364
364
|
'bill_Provider_Taxonomy'?: string | null;
|
|
365
365
|
/**
|
|
366
|
-
*
|
|
366
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
367
367
|
* @type {string}
|
|
368
368
|
* @memberof ClaimPreBatch
|
|
369
369
|
*/
|
|
370
370
|
'bill_Provider_Zip'?: string | null;
|
|
371
371
|
/**
|
|
372
|
-
*
|
|
372
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
373
373
|
* @type {number}
|
|
374
374
|
* @memberof ClaimPreBatch
|
|
375
375
|
*/
|
|
376
376
|
'billed_Amount'?: number | null;
|
|
377
377
|
/**
|
|
378
|
-
*
|
|
378
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
379
379
|
* @type {boolean}
|
|
380
380
|
* @memberof ClaimPreBatch
|
|
381
381
|
*/
|
|
382
382
|
'calculate_Interest': boolean;
|
|
383
383
|
/**
|
|
384
|
-
*
|
|
384
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
385
385
|
* @type {boolean}
|
|
386
386
|
* @memberof ClaimPreBatch
|
|
387
387
|
*/
|
|
388
388
|
'capitation_Claim': boolean;
|
|
389
389
|
/**
|
|
390
|
-
*
|
|
390
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
391
391
|
* @type {string}
|
|
392
392
|
* @memberof ClaimPreBatch
|
|
393
393
|
*/
|
|
394
394
|
'claim_837_COB'?: string | null;
|
|
395
395
|
/**
|
|
396
|
-
*
|
|
396
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
397
397
|
* @type {string}
|
|
398
398
|
* @memberof ClaimPreBatch
|
|
399
399
|
*/
|
|
400
400
|
'claim_ID'?: string | null;
|
|
401
401
|
/**
|
|
402
|
-
*
|
|
402
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
403
403
|
* @type {string}
|
|
404
404
|
* @memberof ClaimPreBatch
|
|
405
405
|
*/
|
|
406
406
|
'claim_Priority'?: string | null;
|
|
407
407
|
/**
|
|
408
|
-
*
|
|
408
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
409
409
|
* @type {string}
|
|
410
410
|
* @memberof ClaimPreBatch
|
|
411
411
|
*/
|
|
412
412
|
'claim_Status'?: string | null;
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
415
415
|
* @type {string}
|
|
416
416
|
* @memberof ClaimPreBatch
|
|
417
417
|
*/
|
|
418
418
|
'claim_Type'?: string | null;
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
421
421
|
* @type {string}
|
|
422
422
|
* @memberof ClaimPreBatch
|
|
423
423
|
*/
|
|
424
424
|
'closure_Effective_Date'?: string | null;
|
|
425
425
|
/**
|
|
426
|
-
*
|
|
426
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
427
427
|
* @type {string}
|
|
428
428
|
* @memberof ClaimPreBatch
|
|
429
429
|
*/
|
|
@@ -433,663 +433,765 @@ export interface ClaimPreBatch {
|
|
|
433
433
|
* @type {string}
|
|
434
434
|
* @memberof ClaimPreBatch
|
|
435
435
|
*/
|
|
436
|
+
'condition_Code10'?: string | null;
|
|
437
|
+
/**
|
|
438
|
+
*
|
|
439
|
+
* @type {string}
|
|
440
|
+
* @memberof ClaimPreBatch
|
|
441
|
+
*/
|
|
442
|
+
'condition_Code11'?: string | null;
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* @type {string}
|
|
446
|
+
* @memberof ClaimPreBatch
|
|
447
|
+
*/
|
|
448
|
+
'condition_Code12'?: string | null;
|
|
449
|
+
/**
|
|
450
|
+
*
|
|
451
|
+
* @type {string}
|
|
452
|
+
* @memberof ClaimPreBatch
|
|
453
|
+
*/
|
|
454
|
+
'condition_Code13'?: string | null;
|
|
455
|
+
/**
|
|
456
|
+
*
|
|
457
|
+
* @type {string}
|
|
458
|
+
* @memberof ClaimPreBatch
|
|
459
|
+
*/
|
|
460
|
+
'condition_Code14'?: string | null;
|
|
461
|
+
/**
|
|
462
|
+
*
|
|
463
|
+
* @type {string}
|
|
464
|
+
* @memberof ClaimPreBatch
|
|
465
|
+
*/
|
|
466
|
+
'condition_Code15'?: string | null;
|
|
467
|
+
/**
|
|
468
|
+
*
|
|
469
|
+
* @type {string}
|
|
470
|
+
* @memberof ClaimPreBatch
|
|
471
|
+
*/
|
|
472
|
+
'condition_Code16'?: string | null;
|
|
473
|
+
/**
|
|
474
|
+
*
|
|
475
|
+
* @type {string}
|
|
476
|
+
* @memberof ClaimPreBatch
|
|
477
|
+
*/
|
|
478
|
+
'condition_Code17'?: string | null;
|
|
479
|
+
/**
|
|
480
|
+
*
|
|
481
|
+
* @type {string}
|
|
482
|
+
* @memberof ClaimPreBatch
|
|
483
|
+
*/
|
|
484
|
+
'condition_Code18'?: string | null;
|
|
485
|
+
/**
|
|
486
|
+
*
|
|
487
|
+
* @type {string}
|
|
488
|
+
* @memberof ClaimPreBatch
|
|
489
|
+
*/
|
|
490
|
+
'condition_Code19'?: string | null;
|
|
491
|
+
/**
|
|
492
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
493
|
+
* @type {string}
|
|
494
|
+
* @memberof ClaimPreBatch
|
|
495
|
+
*/
|
|
436
496
|
'condition_Code2'?: string | null;
|
|
437
497
|
/**
|
|
438
498
|
*
|
|
439
499
|
* @type {string}
|
|
440
500
|
* @memberof ClaimPreBatch
|
|
441
501
|
*/
|
|
442
|
-
'
|
|
502
|
+
'condition_Code20'?: string | null;
|
|
443
503
|
/**
|
|
444
504
|
*
|
|
445
505
|
* @type {string}
|
|
446
506
|
* @memberof ClaimPreBatch
|
|
447
507
|
*/
|
|
448
|
-
'
|
|
508
|
+
'condition_Code21'?: string | null;
|
|
449
509
|
/**
|
|
450
510
|
*
|
|
451
511
|
* @type {string}
|
|
452
512
|
* @memberof ClaimPreBatch
|
|
453
513
|
*/
|
|
454
|
-
'
|
|
514
|
+
'condition_Code22'?: string | null;
|
|
455
515
|
/**
|
|
456
516
|
*
|
|
457
517
|
* @type {string}
|
|
458
518
|
* @memberof ClaimPreBatch
|
|
459
519
|
*/
|
|
460
|
-
'
|
|
520
|
+
'condition_Code23'?: string | null;
|
|
461
521
|
/**
|
|
462
522
|
*
|
|
463
523
|
* @type {string}
|
|
464
524
|
* @memberof ClaimPreBatch
|
|
465
525
|
*/
|
|
526
|
+
'condition_Code24'?: string | null;
|
|
527
|
+
/**
|
|
528
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
529
|
+
* @type {string}
|
|
530
|
+
* @memberof ClaimPreBatch
|
|
531
|
+
*/
|
|
532
|
+
'condition_Code3'?: string | null;
|
|
533
|
+
/**
|
|
534
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
535
|
+
* @type {string}
|
|
536
|
+
* @memberof ClaimPreBatch
|
|
537
|
+
*/
|
|
538
|
+
'condition_Code4'?: string | null;
|
|
539
|
+
/**
|
|
540
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
541
|
+
* @type {string}
|
|
542
|
+
* @memberof ClaimPreBatch
|
|
543
|
+
*/
|
|
544
|
+
'condition_Code5'?: string | null;
|
|
545
|
+
/**
|
|
546
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
547
|
+
* @type {string}
|
|
548
|
+
* @memberof ClaimPreBatch
|
|
549
|
+
*/
|
|
550
|
+
'condition_Code6'?: string | null;
|
|
551
|
+
/**
|
|
552
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof ClaimPreBatch
|
|
555
|
+
*/
|
|
466
556
|
'condition_Code7'?: string | null;
|
|
467
557
|
/**
|
|
468
558
|
*
|
|
469
559
|
* @type {string}
|
|
470
560
|
* @memberof ClaimPreBatch
|
|
471
561
|
*/
|
|
472
|
-
'
|
|
562
|
+
'condition_Code8'?: string | null;
|
|
473
563
|
/**
|
|
474
564
|
*
|
|
475
565
|
* @type {string}
|
|
476
566
|
* @memberof ClaimPreBatch
|
|
477
567
|
*/
|
|
568
|
+
'condition_Code9'?: string | null;
|
|
569
|
+
/**
|
|
570
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
571
|
+
* @type {string}
|
|
572
|
+
* @memberof ClaimPreBatch
|
|
573
|
+
*/
|
|
574
|
+
'coverage_Start'?: string | null;
|
|
575
|
+
/**
|
|
576
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
577
|
+
* @type {string}
|
|
578
|
+
* @memberof ClaimPreBatch
|
|
579
|
+
*/
|
|
478
580
|
'current_Illness_Date'?: string | null;
|
|
479
581
|
/**
|
|
480
|
-
*
|
|
582
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
481
583
|
* @type {string}
|
|
482
584
|
* @memberof ClaimPreBatch
|
|
483
585
|
*/
|
|
484
586
|
'drG_Code'?: string | null;
|
|
485
587
|
/**
|
|
486
|
-
*
|
|
588
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
487
589
|
* @type {number}
|
|
488
590
|
* @memberof ClaimPreBatch
|
|
489
591
|
*/
|
|
490
592
|
'drG_Quantity'?: number | null;
|
|
491
593
|
/**
|
|
492
|
-
*
|
|
594
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
493
595
|
* @type {string}
|
|
494
596
|
* @memberof ClaimPreBatch
|
|
495
597
|
*/
|
|
496
598
|
'death_Cert_Rec_Date'?: string | null;
|
|
497
599
|
/**
|
|
498
|
-
*
|
|
600
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
499
601
|
* @type {string}
|
|
500
602
|
* @memberof ClaimPreBatch
|
|
501
603
|
*/
|
|
502
604
|
'delivery_Date'?: string | null;
|
|
503
605
|
/**
|
|
504
|
-
*
|
|
606
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
505
607
|
* @type {string}
|
|
506
608
|
* @memberof ClaimPreBatch
|
|
507
609
|
*/
|
|
508
610
|
'delivery_Type'?: string | null;
|
|
509
611
|
/**
|
|
510
|
-
*
|
|
612
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
511
613
|
* @type {string}
|
|
512
614
|
* @memberof ClaimPreBatch
|
|
513
615
|
*/
|
|
514
616
|
'dep_SSDI_End_Date'?: string | null;
|
|
515
617
|
/**
|
|
516
|
-
*
|
|
618
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
517
619
|
* @type {string}
|
|
518
620
|
* @memberof ClaimPreBatch
|
|
519
621
|
*/
|
|
520
622
|
'diagnostic_Code1'?: string | null;
|
|
521
623
|
/**
|
|
522
|
-
*
|
|
624
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
523
625
|
* @type {string}
|
|
524
626
|
* @memberof ClaimPreBatch
|
|
525
627
|
*/
|
|
526
628
|
'diagnostic_Code10'?: string | null;
|
|
527
629
|
/**
|
|
528
|
-
*
|
|
630
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
529
631
|
* @type {string}
|
|
530
632
|
* @memberof ClaimPreBatch
|
|
531
633
|
*/
|
|
532
634
|
'diagnostic_Code11'?: string | null;
|
|
533
635
|
/**
|
|
534
|
-
*
|
|
636
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
535
637
|
* @type {string}
|
|
536
638
|
* @memberof ClaimPreBatch
|
|
537
639
|
*/
|
|
538
640
|
'diagnostic_Code12'?: string | null;
|
|
539
641
|
/**
|
|
540
|
-
*
|
|
642
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
541
643
|
* @type {string}
|
|
542
644
|
* @memberof ClaimPreBatch
|
|
543
645
|
*/
|
|
544
646
|
'diagnostic_Code13'?: string | null;
|
|
545
647
|
/**
|
|
546
|
-
*
|
|
648
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
547
649
|
* @type {string}
|
|
548
650
|
* @memberof ClaimPreBatch
|
|
549
651
|
*/
|
|
550
652
|
'diagnostic_Code14'?: string | null;
|
|
551
653
|
/**
|
|
552
|
-
*
|
|
654
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
553
655
|
* @type {string}
|
|
554
656
|
* @memberof ClaimPreBatch
|
|
555
657
|
*/
|
|
556
658
|
'diagnostic_Code15'?: string | null;
|
|
557
659
|
/**
|
|
558
|
-
*
|
|
660
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
559
661
|
* @type {string}
|
|
560
662
|
* @memberof ClaimPreBatch
|
|
561
663
|
*/
|
|
562
664
|
'diagnostic_Code16'?: string | null;
|
|
563
665
|
/**
|
|
564
|
-
*
|
|
666
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
565
667
|
* @type {string}
|
|
566
668
|
* @memberof ClaimPreBatch
|
|
567
669
|
*/
|
|
568
670
|
'diagnostic_Code17'?: string | null;
|
|
569
671
|
/**
|
|
570
|
-
*
|
|
672
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
571
673
|
* @type {string}
|
|
572
674
|
* @memberof ClaimPreBatch
|
|
573
675
|
*/
|
|
574
676
|
'diagnostic_Code18'?: string | null;
|
|
575
677
|
/**
|
|
576
|
-
*
|
|
678
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
577
679
|
* @type {string}
|
|
578
680
|
* @memberof ClaimPreBatch
|
|
579
681
|
*/
|
|
580
682
|
'diagnostic_Code19'?: string | null;
|
|
581
683
|
/**
|
|
582
|
-
*
|
|
684
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
583
685
|
* @type {string}
|
|
584
686
|
* @memberof ClaimPreBatch
|
|
585
687
|
*/
|
|
586
688
|
'diagnostic_Code2'?: string | null;
|
|
587
689
|
/**
|
|
588
|
-
*
|
|
690
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
589
691
|
* @type {string}
|
|
590
692
|
* @memberof ClaimPreBatch
|
|
591
693
|
*/
|
|
592
694
|
'diagnostic_Code20'?: string | null;
|
|
593
695
|
/**
|
|
594
|
-
*
|
|
696
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
595
697
|
* @type {string}
|
|
596
698
|
* @memberof ClaimPreBatch
|
|
597
699
|
*/
|
|
598
700
|
'diagnostic_Code21'?: string | null;
|
|
599
701
|
/**
|
|
600
|
-
*
|
|
702
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
601
703
|
* @type {string}
|
|
602
704
|
* @memberof ClaimPreBatch
|
|
603
705
|
*/
|
|
604
706
|
'diagnostic_Code22'?: string | null;
|
|
605
707
|
/**
|
|
606
|
-
*
|
|
708
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
607
709
|
* @type {string}
|
|
608
710
|
* @memberof ClaimPreBatch
|
|
609
711
|
*/
|
|
610
712
|
'diagnostic_Code23'?: string | null;
|
|
611
713
|
/**
|
|
612
|
-
*
|
|
714
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
613
715
|
* @type {string}
|
|
614
716
|
* @memberof ClaimPreBatch
|
|
615
717
|
*/
|
|
616
718
|
'diagnostic_Code24'?: string | null;
|
|
617
719
|
/**
|
|
618
|
-
*
|
|
720
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
619
721
|
* @type {string}
|
|
620
722
|
* @memberof ClaimPreBatch
|
|
621
723
|
*/
|
|
622
724
|
'diagnostic_Code3'?: string | null;
|
|
623
725
|
/**
|
|
624
|
-
*
|
|
726
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
625
727
|
* @type {string}
|
|
626
728
|
* @memberof ClaimPreBatch
|
|
627
729
|
*/
|
|
628
730
|
'diagnostic_Code4'?: string | null;
|
|
629
731
|
/**
|
|
630
|
-
*
|
|
732
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
631
733
|
* @type {string}
|
|
632
734
|
* @memberof ClaimPreBatch
|
|
633
735
|
*/
|
|
634
736
|
'diagnostic_Code5'?: string | null;
|
|
635
737
|
/**
|
|
636
|
-
*
|
|
738
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
637
739
|
* @type {string}
|
|
638
740
|
* @memberof ClaimPreBatch
|
|
639
741
|
*/
|
|
640
742
|
'diagnostic_Code6'?: string | null;
|
|
641
743
|
/**
|
|
642
|
-
*
|
|
744
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
643
745
|
* @type {string}
|
|
644
746
|
* @memberof ClaimPreBatch
|
|
645
747
|
*/
|
|
646
748
|
'diagnostic_Code7'?: string | null;
|
|
647
749
|
/**
|
|
648
|
-
*
|
|
750
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
649
751
|
* @type {string}
|
|
650
752
|
* @memberof ClaimPreBatch
|
|
651
753
|
*/
|
|
652
754
|
'diagnostic_Code8'?: string | null;
|
|
653
755
|
/**
|
|
654
|
-
*
|
|
756
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
655
757
|
* @type {string}
|
|
656
758
|
* @memberof ClaimPreBatch
|
|
657
759
|
*/
|
|
658
760
|
'diagnostic_Code9'?: string | null;
|
|
659
761
|
/**
|
|
660
|
-
*
|
|
762
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
661
763
|
* @type {string}
|
|
662
764
|
* @memberof ClaimPreBatch
|
|
663
765
|
*/
|
|
664
766
|
'disability_Date'?: string | null;
|
|
665
767
|
/**
|
|
666
|
-
*
|
|
768
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
667
769
|
* @type {string}
|
|
668
770
|
* @memberof ClaimPreBatch
|
|
669
771
|
*/
|
|
670
772
|
'disability_End_Date'?: string | null;
|
|
671
773
|
/**
|
|
672
|
-
*
|
|
774
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
673
775
|
* @type {string}
|
|
674
776
|
* @memberof ClaimPreBatch
|
|
675
777
|
*/
|
|
676
778
|
'disability_Type'?: string | null;
|
|
677
779
|
/**
|
|
678
|
-
*
|
|
780
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
679
781
|
* @type {string}
|
|
680
782
|
* @memberof ClaimPreBatch
|
|
681
783
|
*/
|
|
682
784
|
'disabled_By_Physician'?: string | null;
|
|
683
785
|
/**
|
|
684
|
-
*
|
|
786
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
685
787
|
* @type {string}
|
|
686
788
|
* @memberof ClaimPreBatch
|
|
687
789
|
*/
|
|
688
790
|
'discharge_Date'?: string | null;
|
|
689
791
|
/**
|
|
690
|
-
*
|
|
792
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
691
793
|
* @type {string}
|
|
692
794
|
* @memberof ClaimPreBatch
|
|
693
795
|
*/
|
|
694
796
|
'discharge_Hour'?: string | null;
|
|
695
797
|
/**
|
|
696
|
-
*
|
|
798
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
697
799
|
* @type {string}
|
|
698
800
|
* @memberof ClaimPreBatch
|
|
699
801
|
*/
|
|
700
802
|
'division_ID'?: string | null;
|
|
701
803
|
/**
|
|
702
|
-
*
|
|
804
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
703
805
|
* @type {string}
|
|
704
806
|
* @memberof ClaimPreBatch
|
|
705
807
|
*/
|
|
706
808
|
'eCode_Diagnostic_Code'?: string | null;
|
|
707
809
|
/**
|
|
708
|
-
*
|
|
810
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
709
811
|
* @type {string}
|
|
710
812
|
* @memberof ClaimPreBatch
|
|
711
813
|
*/
|
|
712
814
|
'eCode_Diagnostic_Code10'?: string | null;
|
|
713
815
|
/**
|
|
714
|
-
*
|
|
816
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
715
817
|
* @type {string}
|
|
716
818
|
* @memberof ClaimPreBatch
|
|
717
819
|
*/
|
|
718
820
|
'eCode_Diagnostic_Code11'?: string | null;
|
|
719
821
|
/**
|
|
720
|
-
*
|
|
822
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
721
823
|
* @type {string}
|
|
722
824
|
* @memberof ClaimPreBatch
|
|
723
825
|
*/
|
|
724
826
|
'eCode_Diagnostic_Code12'?: string | null;
|
|
725
827
|
/**
|
|
726
|
-
*
|
|
828
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
727
829
|
* @type {string}
|
|
728
830
|
* @memberof ClaimPreBatch
|
|
729
831
|
*/
|
|
730
832
|
'eCode_Diagnostic_Code2'?: string | null;
|
|
731
833
|
/**
|
|
732
|
-
*
|
|
834
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
733
835
|
* @type {string}
|
|
734
836
|
* @memberof ClaimPreBatch
|
|
735
837
|
*/
|
|
736
838
|
'eCode_Diagnostic_Code3'?: string | null;
|
|
737
839
|
/**
|
|
738
|
-
*
|
|
840
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
739
841
|
* @type {string}
|
|
740
842
|
* @memberof ClaimPreBatch
|
|
741
843
|
*/
|
|
742
844
|
'eCode_Diagnostic_Code4'?: string | null;
|
|
743
845
|
/**
|
|
744
|
-
*
|
|
846
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
745
847
|
* @type {string}
|
|
746
848
|
* @memberof ClaimPreBatch
|
|
747
849
|
*/
|
|
748
850
|
'eCode_Diagnostic_Code5'?: string | null;
|
|
749
851
|
/**
|
|
750
|
-
*
|
|
852
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
751
853
|
* @type {string}
|
|
752
854
|
* @memberof ClaimPreBatch
|
|
753
855
|
*/
|
|
754
856
|
'eCode_Diagnostic_Code6'?: string | null;
|
|
755
857
|
/**
|
|
756
|
-
*
|
|
858
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
757
859
|
* @type {string}
|
|
758
860
|
* @memberof ClaimPreBatch
|
|
759
861
|
*/
|
|
760
862
|
'eCode_Diagnostic_Code7'?: string | null;
|
|
761
863
|
/**
|
|
762
|
-
*
|
|
864
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
763
865
|
* @type {string}
|
|
764
866
|
* @memberof ClaimPreBatch
|
|
765
867
|
*/
|
|
766
868
|
'eCode_Diagnostic_Code8'?: string | null;
|
|
767
869
|
/**
|
|
768
|
-
*
|
|
870
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
769
871
|
* @type {string}
|
|
770
872
|
* @memberof ClaimPreBatch
|
|
771
873
|
*/
|
|
772
874
|
'eCode_Diagnostic_Code9'?: string | null;
|
|
773
875
|
/**
|
|
774
|
-
*
|
|
876
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
775
877
|
* @type {string}
|
|
776
878
|
* @memberof ClaimPreBatch
|
|
777
879
|
*/
|
|
778
880
|
'epsdT_Condition_Indicator1'?: string | null;
|
|
779
881
|
/**
|
|
780
|
-
*
|
|
882
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
781
883
|
* @type {string}
|
|
782
884
|
* @memberof ClaimPreBatch
|
|
783
885
|
*/
|
|
784
886
|
'epsdT_Condition_Indicator2'?: string | null;
|
|
785
887
|
/**
|
|
786
|
-
*
|
|
888
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
787
889
|
* @type {string}
|
|
788
890
|
* @memberof ClaimPreBatch
|
|
789
891
|
*/
|
|
790
892
|
'epsdT_Condition_Indicator3'?: string | null;
|
|
791
893
|
/**
|
|
792
|
-
*
|
|
894
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
793
895
|
* @type {string}
|
|
794
896
|
* @memberof ClaimPreBatch
|
|
795
897
|
*/
|
|
796
898
|
'epsdT_Referral_Given'?: string | null;
|
|
797
899
|
/**
|
|
798
|
-
*
|
|
900
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
799
901
|
* @type {string}
|
|
800
902
|
* @memberof ClaimPreBatch
|
|
801
903
|
*/
|
|
802
904
|
'entry_Date'?: string;
|
|
803
905
|
/**
|
|
804
|
-
*
|
|
906
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
805
907
|
* @type {string}
|
|
806
908
|
* @memberof ClaimPreBatch
|
|
807
909
|
*/
|
|
808
910
|
'entry_User'?: string | null;
|
|
809
911
|
/**
|
|
810
|
-
*
|
|
912
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
811
913
|
* @type {string}
|
|
812
914
|
* @memberof ClaimPreBatch
|
|
813
915
|
*/
|
|
814
916
|
'error_Beneficiary'?: string | null;
|
|
815
917
|
/**
|
|
816
|
-
*
|
|
918
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
817
919
|
* @type {string}
|
|
818
920
|
* @memberof ClaimPreBatch
|
|
819
921
|
*/
|
|
820
922
|
'ex_Code1'?: string | null;
|
|
821
923
|
/**
|
|
822
|
-
*
|
|
924
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
823
925
|
* @type {string}
|
|
824
926
|
* @memberof ClaimPreBatch
|
|
825
927
|
*/
|
|
826
928
|
'ex_Code2'?: string | null;
|
|
827
929
|
/**
|
|
828
|
-
*
|
|
930
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
829
931
|
* @type {string}
|
|
830
932
|
* @memberof ClaimPreBatch
|
|
831
933
|
*/
|
|
832
934
|
'ex_Code3'?: string | null;
|
|
833
935
|
/**
|
|
834
|
-
*
|
|
936
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
835
937
|
* @type {string}
|
|
836
938
|
* @memberof ClaimPreBatch
|
|
837
939
|
*/
|
|
838
940
|
'ex_Code4'?: string | null;
|
|
839
941
|
/**
|
|
840
|
-
*
|
|
942
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
841
943
|
* @type {string}
|
|
842
944
|
* @memberof ClaimPreBatch
|
|
843
945
|
*/
|
|
844
946
|
'exhaust_Date'?: string | null;
|
|
845
947
|
/**
|
|
846
|
-
*
|
|
948
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
847
949
|
* @type {number}
|
|
848
950
|
* @memberof ClaimPreBatch
|
|
849
951
|
*/
|
|
850
952
|
'expected_Typical_Duration'?: number | null;
|
|
851
953
|
/**
|
|
852
|
-
*
|
|
954
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
853
955
|
* @type {number}
|
|
854
956
|
* @memberof ClaimPreBatch
|
|
855
957
|
*/
|
|
856
958
|
'ficA_Percent'?: number | null;
|
|
857
959
|
/**
|
|
858
|
-
*
|
|
960
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
859
961
|
* @type {number}
|
|
860
962
|
* @memberof ClaimPreBatch
|
|
861
963
|
*/
|
|
862
964
|
'federal_Withheld'?: number | null;
|
|
863
965
|
/**
|
|
864
|
-
*
|
|
966
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
865
967
|
* @type {string}
|
|
866
968
|
* @memberof ClaimPreBatch
|
|
867
969
|
*/
|
|
868
970
|
'filing_Indicator'?: string | null;
|
|
869
971
|
/**
|
|
870
|
-
*
|
|
972
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
871
973
|
* @type {string}
|
|
872
974
|
* @memberof ClaimPreBatch
|
|
873
975
|
*/
|
|
874
976
|
'followUp_Date'?: string | null;
|
|
875
977
|
/**
|
|
876
|
-
*
|
|
978
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
877
979
|
* @type {string}
|
|
878
980
|
* @memberof ClaimPreBatch
|
|
879
981
|
*/
|
|
880
982
|
'followUp_Ex_Code'?: string | null;
|
|
881
983
|
/**
|
|
882
|
-
*
|
|
984
|
+
* Medicare Resubmission code for the claim. Indicated in Box 22 of the claim report.
|
|
883
985
|
* @type {string}
|
|
884
986
|
* @memberof ClaimPreBatch
|
|
885
987
|
*/
|
|
886
988
|
'freq_Code'?: string | null;
|
|
887
989
|
/**
|
|
888
|
-
*
|
|
990
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
889
991
|
* @type {string}
|
|
890
992
|
* @memberof ClaimPreBatch
|
|
891
993
|
*/
|
|
892
994
|
'group_ID'?: string | null;
|
|
893
995
|
/**
|
|
894
|
-
*
|
|
996
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
895
997
|
* @type {string}
|
|
896
998
|
* @memberof ClaimPreBatch
|
|
897
999
|
*/
|
|
898
1000
|
'hearing_Vision_RX_Date'?: string | null;
|
|
899
1001
|
/**
|
|
900
|
-
*
|
|
1002
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
901
1003
|
* @type {string}
|
|
902
1004
|
* @memberof ClaimPreBatch
|
|
903
1005
|
*/
|
|
904
1006
|
'image_File_Location'?: string | null;
|
|
905
1007
|
/**
|
|
906
|
-
*
|
|
1008
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
907
1009
|
* @type {string}
|
|
908
1010
|
* @memberof ClaimPreBatch
|
|
909
1011
|
*/
|
|
910
1012
|
'image_File_Location2'?: string | null;
|
|
911
1013
|
/**
|
|
912
|
-
*
|
|
1014
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
913
1015
|
* @type {string}
|
|
914
1016
|
* @memberof ClaimPreBatch
|
|
915
1017
|
*/
|
|
916
1018
|
'image_File_Location3'?: string | null;
|
|
917
1019
|
/**
|
|
918
|
-
*
|
|
1020
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
919
1021
|
* @type {string}
|
|
920
1022
|
* @memberof ClaimPreBatch
|
|
921
1023
|
*/
|
|
922
1024
|
'image_File_Location4'?: string | null;
|
|
923
1025
|
/**
|
|
924
|
-
*
|
|
1026
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
925
1027
|
* @type {string}
|
|
926
1028
|
* @memberof ClaimPreBatch
|
|
927
1029
|
*/
|
|
928
1030
|
'initial_Treatment_Date'?: string | null;
|
|
929
1031
|
/**
|
|
930
|
-
*
|
|
1032
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
931
1033
|
* @type {string}
|
|
932
1034
|
* @memberof ClaimPreBatch
|
|
933
1035
|
*/
|
|
934
1036
|
'insured_Address'?: string | null;
|
|
935
1037
|
/**
|
|
936
|
-
*
|
|
1038
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
937
1039
|
* @type {string}
|
|
938
1040
|
* @memberof ClaimPreBatch
|
|
939
1041
|
*/
|
|
940
1042
|
'insured_Address2'?: string | null;
|
|
941
1043
|
/**
|
|
942
|
-
*
|
|
1044
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
943
1045
|
* @type {string}
|
|
944
1046
|
* @memberof ClaimPreBatch
|
|
945
1047
|
*/
|
|
946
1048
|
'insured_Alternate_ID'?: string | null;
|
|
947
1049
|
/**
|
|
948
|
-
*
|
|
1050
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
949
1051
|
* @type {string}
|
|
950
1052
|
* @memberof ClaimPreBatch
|
|
951
1053
|
*/
|
|
952
1054
|
'insured_Birth_Date'?: string | null;
|
|
953
1055
|
/**
|
|
954
|
-
*
|
|
1056
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
955
1057
|
* @type {string}
|
|
956
1058
|
* @memberof ClaimPreBatch
|
|
957
1059
|
*/
|
|
958
1060
|
'insured_City'?: string | null;
|
|
959
1061
|
/**
|
|
960
|
-
*
|
|
1062
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
961
1063
|
* @type {string}
|
|
962
1064
|
* @memberof ClaimPreBatch
|
|
963
1065
|
*/
|
|
964
1066
|
'insured_Employer_ID'?: string | null;
|
|
965
1067
|
/**
|
|
966
|
-
*
|
|
1068
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
967
1069
|
* @type {string}
|
|
968
1070
|
* @memberof ClaimPreBatch
|
|
969
1071
|
*/
|
|
970
1072
|
'insured_First_Name'?: string | null;
|
|
971
1073
|
/**
|
|
972
|
-
*
|
|
1074
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
973
1075
|
* @type {string}
|
|
974
1076
|
* @memberof ClaimPreBatch
|
|
975
1077
|
*/
|
|
976
1078
|
'insured_ID'?: string | null;
|
|
977
1079
|
/**
|
|
978
|
-
*
|
|
1080
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
979
1081
|
* @type {string}
|
|
980
1082
|
* @memberof ClaimPreBatch
|
|
981
1083
|
*/
|
|
982
1084
|
'insured_Last_Name'?: string | null;
|
|
983
1085
|
/**
|
|
984
|
-
*
|
|
1086
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
985
1087
|
* @type {string}
|
|
986
1088
|
* @memberof ClaimPreBatch
|
|
987
1089
|
*/
|
|
988
1090
|
'insured_Phone'?: string | null;
|
|
989
1091
|
/**
|
|
990
|
-
*
|
|
1092
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
991
1093
|
* @type {string}
|
|
992
1094
|
* @memberof ClaimPreBatch
|
|
993
1095
|
*/
|
|
994
1096
|
'insured_Policy_Number'?: string | null;
|
|
995
1097
|
/**
|
|
996
|
-
*
|
|
1098
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
997
1099
|
* @type {string}
|
|
998
1100
|
* @memberof ClaimPreBatch
|
|
999
1101
|
*/
|
|
1000
1102
|
'insured_SSN'?: string | null;
|
|
1001
1103
|
/**
|
|
1002
|
-
*
|
|
1104
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1003
1105
|
* @type {string}
|
|
1004
1106
|
* @memberof ClaimPreBatch
|
|
1005
1107
|
*/
|
|
1006
1108
|
'insured_Sex'?: string | null;
|
|
1007
1109
|
/**
|
|
1008
|
-
*
|
|
1110
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1009
1111
|
* @type {string}
|
|
1010
1112
|
* @memberof ClaimPreBatch
|
|
1011
1113
|
*/
|
|
1012
1114
|
'insured_State'?: string | null;
|
|
1013
1115
|
/**
|
|
1014
|
-
*
|
|
1116
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1015
1117
|
* @type {string}
|
|
1016
1118
|
* @memberof ClaimPreBatch
|
|
1017
1119
|
*/
|
|
1018
1120
|
'insured_Zip'?: string | null;
|
|
1019
1121
|
/**
|
|
1020
|
-
*
|
|
1122
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1021
1123
|
* @type {string}
|
|
1022
1124
|
* @memberof ClaimPreBatch
|
|
1023
1125
|
*/
|
|
1024
1126
|
'job_Type'?: string | null;
|
|
1025
1127
|
/**
|
|
1026
|
-
*
|
|
1128
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1027
1129
|
* @type {string}
|
|
1028
1130
|
* @memberof ClaimPreBatch
|
|
1029
1131
|
*/
|
|
1030
1132
|
'ltD_Effective_Date'?: string | null;
|
|
1031
1133
|
/**
|
|
1032
|
-
*
|
|
1134
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1033
1135
|
* @type {string}
|
|
1034
1136
|
* @memberof ClaimPreBatch
|
|
1035
1137
|
*/
|
|
1036
1138
|
'ltD_Packet_Date'?: string | null;
|
|
1037
1139
|
/**
|
|
1038
|
-
*
|
|
1140
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1039
1141
|
* @type {string}
|
|
1040
1142
|
* @memberof ClaimPreBatch
|
|
1041
1143
|
*/
|
|
1042
1144
|
'last_Day_Worked'?: string | null;
|
|
1043
1145
|
/**
|
|
1044
|
-
*
|
|
1146
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1045
1147
|
* @type {string}
|
|
1046
1148
|
* @memberof ClaimPreBatch
|
|
1047
1149
|
*/
|
|
1048
1150
|
'last_Physician_Warrant_Date'?: string | null;
|
|
1049
1151
|
/**
|
|
1050
|
-
*
|
|
1152
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1051
1153
|
* @type {string}
|
|
1052
1154
|
* @memberof ClaimPreBatch
|
|
1053
1155
|
*/
|
|
1054
1156
|
'last_Seen_Date'?: string | null;
|
|
1055
1157
|
/**
|
|
1056
|
-
*
|
|
1158
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
1057
1159
|
* @type {boolean}
|
|
1058
1160
|
* @memberof ClaimPreBatch
|
|
1059
1161
|
*/
|
|
1060
1162
|
'liability_Injury': boolean;
|
|
1061
1163
|
/**
|
|
1062
|
-
*
|
|
1164
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1063
1165
|
* @type {string}
|
|
1064
1166
|
* @memberof ClaimPreBatch
|
|
1065
1167
|
*/
|
|
1066
1168
|
'mail_To'?: string | null;
|
|
1067
1169
|
/**
|
|
1068
|
-
*
|
|
1170
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1069
1171
|
* @type {string}
|
|
1070
1172
|
* @memberof ClaimPreBatch
|
|
1071
1173
|
*/
|
|
1072
1174
|
'member_Seq'?: string | null;
|
|
1073
1175
|
/**
|
|
1074
|
-
*
|
|
1176
|
+
* The number of months the orthodontic treatment will be.
|
|
1075
1177
|
* @type {number}
|
|
1076
1178
|
* @memberof ClaimPreBatch
|
|
1077
1179
|
*/
|
|
1078
1180
|
'months_Of_Treatment'?: number | null;
|
|
1079
1181
|
/**
|
|
1080
|
-
*
|
|
1182
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1081
1183
|
* @type {string}
|
|
1082
1184
|
* @memberof ClaimPreBatch
|
|
1083
1185
|
*/
|
|
1084
1186
|
'network_ID'?: string | null;
|
|
1085
1187
|
/**
|
|
1086
|
-
*
|
|
1188
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
1087
1189
|
* @type {boolean}
|
|
1088
1190
|
* @memberof ClaimPreBatch
|
|
1089
1191
|
*/
|
|
1090
1192
|
'occupational': boolean;
|
|
1091
1193
|
/**
|
|
1092
|
-
*
|
|
1194
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1093
1195
|
* @type {string}
|
|
1094
1196
|
* @memberof ClaimPreBatch
|
|
1095
1197
|
*/
|
|
@@ -1099,1143 +1201,2079 @@ export interface ClaimPreBatch {
|
|
|
1099
1201
|
* @type {string}
|
|
1100
1202
|
* @memberof ClaimPreBatch
|
|
1101
1203
|
*/
|
|
1102
|
-
'
|
|
1204
|
+
'occurrence_Code10'?: string | null;
|
|
1103
1205
|
/**
|
|
1104
1206
|
*
|
|
1105
1207
|
* @type {string}
|
|
1106
1208
|
* @memberof ClaimPreBatch
|
|
1107
1209
|
*/
|
|
1108
|
-
'
|
|
1210
|
+
'occurrence_Code11'?: string | null;
|
|
1109
1211
|
/**
|
|
1110
1212
|
*
|
|
1111
1213
|
* @type {string}
|
|
1112
1214
|
* @memberof ClaimPreBatch
|
|
1113
1215
|
*/
|
|
1114
|
-
'
|
|
1216
|
+
'occurrence_Code12'?: string | null;
|
|
1115
1217
|
/**
|
|
1116
1218
|
*
|
|
1117
1219
|
* @type {string}
|
|
1118
1220
|
* @memberof ClaimPreBatch
|
|
1119
1221
|
*/
|
|
1120
|
-
'
|
|
1222
|
+
'occurrence_Code13'?: string | null;
|
|
1121
1223
|
/**
|
|
1122
1224
|
*
|
|
1123
1225
|
* @type {string}
|
|
1124
1226
|
* @memberof ClaimPreBatch
|
|
1125
1227
|
*/
|
|
1126
|
-
'
|
|
1228
|
+
'occurrence_Code14'?: string | null;
|
|
1127
1229
|
/**
|
|
1128
1230
|
*
|
|
1129
1231
|
* @type {string}
|
|
1130
1232
|
* @memberof ClaimPreBatch
|
|
1131
1233
|
*/
|
|
1132
|
-
'
|
|
1234
|
+
'occurrence_Code15'?: string | null;
|
|
1133
1235
|
/**
|
|
1134
1236
|
*
|
|
1135
1237
|
* @type {string}
|
|
1136
1238
|
* @memberof ClaimPreBatch
|
|
1137
1239
|
*/
|
|
1138
|
-
'
|
|
1240
|
+
'occurrence_Code16'?: string | null;
|
|
1139
1241
|
/**
|
|
1140
1242
|
*
|
|
1141
1243
|
* @type {string}
|
|
1142
1244
|
* @memberof ClaimPreBatch
|
|
1143
1245
|
*/
|
|
1144
|
-
'
|
|
1246
|
+
'occurrence_Code17'?: string | null;
|
|
1145
1247
|
/**
|
|
1146
1248
|
*
|
|
1147
1249
|
* @type {string}
|
|
1148
1250
|
* @memberof ClaimPreBatch
|
|
1149
1251
|
*/
|
|
1150
|
-
'
|
|
1252
|
+
'occurrence_Code18'?: string | null;
|
|
1151
1253
|
/**
|
|
1152
1254
|
*
|
|
1153
1255
|
* @type {string}
|
|
1154
1256
|
* @memberof ClaimPreBatch
|
|
1155
1257
|
*/
|
|
1156
|
-
'
|
|
1258
|
+
'occurrence_Code19'?: string | null;
|
|
1157
1259
|
/**
|
|
1158
|
-
*
|
|
1260
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1159
1261
|
* @type {string}
|
|
1160
1262
|
* @memberof ClaimPreBatch
|
|
1161
1263
|
*/
|
|
1162
|
-
'
|
|
1264
|
+
'occurrence_Code2'?: string | null;
|
|
1163
1265
|
/**
|
|
1164
1266
|
*
|
|
1165
1267
|
* @type {string}
|
|
1166
1268
|
* @memberof ClaimPreBatch
|
|
1167
1269
|
*/
|
|
1168
|
-
'
|
|
1270
|
+
'occurrence_Code20'?: string | null;
|
|
1169
1271
|
/**
|
|
1170
1272
|
*
|
|
1171
1273
|
* @type {string}
|
|
1172
1274
|
* @memberof ClaimPreBatch
|
|
1173
1275
|
*/
|
|
1174
|
-
'
|
|
1276
|
+
'occurrence_Code21'?: string | null;
|
|
1175
1277
|
/**
|
|
1176
1278
|
*
|
|
1177
1279
|
* @type {string}
|
|
1178
1280
|
* @memberof ClaimPreBatch
|
|
1179
1281
|
*/
|
|
1180
|
-
'
|
|
1282
|
+
'occurrence_Code22'?: string | null;
|
|
1181
1283
|
/**
|
|
1182
1284
|
*
|
|
1183
1285
|
* @type {string}
|
|
1184
1286
|
* @memberof ClaimPreBatch
|
|
1185
1287
|
*/
|
|
1186
|
-
'
|
|
1288
|
+
'occurrence_Code23'?: string | null;
|
|
1187
1289
|
/**
|
|
1188
1290
|
*
|
|
1189
1291
|
* @type {string}
|
|
1190
1292
|
* @memberof ClaimPreBatch
|
|
1191
1293
|
*/
|
|
1192
|
-
'
|
|
1294
|
+
'occurrence_Code24'?: string | null;
|
|
1193
1295
|
/**
|
|
1194
|
-
*
|
|
1296
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1195
1297
|
* @type {string}
|
|
1196
1298
|
* @memberof ClaimPreBatch
|
|
1197
1299
|
*/
|
|
1198
|
-
'
|
|
1300
|
+
'occurrence_Code3'?: string | null;
|
|
1199
1301
|
/**
|
|
1200
|
-
*
|
|
1302
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1201
1303
|
* @type {string}
|
|
1202
1304
|
* @memberof ClaimPreBatch
|
|
1203
1305
|
*/
|
|
1204
|
-
'
|
|
1306
|
+
'occurrence_Code4'?: string | null;
|
|
1205
1307
|
/**
|
|
1206
1308
|
*
|
|
1207
1309
|
* @type {string}
|
|
1208
1310
|
* @memberof ClaimPreBatch
|
|
1209
1311
|
*/
|
|
1210
|
-
'
|
|
1312
|
+
'occurrence_Code5'?: string | null;
|
|
1211
1313
|
/**
|
|
1212
1314
|
*
|
|
1213
1315
|
* @type {string}
|
|
1214
1316
|
* @memberof ClaimPreBatch
|
|
1215
1317
|
*/
|
|
1216
|
-
'
|
|
1318
|
+
'occurrence_Code6'?: string | null;
|
|
1217
1319
|
/**
|
|
1218
1320
|
*
|
|
1219
1321
|
* @type {string}
|
|
1220
1322
|
* @memberof ClaimPreBatch
|
|
1221
1323
|
*/
|
|
1222
|
-
'
|
|
1324
|
+
'occurrence_Code7'?: string | null;
|
|
1223
1325
|
/**
|
|
1224
1326
|
*
|
|
1225
1327
|
* @type {string}
|
|
1226
1328
|
* @memberof ClaimPreBatch
|
|
1227
1329
|
*/
|
|
1228
|
-
'
|
|
1330
|
+
'occurrence_Code8'?: string | null;
|
|
1229
1331
|
/**
|
|
1230
1332
|
*
|
|
1231
1333
|
* @type {string}
|
|
1232
1334
|
* @memberof ClaimPreBatch
|
|
1233
1335
|
*/
|
|
1234
|
-
'
|
|
1336
|
+
'occurrence_Code9'?: string | null;
|
|
1235
1337
|
/**
|
|
1236
|
-
*
|
|
1338
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1237
1339
|
* @type {string}
|
|
1238
1340
|
* @memberof ClaimPreBatch
|
|
1239
1341
|
*/
|
|
1240
|
-
'
|
|
1342
|
+
'occurrence_Date1'?: string | null;
|
|
1241
1343
|
/**
|
|
1242
1344
|
*
|
|
1243
|
-
* @type {
|
|
1345
|
+
* @type {string}
|
|
1244
1346
|
* @memberof ClaimPreBatch
|
|
1245
1347
|
*/
|
|
1246
|
-
'
|
|
1348
|
+
'occurrence_Date10'?: string | null;
|
|
1247
1349
|
/**
|
|
1248
1350
|
*
|
|
1249
|
-
* @type {
|
|
1351
|
+
* @type {string}
|
|
1250
1352
|
* @memberof ClaimPreBatch
|
|
1251
1353
|
*/
|
|
1252
|
-
'
|
|
1354
|
+
'occurrence_Date11'?: string | null;
|
|
1253
1355
|
/**
|
|
1254
1356
|
*
|
|
1255
|
-
* @type {
|
|
1357
|
+
* @type {string}
|
|
1256
1358
|
* @memberof ClaimPreBatch
|
|
1257
1359
|
*/
|
|
1258
|
-
'
|
|
1360
|
+
'occurrence_Date12'?: string | null;
|
|
1259
1361
|
/**
|
|
1260
1362
|
*
|
|
1261
1363
|
* @type {string}
|
|
1262
1364
|
* @memberof ClaimPreBatch
|
|
1263
1365
|
*/
|
|
1264
|
-
'
|
|
1366
|
+
'occurrence_Date13'?: string | null;
|
|
1265
1367
|
/**
|
|
1266
1368
|
*
|
|
1267
1369
|
* @type {string}
|
|
1268
1370
|
* @memberof ClaimPreBatch
|
|
1269
1371
|
*/
|
|
1270
|
-
'
|
|
1372
|
+
'occurrence_Date14'?: string | null;
|
|
1271
1373
|
/**
|
|
1272
1374
|
*
|
|
1273
1375
|
* @type {string}
|
|
1274
1376
|
* @memberof ClaimPreBatch
|
|
1275
1377
|
*/
|
|
1276
|
-
'
|
|
1378
|
+
'occurrence_Date15'?: string | null;
|
|
1277
1379
|
/**
|
|
1278
1380
|
*
|
|
1279
1381
|
* @type {string}
|
|
1280
1382
|
* @memberof ClaimPreBatch
|
|
1281
1383
|
*/
|
|
1282
|
-
'
|
|
1384
|
+
'occurrence_Date16'?: string | null;
|
|
1283
1385
|
/**
|
|
1284
1386
|
*
|
|
1285
1387
|
* @type {string}
|
|
1286
1388
|
* @memberof ClaimPreBatch
|
|
1287
1389
|
*/
|
|
1288
|
-
'
|
|
1390
|
+
'occurrence_Date17'?: string | null;
|
|
1289
1391
|
/**
|
|
1290
1392
|
*
|
|
1291
1393
|
* @type {string}
|
|
1292
1394
|
* @memberof ClaimPreBatch
|
|
1293
1395
|
*/
|
|
1294
|
-
'
|
|
1396
|
+
'occurrence_Date18'?: string | null;
|
|
1295
1397
|
/**
|
|
1296
1398
|
*
|
|
1297
1399
|
* @type {string}
|
|
1298
1400
|
* @memberof ClaimPreBatch
|
|
1299
1401
|
*/
|
|
1300
|
-
'
|
|
1402
|
+
'occurrence_Date19'?: string | null;
|
|
1301
1403
|
/**
|
|
1302
|
-
*
|
|
1404
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1303
1405
|
* @type {string}
|
|
1304
1406
|
* @memberof ClaimPreBatch
|
|
1305
1407
|
*/
|
|
1306
|
-
'
|
|
1408
|
+
'occurrence_Date2'?: string | null;
|
|
1307
1409
|
/**
|
|
1308
1410
|
*
|
|
1309
1411
|
* @type {string}
|
|
1310
1412
|
* @memberof ClaimPreBatch
|
|
1311
1413
|
*/
|
|
1312
|
-
'
|
|
1414
|
+
'occurrence_Date20'?: string | null;
|
|
1313
1415
|
/**
|
|
1314
1416
|
*
|
|
1315
1417
|
* @type {string}
|
|
1316
1418
|
* @memberof ClaimPreBatch
|
|
1317
1419
|
*/
|
|
1318
|
-
'
|
|
1420
|
+
'occurrence_Date21'?: string | null;
|
|
1319
1421
|
/**
|
|
1320
1422
|
*
|
|
1321
1423
|
* @type {string}
|
|
1322
1424
|
* @memberof ClaimPreBatch
|
|
1323
1425
|
*/
|
|
1324
|
-
'
|
|
1426
|
+
'occurrence_Date22'?: string | null;
|
|
1325
1427
|
/**
|
|
1326
1428
|
*
|
|
1327
1429
|
* @type {string}
|
|
1328
1430
|
* @memberof ClaimPreBatch
|
|
1329
1431
|
*/
|
|
1330
|
-
'
|
|
1432
|
+
'occurrence_Date23'?: string | null;
|
|
1331
1433
|
/**
|
|
1332
1434
|
*
|
|
1333
1435
|
* @type {string}
|
|
1334
1436
|
* @memberof ClaimPreBatch
|
|
1335
1437
|
*/
|
|
1336
|
-
'
|
|
1438
|
+
'occurrence_Date24'?: string | null;
|
|
1337
1439
|
/**
|
|
1338
|
-
*
|
|
1440
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1339
1441
|
* @type {string}
|
|
1340
1442
|
* @memberof ClaimPreBatch
|
|
1341
1443
|
*/
|
|
1342
|
-
'
|
|
1444
|
+
'occurrence_Date3'?: string | null;
|
|
1343
1445
|
/**
|
|
1344
|
-
*
|
|
1345
|
-
* @type {
|
|
1446
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1447
|
+
* @type {string}
|
|
1346
1448
|
* @memberof ClaimPreBatch
|
|
1347
1449
|
*/
|
|
1348
|
-
'
|
|
1450
|
+
'occurrence_Date4'?: string | null;
|
|
1349
1451
|
/**
|
|
1350
1452
|
*
|
|
1351
1453
|
* @type {string}
|
|
1352
1454
|
* @memberof ClaimPreBatch
|
|
1353
1455
|
*/
|
|
1354
|
-
'
|
|
1456
|
+
'occurrence_Date5'?: string | null;
|
|
1355
1457
|
/**
|
|
1356
1458
|
*
|
|
1357
1459
|
* @type {string}
|
|
1358
1460
|
* @memberof ClaimPreBatch
|
|
1359
1461
|
*/
|
|
1360
|
-
'
|
|
1462
|
+
'occurrence_Date6'?: string | null;
|
|
1361
1463
|
/**
|
|
1362
1464
|
*
|
|
1363
1465
|
* @type {string}
|
|
1364
1466
|
* @memberof ClaimPreBatch
|
|
1365
1467
|
*/
|
|
1366
|
-
'
|
|
1468
|
+
'occurrence_Date7'?: string | null;
|
|
1367
1469
|
/**
|
|
1368
1470
|
*
|
|
1369
1471
|
* @type {string}
|
|
1370
1472
|
* @memberof ClaimPreBatch
|
|
1371
1473
|
*/
|
|
1372
|
-
'
|
|
1474
|
+
'occurrence_Date8'?: string | null;
|
|
1373
1475
|
/**
|
|
1374
1476
|
*
|
|
1375
1477
|
* @type {string}
|
|
1376
1478
|
* @memberof ClaimPreBatch
|
|
1377
1479
|
*/
|
|
1378
|
-
'
|
|
1480
|
+
'occurrence_Date9'?: string | null;
|
|
1379
1481
|
/**
|
|
1380
|
-
*
|
|
1482
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1381
1483
|
* @type {string}
|
|
1382
1484
|
* @memberof ClaimPreBatch
|
|
1383
1485
|
*/
|
|
1384
|
-
'
|
|
1486
|
+
'occurrence_Span_Code'?: string | null;
|
|
1385
1487
|
/**
|
|
1386
1488
|
*
|
|
1387
1489
|
* @type {string}
|
|
1388
1490
|
* @memberof ClaimPreBatch
|
|
1389
1491
|
*/
|
|
1390
|
-
'
|
|
1492
|
+
'occurrence_Span_Code10'?: string | null;
|
|
1391
1493
|
/**
|
|
1392
1494
|
*
|
|
1393
1495
|
* @type {string}
|
|
1394
1496
|
* @memberof ClaimPreBatch
|
|
1395
1497
|
*/
|
|
1396
|
-
'
|
|
1498
|
+
'occurrence_Span_Code11'?: string | null;
|
|
1397
1499
|
/**
|
|
1398
1500
|
*
|
|
1399
1501
|
* @type {string}
|
|
1400
1502
|
* @memberof ClaimPreBatch
|
|
1401
1503
|
*/
|
|
1402
|
-
'
|
|
1504
|
+
'occurrence_Span_Code12'?: string | null;
|
|
1403
1505
|
/**
|
|
1404
1506
|
*
|
|
1405
1507
|
* @type {string}
|
|
1406
1508
|
* @memberof ClaimPreBatch
|
|
1407
1509
|
*/
|
|
1408
|
-
'
|
|
1510
|
+
'occurrence_Span_Code13'?: string | null;
|
|
1409
1511
|
/**
|
|
1410
1512
|
*
|
|
1411
1513
|
* @type {string}
|
|
1412
1514
|
* @memberof ClaimPreBatch
|
|
1413
1515
|
*/
|
|
1414
|
-
'
|
|
1516
|
+
'occurrence_Span_Code14'?: string | null;
|
|
1415
1517
|
/**
|
|
1416
1518
|
*
|
|
1417
1519
|
* @type {string}
|
|
1418
1520
|
* @memberof ClaimPreBatch
|
|
1419
1521
|
*/
|
|
1420
|
-
'
|
|
1522
|
+
'occurrence_Span_Code15'?: string | null;
|
|
1421
1523
|
/**
|
|
1422
1524
|
*
|
|
1423
1525
|
* @type {string}
|
|
1424
1526
|
* @memberof ClaimPreBatch
|
|
1425
1527
|
*/
|
|
1426
|
-
'
|
|
1528
|
+
'occurrence_Span_Code16'?: string | null;
|
|
1427
1529
|
/**
|
|
1428
1530
|
*
|
|
1429
1531
|
* @type {string}
|
|
1430
1532
|
* @memberof ClaimPreBatch
|
|
1431
1533
|
*/
|
|
1432
|
-
'
|
|
1534
|
+
'occurrence_Span_Code17'?: string | null;
|
|
1433
1535
|
/**
|
|
1434
1536
|
*
|
|
1435
1537
|
* @type {string}
|
|
1436
1538
|
* @memberof ClaimPreBatch
|
|
1437
1539
|
*/
|
|
1438
|
-
'
|
|
1540
|
+
'occurrence_Span_Code18'?: string | null;
|
|
1439
1541
|
/**
|
|
1440
1542
|
*
|
|
1441
1543
|
* @type {string}
|
|
1442
1544
|
* @memberof ClaimPreBatch
|
|
1443
1545
|
*/
|
|
1444
|
-
'
|
|
1546
|
+
'occurrence_Span_Code19'?: string | null;
|
|
1445
1547
|
/**
|
|
1446
1548
|
*
|
|
1447
1549
|
* @type {string}
|
|
1448
1550
|
* @memberof ClaimPreBatch
|
|
1449
1551
|
*/
|
|
1450
|
-
'
|
|
1552
|
+
'occurrence_Span_Code2'?: string | null;
|
|
1451
1553
|
/**
|
|
1452
1554
|
*
|
|
1453
1555
|
* @type {string}
|
|
1454
1556
|
* @memberof ClaimPreBatch
|
|
1455
1557
|
*/
|
|
1456
|
-
'
|
|
1558
|
+
'occurrence_Span_Code20'?: string | null;
|
|
1457
1559
|
/**
|
|
1458
1560
|
*
|
|
1459
1561
|
* @type {string}
|
|
1460
1562
|
* @memberof ClaimPreBatch
|
|
1461
1563
|
*/
|
|
1462
|
-
'
|
|
1564
|
+
'occurrence_Span_Code21'?: string | null;
|
|
1463
1565
|
/**
|
|
1464
1566
|
*
|
|
1465
1567
|
* @type {string}
|
|
1466
1568
|
* @memberof ClaimPreBatch
|
|
1467
1569
|
*/
|
|
1468
|
-
'
|
|
1570
|
+
'occurrence_Span_Code22'?: string | null;
|
|
1469
1571
|
/**
|
|
1470
1572
|
*
|
|
1471
1573
|
* @type {string}
|
|
1472
1574
|
* @memberof ClaimPreBatch
|
|
1473
1575
|
*/
|
|
1474
|
-
'
|
|
1576
|
+
'occurrence_Span_Code23'?: string | null;
|
|
1475
1577
|
/**
|
|
1476
1578
|
*
|
|
1477
1579
|
* @type {string}
|
|
1478
1580
|
* @memberof ClaimPreBatch
|
|
1479
1581
|
*/
|
|
1480
|
-
'
|
|
1582
|
+
'occurrence_Span_Code24'?: string | null;
|
|
1481
1583
|
/**
|
|
1482
1584
|
*
|
|
1483
1585
|
* @type {string}
|
|
1484
1586
|
* @memberof ClaimPreBatch
|
|
1485
1587
|
*/
|
|
1486
|
-
'
|
|
1588
|
+
'occurrence_Span_Code3'?: string | null;
|
|
1487
1589
|
/**
|
|
1488
1590
|
*
|
|
1489
1591
|
* @type {string}
|
|
1490
1592
|
* @memberof ClaimPreBatch
|
|
1491
1593
|
*/
|
|
1492
|
-
'
|
|
1594
|
+
'occurrence_Span_Code4'?: string | null;
|
|
1493
1595
|
/**
|
|
1494
1596
|
*
|
|
1495
1597
|
* @type {string}
|
|
1496
1598
|
* @memberof ClaimPreBatch
|
|
1497
1599
|
*/
|
|
1498
|
-
'
|
|
1600
|
+
'occurrence_Span_Code5'?: string | null;
|
|
1499
1601
|
/**
|
|
1500
1602
|
*
|
|
1501
1603
|
* @type {string}
|
|
1502
1604
|
* @memberof ClaimPreBatch
|
|
1503
1605
|
*/
|
|
1504
|
-
'
|
|
1606
|
+
'occurrence_Span_Code6'?: string | null;
|
|
1505
1607
|
/**
|
|
1506
1608
|
*
|
|
1507
1609
|
* @type {string}
|
|
1508
1610
|
* @memberof ClaimPreBatch
|
|
1509
1611
|
*/
|
|
1510
|
-
'
|
|
1612
|
+
'occurrence_Span_Code7'?: string | null;
|
|
1511
1613
|
/**
|
|
1512
1614
|
*
|
|
1513
1615
|
* @type {string}
|
|
1514
1616
|
* @memberof ClaimPreBatch
|
|
1515
1617
|
*/
|
|
1516
|
-
'
|
|
1618
|
+
'occurrence_Span_Code8'?: string | null;
|
|
1517
1619
|
/**
|
|
1518
1620
|
*
|
|
1519
1621
|
* @type {string}
|
|
1520
1622
|
* @memberof ClaimPreBatch
|
|
1521
1623
|
*/
|
|
1522
|
-
'
|
|
1624
|
+
'occurrence_Span_Code9'?: string | null;
|
|
1523
1625
|
/**
|
|
1524
|
-
*
|
|
1626
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1525
1627
|
* @type {string}
|
|
1526
1628
|
* @memberof ClaimPreBatch
|
|
1527
1629
|
*/
|
|
1528
|
-
'
|
|
1630
|
+
'occurrence_Span_From'?: string | null;
|
|
1529
1631
|
/**
|
|
1530
1632
|
*
|
|
1531
1633
|
* @type {string}
|
|
1532
1634
|
* @memberof ClaimPreBatch
|
|
1533
1635
|
*/
|
|
1534
|
-
'
|
|
1636
|
+
'occurrence_Span_From10'?: string | null;
|
|
1535
1637
|
/**
|
|
1536
1638
|
*
|
|
1537
1639
|
* @type {string}
|
|
1538
1640
|
* @memberof ClaimPreBatch
|
|
1539
1641
|
*/
|
|
1540
|
-
'
|
|
1642
|
+
'occurrence_Span_From11'?: string | null;
|
|
1541
1643
|
/**
|
|
1542
1644
|
*
|
|
1543
1645
|
* @type {string}
|
|
1544
1646
|
* @memberof ClaimPreBatch
|
|
1545
1647
|
*/
|
|
1546
|
-
'
|
|
1648
|
+
'occurrence_Span_From12'?: string | null;
|
|
1547
1649
|
/**
|
|
1548
1650
|
*
|
|
1549
1651
|
* @type {string}
|
|
1550
1652
|
* @memberof ClaimPreBatch
|
|
1551
1653
|
*/
|
|
1552
|
-
'
|
|
1654
|
+
'occurrence_Span_From13'?: string | null;
|
|
1553
1655
|
/**
|
|
1554
1656
|
*
|
|
1555
1657
|
* @type {string}
|
|
1556
1658
|
* @memberof ClaimPreBatch
|
|
1557
1659
|
*/
|
|
1558
|
-
'
|
|
1660
|
+
'occurrence_Span_From14'?: string | null;
|
|
1559
1661
|
/**
|
|
1560
1662
|
*
|
|
1561
1663
|
* @type {string}
|
|
1562
1664
|
* @memberof ClaimPreBatch
|
|
1563
1665
|
*/
|
|
1564
|
-
'
|
|
1666
|
+
'occurrence_Span_From15'?: string | null;
|
|
1565
1667
|
/**
|
|
1566
1668
|
*
|
|
1567
1669
|
* @type {string}
|
|
1568
1670
|
* @memberof ClaimPreBatch
|
|
1569
1671
|
*/
|
|
1570
|
-
'
|
|
1672
|
+
'occurrence_Span_From16'?: string | null;
|
|
1571
1673
|
/**
|
|
1572
1674
|
*
|
|
1573
1675
|
* @type {string}
|
|
1574
1676
|
* @memberof ClaimPreBatch
|
|
1575
1677
|
*/
|
|
1576
|
-
'
|
|
1678
|
+
'occurrence_Span_From17'?: string | null;
|
|
1577
1679
|
/**
|
|
1578
1680
|
*
|
|
1579
1681
|
* @type {string}
|
|
1580
1682
|
* @memberof ClaimPreBatch
|
|
1581
1683
|
*/
|
|
1582
|
-
'
|
|
1684
|
+
'occurrence_Span_From18'?: string | null;
|
|
1583
1685
|
/**
|
|
1584
1686
|
*
|
|
1585
1687
|
* @type {string}
|
|
1586
1688
|
* @memberof ClaimPreBatch
|
|
1587
1689
|
*/
|
|
1588
|
-
'
|
|
1690
|
+
'occurrence_Span_From19'?: string | null;
|
|
1589
1691
|
/**
|
|
1590
1692
|
*
|
|
1591
1693
|
* @type {string}
|
|
1592
1694
|
* @memberof ClaimPreBatch
|
|
1593
1695
|
*/
|
|
1594
|
-
'
|
|
1696
|
+
'occurrence_Span_From2'?: string | null;
|
|
1595
1697
|
/**
|
|
1596
1698
|
*
|
|
1597
1699
|
* @type {string}
|
|
1598
1700
|
* @memberof ClaimPreBatch
|
|
1599
1701
|
*/
|
|
1600
|
-
'
|
|
1702
|
+
'occurrence_Span_From20'?: string | null;
|
|
1601
1703
|
/**
|
|
1602
1704
|
*
|
|
1603
1705
|
* @type {string}
|
|
1604
1706
|
* @memberof ClaimPreBatch
|
|
1605
1707
|
*/
|
|
1606
|
-
'
|
|
1708
|
+
'occurrence_Span_From21'?: string | null;
|
|
1607
1709
|
/**
|
|
1608
1710
|
*
|
|
1609
1711
|
* @type {string}
|
|
1610
1712
|
* @memberof ClaimPreBatch
|
|
1611
1713
|
*/
|
|
1612
|
-
'
|
|
1714
|
+
'occurrence_Span_From22'?: string | null;
|
|
1613
1715
|
/**
|
|
1614
1716
|
*
|
|
1615
1717
|
* @type {string}
|
|
1616
1718
|
* @memberof ClaimPreBatch
|
|
1617
1719
|
*/
|
|
1618
|
-
'
|
|
1720
|
+
'occurrence_Span_From23'?: string | null;
|
|
1619
1721
|
/**
|
|
1620
1722
|
*
|
|
1621
1723
|
* @type {string}
|
|
1622
1724
|
* @memberof ClaimPreBatch
|
|
1623
1725
|
*/
|
|
1624
|
-
'
|
|
1726
|
+
'occurrence_Span_From24'?: string | null;
|
|
1625
1727
|
/**
|
|
1626
1728
|
*
|
|
1627
1729
|
* @type {string}
|
|
1628
1730
|
* @memberof ClaimPreBatch
|
|
1629
1731
|
*/
|
|
1630
|
-
'
|
|
1732
|
+
'occurrence_Span_From3'?: string | null;
|
|
1631
1733
|
/**
|
|
1632
1734
|
*
|
|
1633
1735
|
* @type {string}
|
|
1634
1736
|
* @memberof ClaimPreBatch
|
|
1635
1737
|
*/
|
|
1636
|
-
'
|
|
1738
|
+
'occurrence_Span_From4'?: string | null;
|
|
1637
1739
|
/**
|
|
1638
1740
|
*
|
|
1639
1741
|
* @type {string}
|
|
1640
1742
|
* @memberof ClaimPreBatch
|
|
1641
1743
|
*/
|
|
1642
|
-
'
|
|
1744
|
+
'occurrence_Span_From5'?: string | null;
|
|
1643
1745
|
/**
|
|
1644
1746
|
*
|
|
1645
1747
|
* @type {string}
|
|
1646
1748
|
* @memberof ClaimPreBatch
|
|
1647
1749
|
*/
|
|
1648
|
-
'
|
|
1750
|
+
'occurrence_Span_From6'?: string | null;
|
|
1649
1751
|
/**
|
|
1650
1752
|
*
|
|
1651
1753
|
* @type {string}
|
|
1652
1754
|
* @memberof ClaimPreBatch
|
|
1653
1755
|
*/
|
|
1654
|
-
'
|
|
1756
|
+
'occurrence_Span_From7'?: string | null;
|
|
1655
1757
|
/**
|
|
1656
1758
|
*
|
|
1657
1759
|
* @type {string}
|
|
1658
1760
|
* @memberof ClaimPreBatch
|
|
1659
1761
|
*/
|
|
1660
|
-
'
|
|
1762
|
+
'occurrence_Span_From8'?: string | null;
|
|
1661
1763
|
/**
|
|
1662
1764
|
*
|
|
1663
1765
|
* @type {string}
|
|
1664
1766
|
* @memberof ClaimPreBatch
|
|
1665
1767
|
*/
|
|
1666
|
-
'
|
|
1768
|
+
'occurrence_Span_From9'?: string | null;
|
|
1667
1769
|
/**
|
|
1668
|
-
*
|
|
1770
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1669
1771
|
* @type {string}
|
|
1670
1772
|
* @memberof ClaimPreBatch
|
|
1671
1773
|
*/
|
|
1672
|
-
'
|
|
1774
|
+
'occurrence_Span_Thru'?: string | null;
|
|
1673
1775
|
/**
|
|
1674
1776
|
*
|
|
1675
1777
|
* @type {string}
|
|
1676
1778
|
* @memberof ClaimPreBatch
|
|
1677
1779
|
*/
|
|
1678
|
-
'
|
|
1780
|
+
'occurrence_Span_Thru10'?: string | null;
|
|
1679
1781
|
/**
|
|
1680
1782
|
*
|
|
1681
1783
|
* @type {string}
|
|
1682
1784
|
* @memberof ClaimPreBatch
|
|
1683
1785
|
*/
|
|
1684
|
-
'
|
|
1786
|
+
'occurrence_Span_Thru11'?: string | null;
|
|
1685
1787
|
/**
|
|
1686
1788
|
*
|
|
1687
1789
|
* @type {string}
|
|
1688
1790
|
* @memberof ClaimPreBatch
|
|
1689
1791
|
*/
|
|
1690
|
-
'
|
|
1792
|
+
'occurrence_Span_Thru12'?: string | null;
|
|
1691
1793
|
/**
|
|
1692
1794
|
*
|
|
1693
1795
|
* @type {string}
|
|
1694
1796
|
* @memberof ClaimPreBatch
|
|
1695
1797
|
*/
|
|
1696
|
-
'
|
|
1798
|
+
'occurrence_Span_Thru13'?: string | null;
|
|
1697
1799
|
/**
|
|
1698
1800
|
*
|
|
1699
1801
|
* @type {string}
|
|
1700
1802
|
* @memberof ClaimPreBatch
|
|
1701
1803
|
*/
|
|
1702
|
-
'
|
|
1804
|
+
'occurrence_Span_Thru14'?: string | null;
|
|
1703
1805
|
/**
|
|
1704
1806
|
*
|
|
1705
1807
|
* @type {string}
|
|
1706
1808
|
* @memberof ClaimPreBatch
|
|
1707
1809
|
*/
|
|
1708
|
-
'
|
|
1810
|
+
'occurrence_Span_Thru15'?: string | null;
|
|
1709
1811
|
/**
|
|
1710
1812
|
*
|
|
1711
1813
|
* @type {string}
|
|
1712
1814
|
* @memberof ClaimPreBatch
|
|
1713
1815
|
*/
|
|
1714
|
-
'
|
|
1816
|
+
'occurrence_Span_Thru16'?: string | null;
|
|
1715
1817
|
/**
|
|
1716
1818
|
*
|
|
1717
1819
|
* @type {string}
|
|
1718
1820
|
* @memberof ClaimPreBatch
|
|
1719
1821
|
*/
|
|
1720
|
-
'
|
|
1822
|
+
'occurrence_Span_Thru17'?: string | null;
|
|
1721
1823
|
/**
|
|
1722
1824
|
*
|
|
1723
1825
|
* @type {string}
|
|
1724
1826
|
* @memberof ClaimPreBatch
|
|
1725
1827
|
*/
|
|
1726
|
-
'
|
|
1828
|
+
'occurrence_Span_Thru18'?: string | null;
|
|
1727
1829
|
/**
|
|
1728
1830
|
*
|
|
1729
1831
|
* @type {string}
|
|
1730
1832
|
* @memberof ClaimPreBatch
|
|
1731
1833
|
*/
|
|
1732
|
-
'
|
|
1834
|
+
'occurrence_Span_Thru19'?: string | null;
|
|
1733
1835
|
/**
|
|
1734
1836
|
*
|
|
1735
1837
|
* @type {string}
|
|
1736
1838
|
* @memberof ClaimPreBatch
|
|
1737
1839
|
*/
|
|
1738
|
-
'
|
|
1840
|
+
'occurrence_Span_Thru2'?: string | null;
|
|
1739
1841
|
/**
|
|
1740
1842
|
*
|
|
1741
|
-
* @type {
|
|
1843
|
+
* @type {string}
|
|
1742
1844
|
* @memberof ClaimPreBatch
|
|
1743
1845
|
*/
|
|
1744
|
-
'
|
|
1846
|
+
'occurrence_Span_Thru20'?: string | null;
|
|
1745
1847
|
/**
|
|
1746
1848
|
*
|
|
1747
1849
|
* @type {string}
|
|
1748
1850
|
* @memberof ClaimPreBatch
|
|
1749
1851
|
*/
|
|
1750
|
-
'
|
|
1852
|
+
'occurrence_Span_Thru21'?: string | null;
|
|
1751
1853
|
/**
|
|
1752
1854
|
*
|
|
1753
1855
|
* @type {string}
|
|
1754
1856
|
* @memberof ClaimPreBatch
|
|
1755
1857
|
*/
|
|
1756
|
-
'
|
|
1858
|
+
'occurrence_Span_Thru22'?: string | null;
|
|
1757
1859
|
/**
|
|
1758
1860
|
*
|
|
1759
1861
|
* @type {string}
|
|
1760
1862
|
* @memberof ClaimPreBatch
|
|
1761
1863
|
*/
|
|
1762
|
-
'
|
|
1864
|
+
'occurrence_Span_Thru23'?: string | null;
|
|
1763
1865
|
/**
|
|
1764
1866
|
*
|
|
1765
1867
|
* @type {string}
|
|
1766
1868
|
* @memberof ClaimPreBatch
|
|
1767
1869
|
*/
|
|
1768
|
-
'
|
|
1870
|
+
'occurrence_Span_Thru24'?: string | null;
|
|
1769
1871
|
/**
|
|
1770
1872
|
*
|
|
1771
1873
|
* @type {string}
|
|
1772
1874
|
* @memberof ClaimPreBatch
|
|
1773
1875
|
*/
|
|
1774
|
-
'
|
|
1876
|
+
'occurrence_Span_Thru3'?: string | null;
|
|
1775
1877
|
/**
|
|
1776
1878
|
*
|
|
1777
1879
|
* @type {string}
|
|
1778
1880
|
* @memberof ClaimPreBatch
|
|
1779
1881
|
*/
|
|
1780
|
-
'
|
|
1882
|
+
'occurrence_Span_Thru4'?: string | null;
|
|
1781
1883
|
/**
|
|
1782
1884
|
*
|
|
1783
1885
|
* @type {string}
|
|
1784
1886
|
* @memberof ClaimPreBatch
|
|
1785
1887
|
*/
|
|
1786
|
-
'
|
|
1888
|
+
'occurrence_Span_Thru5'?: string | null;
|
|
1787
1889
|
/**
|
|
1788
1890
|
*
|
|
1789
1891
|
* @type {string}
|
|
1790
1892
|
* @memberof ClaimPreBatch
|
|
1791
1893
|
*/
|
|
1792
|
-
'
|
|
1894
|
+
'occurrence_Span_Thru6'?: string | null;
|
|
1793
1895
|
/**
|
|
1794
1896
|
*
|
|
1795
1897
|
* @type {string}
|
|
1796
1898
|
* @memberof ClaimPreBatch
|
|
1797
1899
|
*/
|
|
1798
|
-
'
|
|
1900
|
+
'occurrence_Span_Thru7'?: string | null;
|
|
1799
1901
|
/**
|
|
1800
1902
|
*
|
|
1801
1903
|
* @type {string}
|
|
1802
1904
|
* @memberof ClaimPreBatch
|
|
1803
1905
|
*/
|
|
1804
|
-
'
|
|
1906
|
+
'occurrence_Span_Thru8'?: string | null;
|
|
1805
1907
|
/**
|
|
1806
1908
|
*
|
|
1807
1909
|
* @type {string}
|
|
1808
1910
|
* @memberof ClaimPreBatch
|
|
1809
1911
|
*/
|
|
1810
|
-
'
|
|
1912
|
+
'occurrence_Span_Thru9'?: string | null;
|
|
1811
1913
|
/**
|
|
1812
|
-
*
|
|
1914
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1813
1915
|
* @type {string}
|
|
1814
1916
|
* @memberof ClaimPreBatch
|
|
1815
1917
|
*/
|
|
1816
|
-
'
|
|
1918
|
+
'onset_Similar_Illness_Date'?: string | null;
|
|
1817
1919
|
/**
|
|
1818
|
-
*
|
|
1920
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1819
1921
|
* @type {string}
|
|
1820
1922
|
* @memberof ClaimPreBatch
|
|
1821
1923
|
*/
|
|
1822
|
-
'
|
|
1924
|
+
'oper_Provider_Address'?: string | null;
|
|
1823
1925
|
/**
|
|
1824
|
-
*
|
|
1926
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1825
1927
|
* @type {string}
|
|
1826
1928
|
* @memberof ClaimPreBatch
|
|
1827
1929
|
*/
|
|
1828
|
-
'
|
|
1930
|
+
'oper_Provider_Address2'?: string | null;
|
|
1829
1931
|
/**
|
|
1830
|
-
*
|
|
1932
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1831
1933
|
* @type {string}
|
|
1832
1934
|
* @memberof ClaimPreBatch
|
|
1833
1935
|
*/
|
|
1834
|
-
'
|
|
1936
|
+
'oper_Provider_City'?: string | null;
|
|
1835
1937
|
/**
|
|
1836
|
-
*
|
|
1938
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1837
1939
|
* @type {string}
|
|
1838
1940
|
* @memberof ClaimPreBatch
|
|
1839
1941
|
*/
|
|
1840
|
-
'
|
|
1942
|
+
'oper_Provider_Federal_ID'?: string | null;
|
|
1841
1943
|
/**
|
|
1842
|
-
*
|
|
1944
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1843
1945
|
* @type {string}
|
|
1844
1946
|
* @memberof ClaimPreBatch
|
|
1845
1947
|
*/
|
|
1846
|
-
'
|
|
1948
|
+
'oper_Provider_First_Name'?: string | null;
|
|
1847
1949
|
/**
|
|
1848
|
-
*
|
|
1950
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1849
1951
|
* @type {string}
|
|
1850
1952
|
* @memberof ClaimPreBatch
|
|
1851
1953
|
*/
|
|
1852
|
-
'
|
|
1954
|
+
'oper_Provider_Last_Name'?: string | null;
|
|
1853
1955
|
/**
|
|
1854
|
-
*
|
|
1956
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1855
1957
|
* @type {string}
|
|
1856
1958
|
* @memberof ClaimPreBatch
|
|
1857
1959
|
*/
|
|
1858
|
-
'
|
|
1960
|
+
'oper_Provider_MAID'?: string | null;
|
|
1859
1961
|
/**
|
|
1860
|
-
*
|
|
1962
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1861
1963
|
* @type {string}
|
|
1862
1964
|
* @memberof ClaimPreBatch
|
|
1863
1965
|
*/
|
|
1864
|
-
'
|
|
1966
|
+
'oper_Provider_NPI'?: string | null;
|
|
1865
1967
|
/**
|
|
1866
|
-
*
|
|
1968
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1867
1969
|
* @type {string}
|
|
1868
1970
|
* @memberof ClaimPreBatch
|
|
1869
1971
|
*/
|
|
1870
|
-
'
|
|
1972
|
+
'oper_Provider_Org_Name'?: string | null;
|
|
1871
1973
|
/**
|
|
1872
|
-
*
|
|
1974
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1873
1975
|
* @type {string}
|
|
1874
1976
|
* @memberof ClaimPreBatch
|
|
1875
1977
|
*/
|
|
1876
|
-
'
|
|
1978
|
+
'oper_Provider_Phone'?: string | null;
|
|
1877
1979
|
/**
|
|
1878
|
-
*
|
|
1980
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1879
1981
|
* @type {string}
|
|
1880
1982
|
* @memberof ClaimPreBatch
|
|
1881
1983
|
*/
|
|
1882
|
-
'
|
|
1984
|
+
'oper_Provider_State'?: string | null;
|
|
1883
1985
|
/**
|
|
1884
|
-
*
|
|
1986
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1885
1987
|
* @type {string}
|
|
1886
1988
|
* @memberof ClaimPreBatch
|
|
1887
1989
|
*/
|
|
1888
|
-
'
|
|
1990
|
+
'oper_Provider_Taxonomy'?: string | null;
|
|
1889
1991
|
/**
|
|
1890
|
-
*
|
|
1992
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
1891
1993
|
* @type {string}
|
|
1892
1994
|
* @memberof ClaimPreBatch
|
|
1893
1995
|
*/
|
|
1894
|
-
'
|
|
1996
|
+
'oper_Provider_Zip'?: string | null;
|
|
1895
1997
|
/**
|
|
1896
|
-
*
|
|
1897
|
-
* @type {
|
|
1998
|
+
* This flag 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.
|
|
1999
|
+
* @type {boolean}
|
|
1898
2000
|
* @memberof ClaimPreBatch
|
|
1899
2001
|
*/
|
|
1900
|
-
'
|
|
2002
|
+
'orthodontics_Treatment': boolean;
|
|
1901
2003
|
/**
|
|
1902
|
-
*
|
|
1903
|
-
* @type {
|
|
2004
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2005
|
+
* @type {boolean}
|
|
1904
2006
|
* @memberof ClaimPreBatch
|
|
1905
2007
|
*/
|
|
1906
|
-
'
|
|
2008
|
+
'other_Insurance': boolean;
|
|
1907
2009
|
/**
|
|
1908
2010
|
*
|
|
1909
2011
|
* @type {string}
|
|
1910
2012
|
* @memberof ClaimPreBatch
|
|
1911
2013
|
*/
|
|
1912
|
-
'
|
|
2014
|
+
'other_Procedure_Code1'?: string | null;
|
|
1913
2015
|
/**
|
|
1914
|
-
*
|
|
2016
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
1915
2017
|
* @type {string}
|
|
1916
2018
|
* @memberof ClaimPreBatch
|
|
1917
2019
|
*/
|
|
1918
|
-
'
|
|
2020
|
+
'other_Procedure_Code10'?: string | null;
|
|
1919
2021
|
/**
|
|
1920
|
-
*
|
|
1921
|
-
* @type {
|
|
2022
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2023
|
+
* @type {string}
|
|
1922
2024
|
* @memberof ClaimPreBatch
|
|
1923
2025
|
*/
|
|
1924
|
-
'
|
|
2026
|
+
'other_Procedure_Code11'?: string | null;
|
|
1925
2027
|
/**
|
|
1926
|
-
*
|
|
1927
|
-
* @type {
|
|
2028
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2029
|
+
* @type {string}
|
|
1928
2030
|
* @memberof ClaimPreBatch
|
|
1929
2031
|
*/
|
|
1930
|
-
'
|
|
2032
|
+
'other_Procedure_Code12'?: string | null;
|
|
1931
2033
|
/**
|
|
1932
|
-
*
|
|
1933
|
-
* @type {
|
|
2034
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2035
|
+
* @type {string}
|
|
1934
2036
|
* @memberof ClaimPreBatch
|
|
1935
2037
|
*/
|
|
1936
|
-
'
|
|
2038
|
+
'other_Procedure_Code13'?: string | null;
|
|
1937
2039
|
/**
|
|
1938
|
-
*
|
|
1939
|
-
* @type {
|
|
2040
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2041
|
+
* @type {string}
|
|
1940
2042
|
* @memberof ClaimPreBatch
|
|
1941
2043
|
*/
|
|
1942
|
-
'
|
|
2044
|
+
'other_Procedure_Code14'?: string | null;
|
|
1943
2045
|
/**
|
|
1944
|
-
*
|
|
1945
|
-
* @type {
|
|
2046
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2047
|
+
* @type {string}
|
|
1946
2048
|
* @memberof ClaimPreBatch
|
|
1947
2049
|
*/
|
|
1948
|
-
'
|
|
2050
|
+
'other_Procedure_Code15'?: string | null;
|
|
1949
2051
|
/**
|
|
1950
|
-
*
|
|
1951
|
-
* @type {
|
|
2052
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2053
|
+
* @type {string}
|
|
1952
2054
|
* @memberof ClaimPreBatch
|
|
1953
2055
|
*/
|
|
1954
|
-
'
|
|
2056
|
+
'other_Procedure_Code16'?: string | null;
|
|
1955
2057
|
/**
|
|
1956
|
-
*
|
|
2058
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
1957
2059
|
* @type {string}
|
|
1958
2060
|
* @memberof ClaimPreBatch
|
|
1959
2061
|
*/
|
|
1960
|
-
'
|
|
2062
|
+
'other_Procedure_Code17'?: string | null;
|
|
1961
2063
|
/**
|
|
1962
|
-
*
|
|
2064
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
1963
2065
|
* @type {string}
|
|
1964
2066
|
* @memberof ClaimPreBatch
|
|
1965
2067
|
*/
|
|
1966
|
-
'
|
|
2068
|
+
'other_Procedure_Code18'?: string | null;
|
|
1967
2069
|
/**
|
|
1968
|
-
*
|
|
2070
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
1969
2071
|
* @type {string}
|
|
1970
2072
|
* @memberof ClaimPreBatch
|
|
1971
2073
|
*/
|
|
1972
|
-
'
|
|
2074
|
+
'other_Procedure_Code19'?: string | null;
|
|
1973
2075
|
/**
|
|
1974
2076
|
*
|
|
1975
2077
|
* @type {string}
|
|
1976
2078
|
* @memberof ClaimPreBatch
|
|
1977
2079
|
*/
|
|
1978
|
-
'
|
|
2080
|
+
'other_Procedure_Code2'?: string | null;
|
|
1979
2081
|
/**
|
|
1980
|
-
*
|
|
2082
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
1981
2083
|
* @type {string}
|
|
1982
2084
|
* @memberof ClaimPreBatch
|
|
1983
2085
|
*/
|
|
1984
|
-
'
|
|
2086
|
+
'other_Procedure_Code20'?: string | null;
|
|
1985
2087
|
/**
|
|
1986
|
-
*
|
|
2088
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
1987
2089
|
* @type {string}
|
|
1988
2090
|
* @memberof ClaimPreBatch
|
|
1989
2091
|
*/
|
|
1990
|
-
'
|
|
2092
|
+
'other_Procedure_Code21'?: string | null;
|
|
1991
2093
|
/**
|
|
1992
|
-
*
|
|
2094
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
1993
2095
|
* @type {string}
|
|
1994
2096
|
* @memberof ClaimPreBatch
|
|
1995
2097
|
*/
|
|
1996
|
-
'
|
|
2098
|
+
'other_Procedure_Code22'?: string | null;
|
|
1997
2099
|
/**
|
|
1998
|
-
*
|
|
2100
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
1999
2101
|
* @type {string}
|
|
2000
2102
|
* @memberof ClaimPreBatch
|
|
2001
2103
|
*/
|
|
2002
|
-
'
|
|
2104
|
+
'other_Procedure_Code23'?: string | null;
|
|
2003
2105
|
/**
|
|
2004
2106
|
*
|
|
2005
2107
|
* @type {string}
|
|
2006
2108
|
* @memberof ClaimPreBatch
|
|
2007
2109
|
*/
|
|
2008
|
-
'
|
|
2110
|
+
'other_Procedure_Code3'?: string | null;
|
|
2009
2111
|
/**
|
|
2010
2112
|
*
|
|
2011
2113
|
* @type {string}
|
|
2012
2114
|
* @memberof ClaimPreBatch
|
|
2013
2115
|
*/
|
|
2014
|
-
'
|
|
2116
|
+
'other_Procedure_Code4'?: string | null;
|
|
2015
2117
|
/**
|
|
2016
2118
|
*
|
|
2017
2119
|
* @type {string}
|
|
2018
2120
|
* @memberof ClaimPreBatch
|
|
2019
2121
|
*/
|
|
2020
|
-
'
|
|
2122
|
+
'other_Procedure_Code5'?: string | null;
|
|
2021
2123
|
/**
|
|
2022
|
-
*
|
|
2124
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2023
2125
|
* @type {string}
|
|
2024
2126
|
* @memberof ClaimPreBatch
|
|
2025
2127
|
*/
|
|
2026
|
-
'
|
|
2128
|
+
'other_Procedure_Code6'?: string | null;
|
|
2027
2129
|
/**
|
|
2028
|
-
*
|
|
2130
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2029
2131
|
* @type {string}
|
|
2030
2132
|
* @memberof ClaimPreBatch
|
|
2031
2133
|
*/
|
|
2032
|
-
'
|
|
2134
|
+
'other_Procedure_Code7'?: string | null;
|
|
2033
2135
|
/**
|
|
2034
|
-
*
|
|
2136
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2035
2137
|
* @type {string}
|
|
2036
2138
|
* @memberof ClaimPreBatch
|
|
2037
2139
|
*/
|
|
2038
|
-
'
|
|
2140
|
+
'other_Procedure_Code8'?: string | null;
|
|
2039
2141
|
/**
|
|
2040
|
-
*
|
|
2142
|
+
* Additional procedure code (ICD10 Diagnosis) values for this claim submission.
|
|
2041
2143
|
* @type {string}
|
|
2042
2144
|
* @memberof ClaimPreBatch
|
|
2043
2145
|
*/
|
|
2044
|
-
'
|
|
2146
|
+
'other_Procedure_Code9'?: string | null;
|
|
2045
2147
|
/**
|
|
2046
2148
|
*
|
|
2047
2149
|
* @type {string}
|
|
2048
2150
|
* @memberof ClaimPreBatch
|
|
2049
2151
|
*/
|
|
2152
|
+
'other_Procedure_Date1'?: string | null;
|
|
2153
|
+
/**
|
|
2154
|
+
* Date associated with the additional procedure code.
|
|
2155
|
+
* @type {string}
|
|
2156
|
+
* @memberof ClaimPreBatch
|
|
2157
|
+
*/
|
|
2158
|
+
'other_Procedure_Date10'?: string | null;
|
|
2159
|
+
/**
|
|
2160
|
+
* Date associated with the additional procedure code.
|
|
2161
|
+
* @type {string}
|
|
2162
|
+
* @memberof ClaimPreBatch
|
|
2163
|
+
*/
|
|
2164
|
+
'other_Procedure_Date11'?: string | null;
|
|
2165
|
+
/**
|
|
2166
|
+
* Date associated with the additional procedure code.
|
|
2167
|
+
* @type {string}
|
|
2168
|
+
* @memberof ClaimPreBatch
|
|
2169
|
+
*/
|
|
2170
|
+
'other_Procedure_Date12'?: string | null;
|
|
2171
|
+
/**
|
|
2172
|
+
* Date associated with the additional procedure code.
|
|
2173
|
+
* @type {string}
|
|
2174
|
+
* @memberof ClaimPreBatch
|
|
2175
|
+
*/
|
|
2176
|
+
'other_Procedure_Date13'?: string | null;
|
|
2177
|
+
/**
|
|
2178
|
+
* Date associated with the additional procedure code.
|
|
2179
|
+
* @type {string}
|
|
2180
|
+
* @memberof ClaimPreBatch
|
|
2181
|
+
*/
|
|
2182
|
+
'other_Procedure_Date14'?: string | null;
|
|
2183
|
+
/**
|
|
2184
|
+
* Date associated with the additional procedure code.
|
|
2185
|
+
* @type {string}
|
|
2186
|
+
* @memberof ClaimPreBatch
|
|
2187
|
+
*/
|
|
2188
|
+
'other_Procedure_Date15'?: string | null;
|
|
2189
|
+
/**
|
|
2190
|
+
* Date associated with the additional procedure code.
|
|
2191
|
+
* @type {string}
|
|
2192
|
+
* @memberof ClaimPreBatch
|
|
2193
|
+
*/
|
|
2194
|
+
'other_Procedure_Date16'?: string | null;
|
|
2195
|
+
/**
|
|
2196
|
+
* Date associated with the additional procedure code.
|
|
2197
|
+
* @type {string}
|
|
2198
|
+
* @memberof ClaimPreBatch
|
|
2199
|
+
*/
|
|
2200
|
+
'other_Procedure_Date17'?: string | null;
|
|
2201
|
+
/**
|
|
2202
|
+
* Date associated with the additional procedure code.
|
|
2203
|
+
* @type {string}
|
|
2204
|
+
* @memberof ClaimPreBatch
|
|
2205
|
+
*/
|
|
2206
|
+
'other_Procedure_Date18'?: string | null;
|
|
2207
|
+
/**
|
|
2208
|
+
* Date associated with the additional procedure code.
|
|
2209
|
+
* @type {string}
|
|
2210
|
+
* @memberof ClaimPreBatch
|
|
2211
|
+
*/
|
|
2212
|
+
'other_Procedure_Date19'?: string | null;
|
|
2213
|
+
/**
|
|
2214
|
+
*
|
|
2215
|
+
* @type {string}
|
|
2216
|
+
* @memberof ClaimPreBatch
|
|
2217
|
+
*/
|
|
2218
|
+
'other_Procedure_Date2'?: string | null;
|
|
2219
|
+
/**
|
|
2220
|
+
* Date associated with the additional procedure code.
|
|
2221
|
+
* @type {string}
|
|
2222
|
+
* @memberof ClaimPreBatch
|
|
2223
|
+
*/
|
|
2224
|
+
'other_Procedure_Date20'?: string | null;
|
|
2225
|
+
/**
|
|
2226
|
+
* Date associated with the additional procedure code.
|
|
2227
|
+
* @type {string}
|
|
2228
|
+
* @memberof ClaimPreBatch
|
|
2229
|
+
*/
|
|
2230
|
+
'other_Procedure_Date21'?: string | null;
|
|
2231
|
+
/**
|
|
2232
|
+
* Date associated with the additional procedure code.
|
|
2233
|
+
* @type {string}
|
|
2234
|
+
* @memberof ClaimPreBatch
|
|
2235
|
+
*/
|
|
2236
|
+
'other_Procedure_Date22'?: string | null;
|
|
2237
|
+
/**
|
|
2238
|
+
* Date associated with the additional procedure code.
|
|
2239
|
+
* @type {string}
|
|
2240
|
+
* @memberof ClaimPreBatch
|
|
2241
|
+
*/
|
|
2242
|
+
'other_Procedure_Date23'?: string | null;
|
|
2243
|
+
/**
|
|
2244
|
+
*
|
|
2245
|
+
* @type {string}
|
|
2246
|
+
* @memberof ClaimPreBatch
|
|
2247
|
+
*/
|
|
2248
|
+
'other_Procedure_Date3'?: string | null;
|
|
2249
|
+
/**
|
|
2250
|
+
*
|
|
2251
|
+
* @type {string}
|
|
2252
|
+
* @memberof ClaimPreBatch
|
|
2253
|
+
*/
|
|
2254
|
+
'other_Procedure_Date4'?: string | null;
|
|
2255
|
+
/**
|
|
2256
|
+
*
|
|
2257
|
+
* @type {string}
|
|
2258
|
+
* @memberof ClaimPreBatch
|
|
2259
|
+
*/
|
|
2260
|
+
'other_Procedure_Date5'?: string | null;
|
|
2261
|
+
/**
|
|
2262
|
+
* Date associated with the additional procedure code.
|
|
2263
|
+
* @type {string}
|
|
2264
|
+
* @memberof ClaimPreBatch
|
|
2265
|
+
*/
|
|
2266
|
+
'other_Procedure_Date6'?: string | null;
|
|
2267
|
+
/**
|
|
2268
|
+
* Date associated with the additional procedure code.
|
|
2269
|
+
* @type {string}
|
|
2270
|
+
* @memberof ClaimPreBatch
|
|
2271
|
+
*/
|
|
2272
|
+
'other_Procedure_Date7'?: string | null;
|
|
2273
|
+
/**
|
|
2274
|
+
* Date associated with the additional procedure code.
|
|
2275
|
+
* @type {string}
|
|
2276
|
+
* @memberof ClaimPreBatch
|
|
2277
|
+
*/
|
|
2278
|
+
'other_Procedure_Date8'?: string | null;
|
|
2279
|
+
/**
|
|
2280
|
+
* Date associated with the additional procedure code.
|
|
2281
|
+
* @type {string}
|
|
2282
|
+
* @memberof ClaimPreBatch
|
|
2283
|
+
*/
|
|
2284
|
+
'other_Procedure_Date9'?: string | null;
|
|
2285
|
+
/**
|
|
2286
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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}
|
|
2288
|
+
* @memberof ClaimPreBatch
|
|
2289
|
+
*/
|
|
2290
|
+
'partial_Disability': boolean;
|
|
2291
|
+
/**
|
|
2292
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2293
|
+
* @type {string}
|
|
2294
|
+
* @memberof ClaimPreBatch
|
|
2295
|
+
*/
|
|
2296
|
+
'patient_Account'?: string | null;
|
|
2297
|
+
/**
|
|
2298
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2299
|
+
* @type {string}
|
|
2300
|
+
* @memberof ClaimPreBatch
|
|
2301
|
+
*/
|
|
2302
|
+
'patient_Address'?: string | null;
|
|
2303
|
+
/**
|
|
2304
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2305
|
+
* @type {string}
|
|
2306
|
+
* @memberof ClaimPreBatch
|
|
2307
|
+
*/
|
|
2308
|
+
'patient_Address2'?: string | null;
|
|
2309
|
+
/**
|
|
2310
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2311
|
+
* @type {string}
|
|
2312
|
+
* @memberof ClaimPreBatch
|
|
2313
|
+
*/
|
|
2314
|
+
'patient_Birth_Date'?: string | null;
|
|
2315
|
+
/**
|
|
2316
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2317
|
+
* @type {string}
|
|
2318
|
+
* @memberof ClaimPreBatch
|
|
2319
|
+
*/
|
|
2320
|
+
'patient_City'?: string | null;
|
|
2321
|
+
/**
|
|
2322
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2323
|
+
* @type {string}
|
|
2324
|
+
* @memberof ClaimPreBatch
|
|
2325
|
+
*/
|
|
2326
|
+
'patient_First_Name'?: string | null;
|
|
2327
|
+
/**
|
|
2328
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2329
|
+
* @type {string}
|
|
2330
|
+
* @memberof ClaimPreBatch
|
|
2331
|
+
*/
|
|
2332
|
+
'patient_ID'?: string | null;
|
|
2333
|
+
/**
|
|
2334
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2335
|
+
* @type {string}
|
|
2336
|
+
* @memberof ClaimPreBatch
|
|
2337
|
+
*/
|
|
2338
|
+
'patient_Last_Name'?: string | null;
|
|
2339
|
+
/**
|
|
2340
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2341
|
+
* @type {string}
|
|
2342
|
+
* @memberof ClaimPreBatch
|
|
2343
|
+
*/
|
|
2344
|
+
'patient_Phone'?: string | null;
|
|
2345
|
+
/**
|
|
2346
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2347
|
+
* @type {string}
|
|
2348
|
+
* @memberof ClaimPreBatch
|
|
2349
|
+
*/
|
|
2350
|
+
'patient_Reason_for_Visit_Diagnostic_Code1'?: string | null;
|
|
2351
|
+
/**
|
|
2352
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2353
|
+
* @type {string}
|
|
2354
|
+
* @memberof ClaimPreBatch
|
|
2355
|
+
*/
|
|
2356
|
+
'patient_Reason_for_Visit_Diagnostic_Code2'?: string | null;
|
|
2357
|
+
/**
|
|
2358
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2359
|
+
* @type {string}
|
|
2360
|
+
* @memberof ClaimPreBatch
|
|
2361
|
+
*/
|
|
2362
|
+
'patient_Reason_for_Visit_Diagnostic_Code3'?: string | null;
|
|
2363
|
+
/**
|
|
2364
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2365
|
+
* @type {string}
|
|
2366
|
+
* @memberof ClaimPreBatch
|
|
2367
|
+
*/
|
|
2368
|
+
'patient_Relationship'?: string | null;
|
|
2369
|
+
/**
|
|
2370
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2371
|
+
* @type {string}
|
|
2372
|
+
* @memberof ClaimPreBatch
|
|
2373
|
+
*/
|
|
2374
|
+
'patient_Sex'?: string | null;
|
|
2375
|
+
/**
|
|
2376
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2377
|
+
* @type {boolean}
|
|
2378
|
+
* @memberof ClaimPreBatch
|
|
2379
|
+
*/
|
|
2380
|
+
'patient_Signature': boolean;
|
|
2381
|
+
/**
|
|
2382
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2383
|
+
* @type {string}
|
|
2384
|
+
* @memberof ClaimPreBatch
|
|
2385
|
+
*/
|
|
2386
|
+
'patient_Signature_Date'?: string | null;
|
|
2387
|
+
/**
|
|
2388
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2389
|
+
* @type {string}
|
|
2390
|
+
* @memberof ClaimPreBatch
|
|
2391
|
+
*/
|
|
2392
|
+
'patient_State'?: string | null;
|
|
2393
|
+
/**
|
|
2394
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2395
|
+
* @type {string}
|
|
2396
|
+
* @memberof ClaimPreBatch
|
|
2397
|
+
*/
|
|
2398
|
+
'patient_Status'?: string | null;
|
|
2399
|
+
/**
|
|
2400
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2401
|
+
* @type {string}
|
|
2402
|
+
* @memberof ClaimPreBatch
|
|
2403
|
+
*/
|
|
2404
|
+
'patient_Zip'?: string | null;
|
|
2405
|
+
/**
|
|
2406
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2407
|
+
* @type {string}
|
|
2408
|
+
* @memberof ClaimPreBatch
|
|
2409
|
+
*/
|
|
2410
|
+
'payToPlan_Address'?: string | null;
|
|
2411
|
+
/**
|
|
2412
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2413
|
+
* @type {string}
|
|
2414
|
+
* @memberof ClaimPreBatch
|
|
2415
|
+
*/
|
|
2416
|
+
'payToPlan_Address2'?: string | null;
|
|
2417
|
+
/**
|
|
2418
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2419
|
+
* @type {string}
|
|
2420
|
+
* @memberof ClaimPreBatch
|
|
2421
|
+
*/
|
|
2422
|
+
'payToPlan_City'?: string | null;
|
|
2423
|
+
/**
|
|
2424
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2425
|
+
* @type {string}
|
|
2426
|
+
* @memberof ClaimPreBatch
|
|
2427
|
+
*/
|
|
2428
|
+
'payToPlan_Claim_Office_Num'?: string | null;
|
|
2429
|
+
/**
|
|
2430
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2431
|
+
* @type {string}
|
|
2432
|
+
* @memberof ClaimPreBatch
|
|
2433
|
+
*/
|
|
2434
|
+
'payToPlan_ID'?: string | null;
|
|
2435
|
+
/**
|
|
2436
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2437
|
+
* @type {string}
|
|
2438
|
+
* @memberof ClaimPreBatch
|
|
2439
|
+
*/
|
|
2440
|
+
'payToPlan_NAIC'?: string | null;
|
|
2441
|
+
/**
|
|
2442
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2443
|
+
* @type {string}
|
|
2444
|
+
* @memberof ClaimPreBatch
|
|
2445
|
+
*/
|
|
2446
|
+
'payToPlan_Name'?: string | null;
|
|
2447
|
+
/**
|
|
2448
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2449
|
+
* @type {string}
|
|
2450
|
+
* @memberof ClaimPreBatch
|
|
2451
|
+
*/
|
|
2452
|
+
'payToPlan_State'?: string | null;
|
|
2453
|
+
/**
|
|
2454
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2455
|
+
* @type {string}
|
|
2456
|
+
* @memberof ClaimPreBatch
|
|
2457
|
+
*/
|
|
2458
|
+
'payToPlan_Zip'?: string | null;
|
|
2459
|
+
/**
|
|
2460
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2461
|
+
* @type {string}
|
|
2462
|
+
* @memberof ClaimPreBatch
|
|
2463
|
+
*/
|
|
2464
|
+
'payTo_Address'?: string | null;
|
|
2465
|
+
/**
|
|
2466
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2467
|
+
* @type {string}
|
|
2468
|
+
* @memberof ClaimPreBatch
|
|
2469
|
+
*/
|
|
2470
|
+
'payTo_Address2'?: string | null;
|
|
2471
|
+
/**
|
|
2472
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2473
|
+
* @type {string}
|
|
2474
|
+
* @memberof ClaimPreBatch
|
|
2475
|
+
*/
|
|
2476
|
+
'payTo_City'?: string | null;
|
|
2477
|
+
/**
|
|
2478
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2479
|
+
* @type {string}
|
|
2480
|
+
* @memberof ClaimPreBatch
|
|
2481
|
+
*/
|
|
2482
|
+
'payTo_State'?: string | null;
|
|
2483
|
+
/**
|
|
2484
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2485
|
+
* @type {string}
|
|
2486
|
+
* @memberof ClaimPreBatch
|
|
2487
|
+
*/
|
|
2488
|
+
'payTo_Zip'?: string | null;
|
|
2489
|
+
/**
|
|
2490
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2491
|
+
* @type {string}
|
|
2492
|
+
* @memberof ClaimPreBatch
|
|
2493
|
+
*/
|
|
2494
|
+
'payee_ID'?: string | null;
|
|
2495
|
+
/**
|
|
2496
|
+
* A claim reference number used in conjunction with the Medicare Resubmission code. Indicated in Box 22 of the claim report.
|
|
2497
|
+
* @type {string}
|
|
2498
|
+
* @memberof ClaimPreBatch
|
|
2499
|
+
*/
|
|
2500
|
+
'payor_Claim_Control_Number'?: string | null;
|
|
2501
|
+
/**
|
|
2502
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2503
|
+
* @type {string}
|
|
2504
|
+
* @memberof ClaimPreBatch
|
|
2505
|
+
*/
|
|
2506
|
+
'payor_ID'?: string | null;
|
|
2507
|
+
/**
|
|
2508
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2509
|
+
* @type {string}
|
|
2510
|
+
* @memberof ClaimPreBatch
|
|
2511
|
+
*/
|
|
2512
|
+
'physician_Return_To_Work'?: string | null;
|
|
2513
|
+
/**
|
|
2514
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2515
|
+
* @type {string}
|
|
2516
|
+
* @memberof ClaimPreBatch
|
|
2517
|
+
*/
|
|
2518
|
+
'place_Of_Service'?: string | null;
|
|
2519
|
+
/**
|
|
2520
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2521
|
+
* @type {string}
|
|
2522
|
+
* @memberof ClaimPreBatch
|
|
2523
|
+
*/
|
|
2524
|
+
'plan_ID'?: string | null;
|
|
2525
|
+
/**
|
|
2526
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2527
|
+
* @type {string}
|
|
2528
|
+
* @memberof ClaimPreBatch
|
|
2529
|
+
*/
|
|
2530
|
+
'plan_Provider'?: string | null;
|
|
2531
|
+
/**
|
|
2532
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2533
|
+
* @type {string}
|
|
2534
|
+
* @memberof ClaimPreBatch
|
|
2535
|
+
*/
|
|
2536
|
+
'plan_Year'?: string | null;
|
|
2537
|
+
/**
|
|
2538
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2539
|
+
* @type {string}
|
|
2540
|
+
* @memberof ClaimPreBatch
|
|
2541
|
+
*/
|
|
2542
|
+
'present_On_Admission1'?: string | null;
|
|
2543
|
+
/**
|
|
2544
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2545
|
+
* @type {string}
|
|
2546
|
+
* @memberof ClaimPreBatch
|
|
2547
|
+
*/
|
|
2548
|
+
'present_On_Admission10'?: string | null;
|
|
2549
|
+
/**
|
|
2550
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2551
|
+
* @type {string}
|
|
2552
|
+
* @memberof ClaimPreBatch
|
|
2553
|
+
*/
|
|
2554
|
+
'present_On_Admission11'?: string | null;
|
|
2555
|
+
/**
|
|
2556
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2557
|
+
* @type {string}
|
|
2558
|
+
* @memberof ClaimPreBatch
|
|
2559
|
+
*/
|
|
2560
|
+
'present_On_Admission12'?: string | null;
|
|
2561
|
+
/**
|
|
2562
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2563
|
+
* @type {string}
|
|
2564
|
+
* @memberof ClaimPreBatch
|
|
2565
|
+
*/
|
|
2566
|
+
'present_On_Admission13'?: string | null;
|
|
2567
|
+
/**
|
|
2568
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2569
|
+
* @type {string}
|
|
2570
|
+
* @memberof ClaimPreBatch
|
|
2571
|
+
*/
|
|
2572
|
+
'present_On_Admission14'?: string | null;
|
|
2573
|
+
/**
|
|
2574
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2575
|
+
* @type {string}
|
|
2576
|
+
* @memberof ClaimPreBatch
|
|
2577
|
+
*/
|
|
2578
|
+
'present_On_Admission15'?: string | null;
|
|
2579
|
+
/**
|
|
2580
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2581
|
+
* @type {string}
|
|
2582
|
+
* @memberof ClaimPreBatch
|
|
2583
|
+
*/
|
|
2584
|
+
'present_On_Admission16'?: string | null;
|
|
2585
|
+
/**
|
|
2586
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2587
|
+
* @type {string}
|
|
2588
|
+
* @memberof ClaimPreBatch
|
|
2589
|
+
*/
|
|
2590
|
+
'present_On_Admission17'?: string | null;
|
|
2591
|
+
/**
|
|
2592
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2593
|
+
* @type {string}
|
|
2594
|
+
* @memberof ClaimPreBatch
|
|
2595
|
+
*/
|
|
2596
|
+
'present_On_Admission18'?: string | null;
|
|
2597
|
+
/**
|
|
2598
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2599
|
+
* @type {string}
|
|
2600
|
+
* @memberof ClaimPreBatch
|
|
2601
|
+
*/
|
|
2602
|
+
'present_On_Admission19'?: string | null;
|
|
2603
|
+
/**
|
|
2604
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2605
|
+
* @type {string}
|
|
2606
|
+
* @memberof ClaimPreBatch
|
|
2607
|
+
*/
|
|
2608
|
+
'present_On_Admission2'?: string | null;
|
|
2609
|
+
/**
|
|
2610
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2611
|
+
* @type {string}
|
|
2612
|
+
* @memberof ClaimPreBatch
|
|
2613
|
+
*/
|
|
2614
|
+
'present_On_Admission20'?: string | null;
|
|
2615
|
+
/**
|
|
2616
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2617
|
+
* @type {string}
|
|
2618
|
+
* @memberof ClaimPreBatch
|
|
2619
|
+
*/
|
|
2620
|
+
'present_On_Admission21'?: string | null;
|
|
2621
|
+
/**
|
|
2622
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2623
|
+
* @type {string}
|
|
2624
|
+
* @memberof ClaimPreBatch
|
|
2625
|
+
*/
|
|
2626
|
+
'present_On_Admission22'?: string | null;
|
|
2627
|
+
/**
|
|
2628
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2629
|
+
* @type {string}
|
|
2630
|
+
* @memberof ClaimPreBatch
|
|
2631
|
+
*/
|
|
2632
|
+
'present_On_Admission23'?: string | null;
|
|
2633
|
+
/**
|
|
2634
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2635
|
+
* @type {string}
|
|
2636
|
+
* @memberof ClaimPreBatch
|
|
2637
|
+
*/
|
|
2638
|
+
'present_On_Admission24'?: string | null;
|
|
2639
|
+
/**
|
|
2640
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2641
|
+
* @type {string}
|
|
2642
|
+
* @memberof ClaimPreBatch
|
|
2643
|
+
*/
|
|
2644
|
+
'present_On_Admission3'?: string | null;
|
|
2645
|
+
/**
|
|
2646
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2647
|
+
* @type {string}
|
|
2648
|
+
* @memberof ClaimPreBatch
|
|
2649
|
+
*/
|
|
2650
|
+
'present_On_Admission4'?: string | null;
|
|
2651
|
+
/**
|
|
2652
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2653
|
+
* @type {string}
|
|
2654
|
+
* @memberof ClaimPreBatch
|
|
2655
|
+
*/
|
|
2656
|
+
'present_On_Admission5'?: string | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2659
|
+
* @type {string}
|
|
2660
|
+
* @memberof ClaimPreBatch
|
|
2661
|
+
*/
|
|
2662
|
+
'present_On_Admission6'?: string | null;
|
|
2663
|
+
/**
|
|
2664
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2665
|
+
* @type {string}
|
|
2666
|
+
* @memberof ClaimPreBatch
|
|
2667
|
+
*/
|
|
2668
|
+
'present_On_Admission7'?: string | null;
|
|
2669
|
+
/**
|
|
2670
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2671
|
+
* @type {string}
|
|
2672
|
+
* @memberof ClaimPreBatch
|
|
2673
|
+
*/
|
|
2674
|
+
'present_On_Admission8'?: string | null;
|
|
2675
|
+
/**
|
|
2676
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2677
|
+
* @type {string}
|
|
2678
|
+
* @memberof ClaimPreBatch
|
|
2679
|
+
*/
|
|
2680
|
+
'present_On_Admission9'?: string | null;
|
|
2681
|
+
/**
|
|
2682
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2683
|
+
* @type {string}
|
|
2684
|
+
* @memberof ClaimPreBatch
|
|
2685
|
+
*/
|
|
2686
|
+
'present_On_Admission_ECode1'?: string | null;
|
|
2687
|
+
/**
|
|
2688
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2689
|
+
* @type {string}
|
|
2690
|
+
* @memberof ClaimPreBatch
|
|
2691
|
+
*/
|
|
2692
|
+
'present_On_Admission_ECode10'?: string | null;
|
|
2693
|
+
/**
|
|
2694
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2695
|
+
* @type {string}
|
|
2696
|
+
* @memberof ClaimPreBatch
|
|
2697
|
+
*/
|
|
2698
|
+
'present_On_Admission_ECode11'?: string | null;
|
|
2699
|
+
/**
|
|
2700
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2701
|
+
* @type {string}
|
|
2702
|
+
* @memberof ClaimPreBatch
|
|
2703
|
+
*/
|
|
2704
|
+
'present_On_Admission_ECode12'?: string | null;
|
|
2705
|
+
/**
|
|
2706
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2707
|
+
* @type {string}
|
|
2708
|
+
* @memberof ClaimPreBatch
|
|
2709
|
+
*/
|
|
2710
|
+
'present_On_Admission_ECode2'?: string | null;
|
|
2711
|
+
/**
|
|
2712
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2713
|
+
* @type {string}
|
|
2714
|
+
* @memberof ClaimPreBatch
|
|
2715
|
+
*/
|
|
2716
|
+
'present_On_Admission_ECode3'?: string | null;
|
|
2717
|
+
/**
|
|
2718
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2719
|
+
* @type {string}
|
|
2720
|
+
* @memberof ClaimPreBatch
|
|
2721
|
+
*/
|
|
2722
|
+
'present_On_Admission_ECode4'?: string | null;
|
|
2723
|
+
/**
|
|
2724
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2725
|
+
* @type {string}
|
|
2726
|
+
* @memberof ClaimPreBatch
|
|
2727
|
+
*/
|
|
2728
|
+
'present_On_Admission_ECode5'?: string | null;
|
|
2729
|
+
/**
|
|
2730
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2731
|
+
* @type {string}
|
|
2732
|
+
* @memberof ClaimPreBatch
|
|
2733
|
+
*/
|
|
2734
|
+
'present_On_Admission_ECode6'?: string | null;
|
|
2735
|
+
/**
|
|
2736
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2737
|
+
* @type {string}
|
|
2738
|
+
* @memberof ClaimPreBatch
|
|
2739
|
+
*/
|
|
2740
|
+
'present_On_Admission_ECode7'?: string | null;
|
|
2741
|
+
/**
|
|
2742
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2743
|
+
* @type {string}
|
|
2744
|
+
* @memberof ClaimPreBatch
|
|
2745
|
+
*/
|
|
2746
|
+
'present_On_Admission_ECode8'?: string | null;
|
|
2747
|
+
/**
|
|
2748
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2749
|
+
* @type {string}
|
|
2750
|
+
* @memberof ClaimPreBatch
|
|
2751
|
+
*/
|
|
2752
|
+
'present_On_Admission_ECode9'?: string | null;
|
|
2753
|
+
/**
|
|
2754
|
+
* The ID of the pricing organization. Data is obtained in segment HCP04 on an 837.
|
|
2755
|
+
* @type {string}
|
|
2756
|
+
* @memberof ClaimPreBatch
|
|
2757
|
+
*/
|
|
2758
|
+
'pricing_Org_ID'?: string | null;
|
|
2759
|
+
/**
|
|
2760
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2761
|
+
* @type {string}
|
|
2762
|
+
* @memberof ClaimPreBatch
|
|
2763
|
+
*/
|
|
2764
|
+
'principal_Procedure_Code'?: string | null;
|
|
2765
|
+
/**
|
|
2766
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2767
|
+
* @type {string}
|
|
2768
|
+
* @memberof ClaimPreBatch
|
|
2769
|
+
*/
|
|
2770
|
+
'principal_Procedure_Date'?: string | null;
|
|
2771
|
+
/**
|
|
2772
|
+
* The date of a previous prosthetic or crown applied, if there was one.
|
|
2773
|
+
* @type {string}
|
|
2774
|
+
* @memberof ClaimPreBatch
|
|
2775
|
+
*/
|
|
2776
|
+
'prior_Placement_Date'?: string | null;
|
|
2777
|
+
/**
|
|
2778
|
+
* 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.
|
|
2779
|
+
* @type {boolean}
|
|
2780
|
+
* @memberof ClaimPreBatch
|
|
2781
|
+
*/
|
|
2782
|
+
'prosthesis_Replacement': boolean;
|
|
2783
|
+
/**
|
|
2784
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2785
|
+
* @type {string}
|
|
2786
|
+
* @memberof ClaimPreBatch
|
|
2787
|
+
*/
|
|
2788
|
+
'provider_Address'?: string | null;
|
|
2789
|
+
/**
|
|
2790
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2791
|
+
* @type {string}
|
|
2792
|
+
* @memberof ClaimPreBatch
|
|
2793
|
+
*/
|
|
2794
|
+
'provider_Address2'?: string | null;
|
|
2795
|
+
/**
|
|
2796
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2797
|
+
* @type {string}
|
|
2798
|
+
* @memberof ClaimPreBatch
|
|
2799
|
+
*/
|
|
2800
|
+
'provider_City'?: string | null;
|
|
2801
|
+
/**
|
|
2802
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2803
|
+
* @type {string}
|
|
2804
|
+
* @memberof ClaimPreBatch
|
|
2805
|
+
*/
|
|
2806
|
+
'provider_Federal_ID'?: string | null;
|
|
2807
|
+
/**
|
|
2808
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2809
|
+
* @type {string}
|
|
2810
|
+
* @memberof ClaimPreBatch
|
|
2811
|
+
*/
|
|
2812
|
+
'provider_First_Name'?: string | null;
|
|
2813
|
+
/**
|
|
2814
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2815
|
+
* @type {string}
|
|
2816
|
+
* @memberof ClaimPreBatch
|
|
2817
|
+
*/
|
|
2818
|
+
'provider_ID'?: string | null;
|
|
2819
|
+
/**
|
|
2820
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2821
|
+
* @type {string}
|
|
2822
|
+
* @memberof ClaimPreBatch
|
|
2823
|
+
*/
|
|
2824
|
+
'provider_Last_Name'?: string | null;
|
|
2825
|
+
/**
|
|
2826
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2827
|
+
* @type {string}
|
|
2828
|
+
* @memberof ClaimPreBatch
|
|
2829
|
+
*/
|
|
2830
|
+
'provider_MAID'?: string | null;
|
|
2831
|
+
/**
|
|
2832
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2833
|
+
* @type {string}
|
|
2834
|
+
* @memberof ClaimPreBatch
|
|
2835
|
+
*/
|
|
2836
|
+
'provider_NPI'?: string | null;
|
|
2837
|
+
/**
|
|
2838
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2839
|
+
* @type {string}
|
|
2840
|
+
* @memberof ClaimPreBatch
|
|
2841
|
+
*/
|
|
2842
|
+
'provider_Org_Name'?: string | null;
|
|
2843
|
+
/**
|
|
2844
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2845
|
+
* @type {string}
|
|
2846
|
+
* @memberof ClaimPreBatch
|
|
2847
|
+
*/
|
|
2848
|
+
'provider_Phone'?: string | null;
|
|
2849
|
+
/**
|
|
2850
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2851
|
+
* @type {string}
|
|
2852
|
+
* @memberof ClaimPreBatch
|
|
2853
|
+
*/
|
|
2854
|
+
'provider_State'?: string | null;
|
|
2855
|
+
/**
|
|
2856
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2857
|
+
* @type {string}
|
|
2858
|
+
* @memberof ClaimPreBatch
|
|
2859
|
+
*/
|
|
2860
|
+
'provider_Taxonomy'?: string | null;
|
|
2861
|
+
/**
|
|
2862
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2863
|
+
* @type {string}
|
|
2864
|
+
* @memberof ClaimPreBatch
|
|
2865
|
+
*/
|
|
2866
|
+
'provider_Zip'?: string | null;
|
|
2867
|
+
/**
|
|
2868
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2869
|
+
* @type {string}
|
|
2870
|
+
* @memberof ClaimPreBatch
|
|
2871
|
+
*/
|
|
2872
|
+
'received_Date'?: string | null;
|
|
2873
|
+
/**
|
|
2874
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2875
|
+
* @type {string}
|
|
2876
|
+
* @memberof ClaimPreBatch
|
|
2877
|
+
*/
|
|
2878
|
+
'ref_Provider_Address'?: string | null;
|
|
2879
|
+
/**
|
|
2880
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2881
|
+
* @type {string}
|
|
2882
|
+
* @memberof ClaimPreBatch
|
|
2883
|
+
*/
|
|
2884
|
+
'ref_Provider_Address2'?: string | null;
|
|
2885
|
+
/**
|
|
2886
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2887
|
+
* @type {string}
|
|
2888
|
+
* @memberof ClaimPreBatch
|
|
2889
|
+
*/
|
|
2890
|
+
'ref_Provider_City'?: string | null;
|
|
2891
|
+
/**
|
|
2892
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2893
|
+
* @type {string}
|
|
2894
|
+
* @memberof ClaimPreBatch
|
|
2895
|
+
*/
|
|
2896
|
+
'ref_Provider_Federal_ID'?: string | null;
|
|
2897
|
+
/**
|
|
2898
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2899
|
+
* @type {string}
|
|
2900
|
+
* @memberof ClaimPreBatch
|
|
2901
|
+
*/
|
|
2902
|
+
'ref_Provider_First_Name'?: string | null;
|
|
2903
|
+
/**
|
|
2904
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2905
|
+
* @type {string}
|
|
2906
|
+
* @memberof ClaimPreBatch
|
|
2907
|
+
*/
|
|
2908
|
+
'ref_Provider_Last_Name'?: string | null;
|
|
2909
|
+
/**
|
|
2910
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2911
|
+
* @type {string}
|
|
2912
|
+
* @memberof ClaimPreBatch
|
|
2913
|
+
*/
|
|
2914
|
+
'ref_Provider_MAID'?: string | null;
|
|
2915
|
+
/**
|
|
2916
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2917
|
+
* @type {string}
|
|
2918
|
+
* @memberof ClaimPreBatch
|
|
2919
|
+
*/
|
|
2920
|
+
'ref_Provider_NPI'?: string | null;
|
|
2921
|
+
/**
|
|
2922
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2923
|
+
* @type {string}
|
|
2924
|
+
* @memberof ClaimPreBatch
|
|
2925
|
+
*/
|
|
2926
|
+
'ref_Provider_Org_Name'?: string | null;
|
|
2927
|
+
/**
|
|
2928
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2929
|
+
* @type {string}
|
|
2930
|
+
* @memberof ClaimPreBatch
|
|
2931
|
+
*/
|
|
2932
|
+
'ref_Provider_Phone'?: string | null;
|
|
2933
|
+
/**
|
|
2934
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2935
|
+
* @type {string}
|
|
2936
|
+
* @memberof ClaimPreBatch
|
|
2937
|
+
*/
|
|
2938
|
+
'ref_Provider_State'?: string | null;
|
|
2939
|
+
/**
|
|
2940
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2941
|
+
* @type {string}
|
|
2942
|
+
* @memberof ClaimPreBatch
|
|
2943
|
+
*/
|
|
2944
|
+
'ref_Provider_Taxonomy'?: string | null;
|
|
2945
|
+
/**
|
|
2946
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2947
|
+
* @type {string}
|
|
2948
|
+
* @memberof ClaimPreBatch
|
|
2949
|
+
*/
|
|
2950
|
+
'ref_Provider_Zip'?: string | null;
|
|
2951
|
+
/**
|
|
2952
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2953
|
+
* @type {string}
|
|
2954
|
+
* @memberof ClaimPreBatch
|
|
2955
|
+
*/
|
|
2956
|
+
'referred_By'?: string | null;
|
|
2957
|
+
/**
|
|
2958
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2959
|
+
* @type {number}
|
|
2960
|
+
* @memberof ClaimPreBatch
|
|
2961
|
+
*/
|
|
2962
|
+
'refund_Check_ID'?: number | null;
|
|
2963
|
+
/**
|
|
2964
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2965
|
+
* @type {number}
|
|
2966
|
+
* @memberof ClaimPreBatch
|
|
2967
|
+
*/
|
|
2968
|
+
'refund_Funding_Key'?: number | null;
|
|
2969
|
+
/**
|
|
2970
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2971
|
+
* @type {boolean}
|
|
2972
|
+
* @memberof ClaimPreBatch
|
|
2973
|
+
*/
|
|
2974
|
+
'related_To_Accident': boolean;
|
|
2975
|
+
/**
|
|
2976
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2977
|
+
* @type {boolean}
|
|
2978
|
+
* @memberof ClaimPreBatch
|
|
2979
|
+
*/
|
|
2980
|
+
'related_To_Another_Party': boolean;
|
|
2981
|
+
/**
|
|
2982
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2983
|
+
* @type {boolean}
|
|
2984
|
+
* @memberof ClaimPreBatch
|
|
2985
|
+
*/
|
|
2986
|
+
'related_To_Auto': boolean;
|
|
2987
|
+
/**
|
|
2988
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2989
|
+
* @type {boolean}
|
|
2990
|
+
* @memberof ClaimPreBatch
|
|
2991
|
+
*/
|
|
2992
|
+
'related_To_Employment': boolean;
|
|
2993
|
+
/**
|
|
2994
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2995
|
+
* @type {string}
|
|
2996
|
+
* @memberof ClaimPreBatch
|
|
2997
|
+
*/
|
|
2998
|
+
'relinquished_Care_Date'?: string | null;
|
|
2999
|
+
/**
|
|
3000
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3001
|
+
* @type {string}
|
|
3002
|
+
* @memberof ClaimPreBatch
|
|
3003
|
+
*/
|
|
3004
|
+
'rend_Provider_Address'?: string | null;
|
|
3005
|
+
/**
|
|
3006
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3007
|
+
* @type {string}
|
|
3008
|
+
* @memberof ClaimPreBatch
|
|
3009
|
+
*/
|
|
3010
|
+
'rend_Provider_Address2'?: string | null;
|
|
3011
|
+
/**
|
|
3012
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3013
|
+
* @type {string}
|
|
3014
|
+
* @memberof ClaimPreBatch
|
|
3015
|
+
*/
|
|
3016
|
+
'rend_Provider_City'?: string | null;
|
|
3017
|
+
/**
|
|
3018
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3019
|
+
* @type {string}
|
|
3020
|
+
* @memberof ClaimPreBatch
|
|
3021
|
+
*/
|
|
3022
|
+
'rend_Provider_Federal_ID'?: string | null;
|
|
3023
|
+
/**
|
|
3024
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3025
|
+
* @type {string}
|
|
3026
|
+
* @memberof ClaimPreBatch
|
|
3027
|
+
*/
|
|
3028
|
+
'rend_Provider_First_Name'?: string | null;
|
|
3029
|
+
/**
|
|
3030
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3031
|
+
* @type {string}
|
|
3032
|
+
* @memberof ClaimPreBatch
|
|
3033
|
+
*/
|
|
3034
|
+
'rend_Provider_Last_Name'?: string | null;
|
|
3035
|
+
/**
|
|
3036
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3037
|
+
* @type {string}
|
|
3038
|
+
* @memberof ClaimPreBatch
|
|
3039
|
+
*/
|
|
3040
|
+
'rend_Provider_MAID'?: string | null;
|
|
3041
|
+
/**
|
|
3042
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3043
|
+
* @type {string}
|
|
3044
|
+
* @memberof ClaimPreBatch
|
|
3045
|
+
*/
|
|
3046
|
+
'rend_Provider_NPI'?: string | null;
|
|
3047
|
+
/**
|
|
3048
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3049
|
+
* @type {string}
|
|
3050
|
+
* @memberof ClaimPreBatch
|
|
3051
|
+
*/
|
|
3052
|
+
'rend_Provider_Org_Name'?: string | null;
|
|
3053
|
+
/**
|
|
3054
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3055
|
+
* @type {string}
|
|
3056
|
+
* @memberof ClaimPreBatch
|
|
3057
|
+
*/
|
|
3058
|
+
'rend_Provider_Phone'?: string | null;
|
|
3059
|
+
/**
|
|
3060
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3061
|
+
* @type {string}
|
|
3062
|
+
* @memberof ClaimPreBatch
|
|
3063
|
+
*/
|
|
3064
|
+
'rend_Provider_State'?: string | null;
|
|
3065
|
+
/**
|
|
3066
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3067
|
+
* @type {string}
|
|
3068
|
+
* @memberof ClaimPreBatch
|
|
3069
|
+
*/
|
|
3070
|
+
'rend_Provider_Taxonomy'?: string | null;
|
|
3071
|
+
/**
|
|
3072
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3073
|
+
* @type {string}
|
|
3074
|
+
* @memberof ClaimPreBatch
|
|
3075
|
+
*/
|
|
3076
|
+
'rend_Provider_Zip'?: string | null;
|
|
3077
|
+
/**
|
|
3078
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3079
|
+
* @type {string}
|
|
3080
|
+
* @memberof ClaimPreBatch
|
|
3081
|
+
*/
|
|
3082
|
+
'repriced_Network_ID'?: string | null;
|
|
3083
|
+
/**
|
|
3084
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3085
|
+
* @type {string}
|
|
3086
|
+
* @memberof ClaimPreBatch
|
|
3087
|
+
*/
|
|
2050
3088
|
'return_To_Work_Date'?: string | null;
|
|
2051
3089
|
/**
|
|
2052
|
-
*
|
|
3090
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2053
3091
|
* @type {boolean}
|
|
2054
3092
|
* @memberof ClaimPreBatch
|
|
2055
3093
|
*/
|
|
2056
3094
|
'salary_Continuation': boolean;
|
|
2057
3095
|
/**
|
|
2058
|
-
*
|
|
3096
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2059
3097
|
* @type {string}
|
|
2060
3098
|
* @memberof ClaimPreBatch
|
|
2061
3099
|
*/
|
|
2062
3100
|
'send_Check_To'?: string | null;
|
|
2063
3101
|
/**
|
|
2064
|
-
*
|
|
3102
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2065
3103
|
* @type {string}
|
|
2066
3104
|
* @memberof ClaimPreBatch
|
|
2067
3105
|
*/
|
|
2068
3106
|
'sender_ID'?: string | null;
|
|
2069
3107
|
/**
|
|
2070
|
-
*
|
|
3108
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2071
3109
|
* @type {string}
|
|
2072
3110
|
* @memberof ClaimPreBatch
|
|
2073
3111
|
*/
|
|
2074
3112
|
'service_Date'?: string | null;
|
|
2075
3113
|
/**
|
|
2076
|
-
*
|
|
3114
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2077
3115
|
* @type {string}
|
|
2078
3116
|
* @memberof ClaimPreBatch
|
|
2079
3117
|
*/
|
|
2080
3118
|
'service_Fac_Loc_Address'?: string | null;
|
|
2081
3119
|
/**
|
|
2082
|
-
*
|
|
3120
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2083
3121
|
* @type {string}
|
|
2084
3122
|
* @memberof ClaimPreBatch
|
|
2085
3123
|
*/
|
|
2086
3124
|
'service_Fac_Loc_Address2'?: string | null;
|
|
2087
3125
|
/**
|
|
2088
|
-
*
|
|
3126
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2089
3127
|
* @type {string}
|
|
2090
3128
|
* @memberof ClaimPreBatch
|
|
2091
3129
|
*/
|
|
2092
3130
|
'service_Fac_Loc_City'?: string | null;
|
|
2093
3131
|
/**
|
|
2094
|
-
*
|
|
3132
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2095
3133
|
* @type {string}
|
|
2096
3134
|
* @memberof ClaimPreBatch
|
|
2097
3135
|
*/
|
|
2098
3136
|
'service_Fac_Loc_Federal_ID'?: string | null;
|
|
2099
3137
|
/**
|
|
2100
|
-
*
|
|
3138
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2101
3139
|
* @type {string}
|
|
2102
3140
|
* @memberof ClaimPreBatch
|
|
2103
3141
|
*/
|
|
2104
3142
|
'service_Fac_Loc_First_Name'?: string | null;
|
|
2105
3143
|
/**
|
|
2106
|
-
*
|
|
3144
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2107
3145
|
* @type {string}
|
|
2108
3146
|
* @memberof ClaimPreBatch
|
|
2109
3147
|
*/
|
|
2110
3148
|
'service_Fac_Loc_Last_Name'?: string | null;
|
|
2111
3149
|
/**
|
|
2112
|
-
*
|
|
3150
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2113
3151
|
* @type {string}
|
|
2114
3152
|
* @memberof ClaimPreBatch
|
|
2115
3153
|
*/
|
|
2116
3154
|
'service_Fac_Loc_MAID'?: string | null;
|
|
2117
3155
|
/**
|
|
2118
|
-
*
|
|
3156
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2119
3157
|
* @type {string}
|
|
2120
3158
|
* @memberof ClaimPreBatch
|
|
2121
3159
|
*/
|
|
2122
3160
|
'service_Fac_Loc_NPI'?: string | null;
|
|
2123
3161
|
/**
|
|
2124
|
-
*
|
|
3162
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2125
3163
|
* @type {string}
|
|
2126
3164
|
* @memberof ClaimPreBatch
|
|
2127
3165
|
*/
|
|
2128
3166
|
'service_Fac_Loc_Org_Name'?: string | null;
|
|
2129
3167
|
/**
|
|
2130
|
-
*
|
|
3168
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2131
3169
|
* @type {string}
|
|
2132
3170
|
* @memberof ClaimPreBatch
|
|
2133
3171
|
*/
|
|
2134
3172
|
'service_Fac_Loc_Phone'?: string | null;
|
|
2135
3173
|
/**
|
|
2136
|
-
*
|
|
3174
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2137
3175
|
* @type {string}
|
|
2138
3176
|
* @memberof ClaimPreBatch
|
|
2139
3177
|
*/
|
|
2140
3178
|
'service_Fac_Loc_State'?: string | null;
|
|
2141
3179
|
/**
|
|
2142
|
-
*
|
|
3180
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2143
3181
|
* @type {string}
|
|
2144
3182
|
* @memberof ClaimPreBatch
|
|
2145
3183
|
*/
|
|
2146
3184
|
'service_Fac_Loc_Taxonomy'?: string | null;
|
|
2147
3185
|
/**
|
|
2148
|
-
*
|
|
3186
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2149
3187
|
* @type {string}
|
|
2150
3188
|
* @memberof ClaimPreBatch
|
|
2151
3189
|
*/
|
|
2152
3190
|
'service_Fac_Loc_Zip'?: string | null;
|
|
2153
3191
|
/**
|
|
2154
|
-
*
|
|
3192
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2155
3193
|
* @type {string}
|
|
2156
3194
|
* @memberof ClaimPreBatch
|
|
2157
3195
|
*/
|
|
2158
3196
|
'service_Thru'?: string | null;
|
|
2159
3197
|
/**
|
|
2160
|
-
*
|
|
3198
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2161
3199
|
* @type {boolean}
|
|
2162
3200
|
* @memberof ClaimPreBatch
|
|
2163
3201
|
*/
|
|
2164
3202
|
'sick_Time': boolean;
|
|
2165
3203
|
/**
|
|
2166
|
-
*
|
|
3204
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2167
3205
|
* @type {string}
|
|
2168
3206
|
* @memberof ClaimPreBatch
|
|
2169
3207
|
*/
|
|
2170
3208
|
'subscriber_ID'?: string | null;
|
|
2171
3209
|
/**
|
|
2172
|
-
*
|
|
3210
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2173
3211
|
* @type {boolean}
|
|
2174
3212
|
* @memberof ClaimPreBatch
|
|
2175
3213
|
*/
|
|
2176
3214
|
'subscriber_Signature': boolean;
|
|
2177
3215
|
/**
|
|
2178
|
-
*
|
|
3216
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2179
3217
|
* @type {boolean}
|
|
2180
3218
|
* @memberof ClaimPreBatch
|
|
2181
3219
|
*/
|
|
2182
3220
|
'survivor_Benefit': boolean;
|
|
2183
3221
|
/**
|
|
2184
|
-
*
|
|
3222
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2185
3223
|
* @type {boolean}
|
|
2186
3224
|
* @memberof ClaimPreBatch
|
|
2187
3225
|
*/
|
|
2188
3226
|
'third_Party_Payment': boolean;
|
|
2189
3227
|
/**
|
|
2190
|
-
*
|
|
3228
|
+
* 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.
|
|
2191
3229
|
* @type {number}
|
|
2192
3230
|
* @memberof ClaimPreBatch
|
|
2193
3231
|
*/
|
|
2194
3232
|
'total_COB': number;
|
|
2195
3233
|
/**
|
|
2196
|
-
*
|
|
3234
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2197
3235
|
* @type {string}
|
|
2198
3236
|
* @memberof ClaimPreBatch
|
|
2199
3237
|
*/
|
|
2200
3238
|
'trans_837_Control_Num'?: string | null;
|
|
2201
3239
|
/**
|
|
2202
|
-
*
|
|
3240
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2203
3241
|
* @type {boolean}
|
|
2204
3242
|
* @memberof ClaimPreBatch
|
|
2205
3243
|
*/
|
|
2206
3244
|
'transaction_837': boolean;
|
|
2207
3245
|
/**
|
|
2208
|
-
*
|
|
3246
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2209
3247
|
* @type {string}
|
|
2210
3248
|
* @memberof ClaimPreBatch
|
|
2211
3249
|
*/
|
|
2212
3250
|
'transaction_837_ID'?: string | null;
|
|
2213
3251
|
/**
|
|
2214
|
-
*
|
|
3252
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2215
3253
|
* @type {string}
|
|
2216
3254
|
* @memberof ClaimPreBatch
|
|
2217
3255
|
*/
|
|
2218
3256
|
'type_Of_Admission'?: string | null;
|
|
2219
3257
|
/**
|
|
2220
|
-
*
|
|
3258
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2221
3259
|
* @type {string}
|
|
2222
3260
|
* @memberof ClaimPreBatch
|
|
2223
3261
|
*/
|
|
2224
3262
|
'type_Of_Bill'?: string | null;
|
|
2225
3263
|
/**
|
|
2226
|
-
*
|
|
3264
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2227
3265
|
* @type {string}
|
|
2228
3266
|
* @memberof ClaimPreBatch
|
|
2229
3267
|
*/
|
|
2230
3268
|
'update_Date'?: string;
|
|
2231
3269
|
/**
|
|
2232
|
-
*
|
|
3270
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
2233
3271
|
* @type {string}
|
|
2234
3272
|
* @memberof ClaimPreBatch
|
|
2235
3273
|
*/
|
|
2236
3274
|
'update_User'?: string | null;
|
|
2237
3275
|
/**
|
|
2238
|
-
*
|
|
3276
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2239
3277
|
* @type {boolean}
|
|
2240
3278
|
* @memberof ClaimPreBatch
|
|
2241
3279
|
*/
|
|
@@ -2245,15 +3283,255 @@ export interface ClaimPreBatch {
|
|
|
2245
3283
|
* @type {number}
|
|
2246
3284
|
* @memberof ClaimPreBatch
|
|
2247
3285
|
*/
|
|
2248
|
-
'
|
|
3286
|
+
'value_Amount10'?: number | null;
|
|
3287
|
+
/**
|
|
3288
|
+
*
|
|
3289
|
+
* @type {number}
|
|
3290
|
+
* @memberof ClaimPreBatch
|
|
3291
|
+
*/
|
|
3292
|
+
'value_Amount11'?: number | null;
|
|
3293
|
+
/**
|
|
3294
|
+
*
|
|
3295
|
+
* @type {number}
|
|
3296
|
+
* @memberof ClaimPreBatch
|
|
3297
|
+
*/
|
|
3298
|
+
'value_Amount12'?: number | null;
|
|
3299
|
+
/**
|
|
3300
|
+
*
|
|
3301
|
+
* @type {number}
|
|
3302
|
+
* @memberof ClaimPreBatch
|
|
3303
|
+
*/
|
|
3304
|
+
'value_Amount13'?: number | null;
|
|
3305
|
+
/**
|
|
3306
|
+
*
|
|
3307
|
+
* @type {number}
|
|
3308
|
+
* @memberof ClaimPreBatch
|
|
3309
|
+
*/
|
|
3310
|
+
'value_Amount14'?: number | null;
|
|
3311
|
+
/**
|
|
3312
|
+
*
|
|
3313
|
+
* @type {number}
|
|
3314
|
+
* @memberof ClaimPreBatch
|
|
3315
|
+
*/
|
|
3316
|
+
'value_Amount15'?: number | null;
|
|
3317
|
+
/**
|
|
3318
|
+
*
|
|
3319
|
+
* @type {number}
|
|
3320
|
+
* @memberof ClaimPreBatch
|
|
3321
|
+
*/
|
|
3322
|
+
'value_Amount16'?: number | null;
|
|
3323
|
+
/**
|
|
3324
|
+
*
|
|
3325
|
+
* @type {number}
|
|
3326
|
+
* @memberof ClaimPreBatch
|
|
3327
|
+
*/
|
|
3328
|
+
'value_Amount17'?: number | null;
|
|
3329
|
+
/**
|
|
3330
|
+
*
|
|
3331
|
+
* @type {number}
|
|
3332
|
+
* @memberof ClaimPreBatch
|
|
3333
|
+
*/
|
|
3334
|
+
'value_Amount18'?: number | null;
|
|
3335
|
+
/**
|
|
3336
|
+
*
|
|
3337
|
+
* @type {number}
|
|
3338
|
+
* @memberof ClaimPreBatch
|
|
3339
|
+
*/
|
|
3340
|
+
'value_Amount19'?: number | null;
|
|
3341
|
+
/**
|
|
3342
|
+
*
|
|
3343
|
+
* @type {number}
|
|
3344
|
+
* @memberof ClaimPreBatch
|
|
3345
|
+
*/
|
|
3346
|
+
'value_Amount20'?: number | null;
|
|
3347
|
+
/**
|
|
3348
|
+
*
|
|
3349
|
+
* @type {number}
|
|
3350
|
+
* @memberof ClaimPreBatch
|
|
3351
|
+
*/
|
|
3352
|
+
'value_Amount21'?: number | null;
|
|
3353
|
+
/**
|
|
3354
|
+
*
|
|
3355
|
+
* @type {number}
|
|
3356
|
+
* @memberof ClaimPreBatch
|
|
3357
|
+
*/
|
|
3358
|
+
'value_Amount22'?: number | null;
|
|
3359
|
+
/**
|
|
3360
|
+
*
|
|
3361
|
+
* @type {number}
|
|
3362
|
+
* @memberof ClaimPreBatch
|
|
3363
|
+
*/
|
|
3364
|
+
'value_Amount23'?: number | null;
|
|
3365
|
+
/**
|
|
3366
|
+
*
|
|
3367
|
+
* @type {number}
|
|
3368
|
+
* @memberof ClaimPreBatch
|
|
3369
|
+
*/
|
|
3370
|
+
'value_Amount24'?: number | null;
|
|
3371
|
+
/**
|
|
3372
|
+
*
|
|
3373
|
+
* @type {number}
|
|
3374
|
+
* @memberof ClaimPreBatch
|
|
3375
|
+
*/
|
|
3376
|
+
'value_Amount5'?: number | null;
|
|
3377
|
+
/**
|
|
3378
|
+
*
|
|
3379
|
+
* @type {number}
|
|
3380
|
+
* @memberof ClaimPreBatch
|
|
3381
|
+
*/
|
|
3382
|
+
'value_Amount6'?: number | null;
|
|
3383
|
+
/**
|
|
3384
|
+
*
|
|
3385
|
+
* @type {number}
|
|
3386
|
+
* @memberof ClaimPreBatch
|
|
3387
|
+
*/
|
|
3388
|
+
'value_Amount7'?: number | null;
|
|
3389
|
+
/**
|
|
3390
|
+
*
|
|
3391
|
+
* @type {number}
|
|
3392
|
+
* @memberof ClaimPreBatch
|
|
3393
|
+
*/
|
|
3394
|
+
'value_Amount8'?: number | null;
|
|
3395
|
+
/**
|
|
3396
|
+
*
|
|
3397
|
+
* @type {number}
|
|
3398
|
+
* @memberof ClaimPreBatch
|
|
3399
|
+
*/
|
|
3400
|
+
'value_Amount9'?: number | null;
|
|
3401
|
+
/**
|
|
3402
|
+
*
|
|
3403
|
+
* @type {string}
|
|
3404
|
+
* @memberof ClaimPreBatch
|
|
3405
|
+
*/
|
|
3406
|
+
'value_Code10'?: string | null;
|
|
3407
|
+
/**
|
|
3408
|
+
*
|
|
3409
|
+
* @type {string}
|
|
3410
|
+
* @memberof ClaimPreBatch
|
|
3411
|
+
*/
|
|
3412
|
+
'value_Code11'?: string | null;
|
|
3413
|
+
/**
|
|
3414
|
+
*
|
|
3415
|
+
* @type {string}
|
|
3416
|
+
* @memberof ClaimPreBatch
|
|
3417
|
+
*/
|
|
3418
|
+
'value_Code12'?: string | null;
|
|
3419
|
+
/**
|
|
3420
|
+
*
|
|
3421
|
+
* @type {string}
|
|
3422
|
+
* @memberof ClaimPreBatch
|
|
3423
|
+
*/
|
|
3424
|
+
'value_Code13'?: string | null;
|
|
3425
|
+
/**
|
|
3426
|
+
*
|
|
3427
|
+
* @type {string}
|
|
3428
|
+
* @memberof ClaimPreBatch
|
|
3429
|
+
*/
|
|
3430
|
+
'value_Code14'?: string | null;
|
|
3431
|
+
/**
|
|
3432
|
+
*
|
|
3433
|
+
* @type {string}
|
|
3434
|
+
* @memberof ClaimPreBatch
|
|
3435
|
+
*/
|
|
3436
|
+
'value_Code15'?: string | null;
|
|
3437
|
+
/**
|
|
3438
|
+
*
|
|
3439
|
+
* @type {string}
|
|
3440
|
+
* @memberof ClaimPreBatch
|
|
3441
|
+
*/
|
|
3442
|
+
'value_Code16'?: string | null;
|
|
3443
|
+
/**
|
|
3444
|
+
*
|
|
3445
|
+
* @type {string}
|
|
3446
|
+
* @memberof ClaimPreBatch
|
|
3447
|
+
*/
|
|
3448
|
+
'value_Code17'?: string | null;
|
|
3449
|
+
/**
|
|
3450
|
+
*
|
|
3451
|
+
* @type {string}
|
|
3452
|
+
* @memberof ClaimPreBatch
|
|
3453
|
+
*/
|
|
3454
|
+
'value_Code18'?: string | null;
|
|
3455
|
+
/**
|
|
3456
|
+
*
|
|
3457
|
+
* @type {string}
|
|
3458
|
+
* @memberof ClaimPreBatch
|
|
3459
|
+
*/
|
|
3460
|
+
'value_Code19'?: string | null;
|
|
3461
|
+
/**
|
|
3462
|
+
*
|
|
3463
|
+
* @type {string}
|
|
3464
|
+
* @memberof ClaimPreBatch
|
|
3465
|
+
*/
|
|
3466
|
+
'value_Code20'?: string | null;
|
|
3467
|
+
/**
|
|
3468
|
+
*
|
|
3469
|
+
* @type {string}
|
|
3470
|
+
* @memberof ClaimPreBatch
|
|
3471
|
+
*/
|
|
3472
|
+
'value_Code21'?: string | null;
|
|
3473
|
+
/**
|
|
3474
|
+
*
|
|
3475
|
+
* @type {string}
|
|
3476
|
+
* @memberof ClaimPreBatch
|
|
3477
|
+
*/
|
|
3478
|
+
'value_Code22'?: string | null;
|
|
3479
|
+
/**
|
|
3480
|
+
*
|
|
3481
|
+
* @type {string}
|
|
3482
|
+
* @memberof ClaimPreBatch
|
|
3483
|
+
*/
|
|
3484
|
+
'value_Code23'?: string | null;
|
|
3485
|
+
/**
|
|
3486
|
+
*
|
|
3487
|
+
* @type {string}
|
|
3488
|
+
* @memberof ClaimPreBatch
|
|
3489
|
+
*/
|
|
3490
|
+
'value_Code24'?: string | null;
|
|
3491
|
+
/**
|
|
3492
|
+
*
|
|
3493
|
+
* @type {string}
|
|
3494
|
+
* @memberof ClaimPreBatch
|
|
3495
|
+
*/
|
|
3496
|
+
'value_Code5'?: string | null;
|
|
3497
|
+
/**
|
|
3498
|
+
*
|
|
3499
|
+
* @type {string}
|
|
3500
|
+
* @memberof ClaimPreBatch
|
|
3501
|
+
*/
|
|
3502
|
+
'value_Code6'?: string | null;
|
|
3503
|
+
/**
|
|
3504
|
+
*
|
|
3505
|
+
* @type {string}
|
|
3506
|
+
* @memberof ClaimPreBatch
|
|
3507
|
+
*/
|
|
3508
|
+
'value_Code7'?: string | null;
|
|
3509
|
+
/**
|
|
3510
|
+
*
|
|
3511
|
+
* @type {string}
|
|
3512
|
+
* @memberof ClaimPreBatch
|
|
3513
|
+
*/
|
|
3514
|
+
'value_Code8'?: string | null;
|
|
2249
3515
|
/**
|
|
2250
3516
|
*
|
|
3517
|
+
* @type {string}
|
|
3518
|
+
* @memberof ClaimPreBatch
|
|
3519
|
+
*/
|
|
3520
|
+
'value_Code9'?: string | null;
|
|
3521
|
+
/**
|
|
3522
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally.
|
|
3523
|
+
* @type {number}
|
|
3524
|
+
* @memberof ClaimPreBatch
|
|
3525
|
+
*/
|
|
3526
|
+
'void_Check_ID'?: number | null;
|
|
3527
|
+
/**
|
|
3528
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2251
3529
|
* @type {boolean}
|
|
2252
3530
|
* @memberof ClaimPreBatch
|
|
2253
3531
|
*/
|
|
2254
3532
|
'volume_Override': boolean;
|
|
2255
3533
|
/**
|
|
2256
|
-
*
|
|
3534
|
+
* Archive storage table for tracking initial entry of Claim information. Not to be used externally. 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.
|
|
2257
3535
|
* @type {boolean}
|
|
2258
3536
|
* @memberof ClaimPreBatch
|
|
2259
3537
|
*/
|