@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.
Files changed (58) hide show
  1. package/.openapi-generator/FILES +19 -0
  2. package/api/adv-group-api.ts +17 -17
  3. package/api/chat-gptapi.ts +154 -0
  4. package/api/events-api.ts +87 -0
  5. package/api/groups-api.ts +17 -17
  6. package/api/prem-rate-types-api.ts +668 -0
  7. package/api/premium-invoice-payments-api.ts +124 -0
  8. package/api/premium-invoices-api.ts +336 -5
  9. package/api/premium-rate-distribution-types-api.ts +155 -0
  10. package/api/state-interest-api.ts +668 -0
  11. package/api/subscriber-plan-policies-api.ts +43 -91
  12. package/api/user-api.ts +394 -0
  13. package/api.ts +4 -0
  14. package/models/chat-message.ts +30 -0
  15. package/models/claim-batch-detail.ts +152 -140
  16. package/models/claim-batch.ts +1697 -479
  17. package/models/claim-detail.ts +137 -125
  18. package/models/claim-pre-batch-detail.ts +101 -95
  19. package/models/claim-pre-batch.ts +1703 -425
  20. package/models/claim.ts +1562 -338
  21. package/models/company-data.ts +433 -403
  22. package/models/cost-contain-zelis-ex-code.ts +12 -6
  23. package/models/enrollment-disenroll-group.ts +84 -0
  24. package/models/enrollment-disenroll.ts +28 -34
  25. package/models/groups.ts +18 -18
  26. package/models/idcard-request.ts +3 -3
  27. package/models/index.ts +15 -0
  28. package/models/mem-enrollment-plan.ts +9 -9
  29. package/models/mem-enrollment-rider.ts +10 -10
  30. package/models/member-beneficiary.ts +3 -3
  31. package/models/member-language.ts +38 -2
  32. package/models/member-medicare-resp.ts +50 -26
  33. package/models/members.ts +1 -1
  34. package/models/network-procedure-cluster.ts +15 -9
  35. package/models/plan-benefit-cluster.ts +12 -12
  36. package/models/plan-benefit-rate.ts +5 -5
  37. package/models/plan-benefits.ts +58 -52
  38. package/models/plan-type.ts +21 -21
  39. package/models/plans.ts +41 -41
  40. package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
  41. package/models/prem-invoice-group-summary.ts +114 -0
  42. package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
  43. package/models/prem-invoice-payment-ext.ts +102 -0
  44. package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
  45. package/models/prem-invoice-slim.ts +42 -0
  46. package/models/prem-rate-type-list-vbaresponse.ts +45 -0
  47. package/models/prem-rate-type-vbaresponse.ts +45 -0
  48. package/models/prem-rate-type.ts +72 -0
  49. package/models/prem-rate.ts +91 -85
  50. package/models/state-interest-list-vbaresponse.ts +45 -0
  51. package/models/state-interest-vbaresponse.ts +45 -0
  52. package/models/state-interest.ts +84 -0
  53. package/models/sub-enrollment-plan.ts +10 -10
  54. package/models/sub-enrollment-rider.ts +14 -14
  55. package/models/subscribers.ts +2 -2
  56. package/models/user-reset-password-request.ts +42 -0
  57. package/models/users.ts +8 -8
  58. package/package.json +1 -1
package/models/claim.ts CHANGED
@@ -21,319 +21,325 @@
21
21
  */
22
22
  export interface Claim {
23
23
  /**
24
- *
24
+ * Unique identifier assigned each time a claim is processed from batch. This value can change if a claim is returned to batch and reprocessed. 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 Claim
27
27
  */
28
28
  'claim_Number': number;
29
29
  /**
30
- *
30
+ * Used by VBA Backroom IT Services to track export status of a claim using ABF. This has since been moved to ClaimExport tables and is no longer in use. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
31
31
  * @type {boolean}
32
32
  * @memberof Claim
33
33
  */
34
34
  'abF_Exported': boolean;
35
35
  /**
36
- *
36
+ * Used by VBA Backroom IT Services to track export status of a claim using ABF. This has since been moved to ClaimExport tables and is no longer in use.
37
37
  * @type {string}
38
38
  * @memberof Claim
39
39
  */
40
40
  'abF_Exported_Date'?: string | null;
41
41
  /**
42
- *
42
+ * 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.
43
+ * @type {boolean}
44
+ * @memberof Claim
45
+ */
46
+ 'aeoB_Claim': boolean;
47
+ /**
48
+ * The date of accident.
43
49
  * @type {string}
44
50
  * @memberof Claim
45
51
  */
46
52
  'accident_Date'?: string | null;
47
53
  /**
48
- *
54
+ * For claim funding, indicates the payor/account this claim would be paid from.
49
55
  * @type {number}
50
56
  * @memberof Claim
51
57
  */
52
58
  'account_Key'?: number | null;
53
59
  /**
54
- *
60
+ * Indicates that this claim was part of an Adjustment process. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
55
61
  * @type {boolean}
56
62
  * @memberof Claim
57
63
  */
58
64
  'adjustment_Claim': boolean;
59
65
  /**
60
- *
66
+ * No longer in use.
61
67
  * @type {number}
62
68
  * @memberof Claim
63
69
  */
64
70
  'admin_Amt'?: number | null;
65
71
  /**
66
- *
72
+ * For institutional Claims, holds the Admission Date.
67
73
  * @type {string}
68
74
  * @memberof Claim
69
75
  */
70
76
  'admission_Date'?: string | null;
71
77
  /**
72
- *
78
+ * The admission diagnosis code if applicable for this claim.
73
79
  * @type {string}
74
80
  * @memberof Claim
75
81
  */
76
82
  'admission_Diagnostic_Code'?: string | null;
77
83
  /**
78
- *
84
+ * For institutional Claims, holds the Admission Hour.
79
85
  * @type {string}
80
86
  * @memberof Claim
81
87
  */
82
88
  'admission_Hour'?: string | null;
83
89
  /**
84
- *
90
+ * For institutional Claims, holds the Admission Source.
85
91
  * @type {string}
86
92
  * @memberof Claim
87
93
  */
88
94
  'admission_Source'?: string | null;
89
95
  /**
90
- *
96
+ * Used to identify the date the member was admitted to the Hospital if hospitalized as part of this disability.
91
97
  * @type {string}
92
98
  * @memberof Claim
93
99
  */
94
100
  'admit_Date'?: string | null;
95
101
  /**
96
- *
102
+ * Indicates if this claim, for disability, can be processed and paid in advance of that service dates. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
97
103
  * @type {boolean}
98
104
  * @memberof Claim
99
105
  */
100
106
  'advance_Pay': boolean;
101
107
  /**
102
- *
108
+ * Notes this claim is advice to pay and will not go through funding. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
103
109
  * @type {boolean}
104
110
  * @memberof Claim
105
111
  */
106
112
  'advice_To_Pay': boolean;
107
113
  /**
108
- *
114
+ * Information field used in custom processing and reporting.
109
115
  * @type {string}
110
116
  * @memberof Claim
111
117
  */
112
118
  'all_Docs_Rec_Date'?: string | null;
113
119
  /**
114
- *
120
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
115
121
  * @type {string}
116
122
  * @memberof Claim
117
123
  */
118
124
  'ambulance_DropOff_Address'?: string | null;
119
125
  /**
120
- *
126
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
121
127
  * @type {string}
122
128
  * @memberof Claim
123
129
  */
124
130
  'ambulance_DropOff_Address2'?: string | null;
125
131
  /**
126
- *
132
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
127
133
  * @type {string}
128
134
  * @memberof Claim
129
135
  */
130
136
  'ambulance_DropOff_City'?: string | null;
131
137
  /**
132
- *
138
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
133
139
  * @type {string}
134
140
  * @memberof Claim
135
141
  */
136
142
  'ambulance_DropOff_Location'?: string | null;
137
143
  /**
138
- *
144
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
139
145
  * @type {string}
140
146
  * @memberof Claim
141
147
  */
142
148
  'ambulance_DropOff_Org_Name'?: string | null;
143
149
  /**
144
- *
150
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
145
151
  * @type {string}
146
152
  * @memberof Claim
147
153
  */
148
154
  'ambulance_DropOff_State'?: string | null;
149
155
  /**
150
- *
156
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
151
157
  * @type {string}
152
158
  * @memberof Claim
153
159
  */
154
160
  'ambulance_DropOff_Zip'?: string | null;
155
161
  /**
156
- *
162
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
157
163
  * @type {string}
158
164
  * @memberof Claim
159
165
  */
160
166
  'ambulance_PickUp_Address'?: string | null;
161
167
  /**
162
- *
168
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
163
169
  * @type {string}
164
170
  * @memberof Claim
165
171
  */
166
172
  'ambulance_PickUp_Address2'?: string | null;
167
173
  /**
168
- *
174
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
169
175
  * @type {string}
170
176
  * @memberof Claim
171
177
  */
172
178
  'ambulance_PickUp_City'?: string | null;
173
179
  /**
174
- *
180
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
175
181
  * @type {string}
176
182
  * @memberof Claim
177
183
  */
178
184
  'ambulance_PickUp_Location'?: string | null;
179
185
  /**
180
- *
186
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
181
187
  * @type {string}
182
188
  * @memberof Claim
183
189
  */
184
190
  'ambulance_PickUp_State'?: string | null;
185
191
  /**
186
- *
192
+ * If the claim utlized ambulance services (submitted via 837), we track that here.
187
193
  * @type {string}
188
194
  * @memberof Claim
189
195
  */
190
196
  'ambulance_PickUp_Zip'?: string | null;
191
197
  /**
192
- *
198
+ * The date the orthodontic appliance was placed.
193
199
  * @type {string}
194
200
  * @memberof Claim
195
201
  */
196
202
  'appliance_Placed_Date'?: string | null;
197
203
  /**
198
- *
204
+ * Information field used in custom processing and reporting.
199
205
  * @type {string}
200
206
  * @memberof Claim
201
207
  */
202
208
  'assumed_Care_Date'?: string | null;
203
209
  /**
204
- *
210
+ * This identifies the date the member first visited the Physician. This field, in combination with Disabled by Physician Date and Last Day Worked, create the Disability Date for the Member.
205
211
  * @type {string}
206
212
  * @memberof Claim
207
213
  */
208
214
  'attended_Physician_Date'?: string | null;
209
215
  /**
210
- *
216
+ * Notes if this Flex claim was auto-generated by the adjducation engine based on member responsibility configuration at the Group. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
211
217
  * @type {boolean}
212
218
  * @memberof Claim
213
219
  */
214
220
  'auto_Flex': boolean;
215
221
  /**
216
- *
222
+ * This value, in combination with Batch_Number, creates a unique identifier for each claim that is maintained in both batch and processed.
217
223
  * @type {number}
218
224
  * @memberof Claim
219
225
  */
220
226
  'batch_Claim'?: number | null;
221
227
  /**
222
- *
228
+ * This value, in combination with Batch_Claim, creates a unique identifier for each claim that is maintained in both batch and processed.
223
229
  * @type {number}
224
230
  * @memberof Claim
225
231
  */
226
232
  'batch_Number'?: number | null;
227
233
  /**
228
- *
234
+ * Notes the beneficiary for Life & Disability claims. References the MemberBeneficiary.Beneficiary_ID.
229
235
  * @type {string}
230
236
  * @memberof Claim
231
237
  */
232
238
  'beneficiary_ID'?: string | null;
233
239
  /**
234
- *
240
+ * No longer in use.
235
241
  * @type {string}
236
242
  * @memberof Claim
237
243
  */
238
244
  'cliA_Number'?: string | null;
239
245
  /**
240
- *
246
+ * Notes if interest was calculated for this claim as part of adjudication. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
241
247
  * @type {boolean}
242
248
  * @memberof Claim
243
249
  */
244
250
  'calculate_Interest': boolean;
245
251
  /**
246
- *
252
+ * Indicates if this claim is capitated. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
247
253
  * @type {boolean}
248
254
  * @memberof Claim
249
255
  */
250
256
  'capitation_Claim': boolean;
251
257
  /**
252
- *
258
+ * Used in custom integration with ceridian tax services. 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.
253
259
  * @type {boolean}
254
260
  * @memberof Claim
255
261
  */
256
262
  'ceridian_Exported': boolean;
257
263
  /**
258
- *
264
+ * Used in custom integration with ceridian tax services.
259
265
  * @type {string}
260
266
  * @memberof Claim
261
267
  */
262
268
  'ceridian_Exported_Date'?: string | null;
263
269
  /**
264
- *
270
+ * This is the primary indicator if a claim is \"Paid\". When this value is NULL, the claim has been processed but not paid. When paid, this value will hold what Check Batch the claim was paid under. References CheckBatch.Check_Batch.
265
271
  * @type {number}
266
272
  * @memberof Claim
267
273
  */
268
274
  'check_Batch'?: number | null;
269
275
  /**
270
- *
276
+ * Holds the Check ID this claim was paid under. References Checks.Check_ID.
271
277
  * @type {number}
272
278
  * @memberof Claim
273
279
  */
274
280
  'check_ID'?: number | null;
275
281
  /**
276
- *
282
+ * No longer in use.
277
283
  * @type {string}
278
284
  * @memberof Claim
279
285
  */
280
286
  'check_Number'?: string | null;
281
287
  /**
282
- *
288
+ * For 837 transactions, indicates COB has been submitted.
283
289
  * @type {string}
284
290
  * @memberof Claim
285
291
  */
286
292
  'claim_837_COB'?: string | null;
287
293
  /**
288
- *
294
+ * Used by VBA Backroom IT Services to track export status of a claim. This has since been moved to ClaimExport tables and is no longer in use. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
289
295
  * @type {boolean}
290
296
  * @memberof Claim
291
297
  */
292
298
  'claim_Exported': boolean;
293
299
  /**
294
- *
300
+ * Used by VBA Backroom IT Services to track export status of a claim. This has since been moved to ClaimExport tables and is no longer in use.
295
301
  * @type {string}
296
302
  * @memberof Claim
297
303
  */
298
304
  'claim_Exported_Date'?: string | null;
299
305
  /**
300
- *
306
+ * Indicates the Claim Funded Status for this claim, indicating if the claim is ready for funding, suspended, a candidate for payment, part of a funding request or funded.
301
307
  * @type {string}
302
308
  * @memberof Claim
303
309
  */
304
310
  'claim_Funded_Status'?: string | null;
305
311
  /**
306
- *
312
+ * An identifier assigned by external vendors and used for integrations. Primarily comes from the REF*D9 value in the 837.
307
313
  * @type {string}
308
314
  * @memberof Claim
309
315
  */
310
316
  'claim_ID'?: string | null;
311
317
  /**
312
- *
318
+ * For 837 transactions, indicates the submitted claim priority.
313
319
  * @type {string}
314
320
  * @memberof Claim
315
321
  */
316
322
  'claim_Priority'?: string | null;
317
323
  /**
318
- *
324
+ * The status of the claim. Valid values reside in the ClaimStatus table.
319
325
  * @type {string}
320
326
  * @memberof Claim
321
327
  */
322
328
  'claim_Status'?: string | null;
323
329
  /**
324
- *
330
+ * Notes the claim type for this claim. References ClaimType.Claim_Type.
325
331
  * @type {string}
326
332
  * @memberof Claim
327
333
  */
328
334
  'claim_Type'?: string | null;
329
335
  /**
330
- *
336
+ * This is an information only field that allows the tracking of the Closure Effective Date.
331
337
  * @type {string}
332
338
  * @memberof Claim
333
339
  */
334
340
  'closure_Effective_Date'?: string | null;
335
341
  /**
336
- *
342
+ * The Condition Code value for this claim.
337
343
  * @type {string}
338
344
  * @memberof Claim
339
345
  */
@@ -343,579 +349,681 @@ export interface Claim {
343
349
  * @type {string}
344
350
  * @memberof Claim
345
351
  */
352
+ 'condition_Code10'?: string | null;
353
+ /**
354
+ *
355
+ * @type {string}
356
+ * @memberof Claim
357
+ */
358
+ 'condition_Code11'?: string | null;
359
+ /**
360
+ *
361
+ * @type {string}
362
+ * @memberof Claim
363
+ */
364
+ 'condition_Code12'?: string | null;
365
+ /**
366
+ *
367
+ * @type {string}
368
+ * @memberof Claim
369
+ */
370
+ 'condition_Code13'?: string | null;
371
+ /**
372
+ *
373
+ * @type {string}
374
+ * @memberof Claim
375
+ */
376
+ 'condition_Code14'?: string | null;
377
+ /**
378
+ *
379
+ * @type {string}
380
+ * @memberof Claim
381
+ */
382
+ 'condition_Code15'?: string | null;
383
+ /**
384
+ *
385
+ * @type {string}
386
+ * @memberof Claim
387
+ */
388
+ 'condition_Code16'?: string | null;
389
+ /**
390
+ *
391
+ * @type {string}
392
+ * @memberof Claim
393
+ */
394
+ 'condition_Code17'?: string | null;
395
+ /**
396
+ *
397
+ * @type {string}
398
+ * @memberof Claim
399
+ */
400
+ 'condition_Code18'?: string | null;
401
+ /**
402
+ *
403
+ * @type {string}
404
+ * @memberof Claim
405
+ */
406
+ 'condition_Code19'?: string | null;
407
+ /**
408
+ * The Condition Code value for this claim.
409
+ * @type {string}
410
+ * @memberof Claim
411
+ */
346
412
  'condition_Code2'?: string | null;
347
413
  /**
348
414
  *
349
415
  * @type {string}
350
416
  * @memberof Claim
351
417
  */
352
- 'condition_Code3'?: string | null;
418
+ 'condition_Code20'?: string | null;
353
419
  /**
354
420
  *
355
421
  * @type {string}
356
422
  * @memberof Claim
357
423
  */
358
- 'condition_Code4'?: string | null;
424
+ 'condition_Code21'?: string | null;
359
425
  /**
360
426
  *
361
427
  * @type {string}
362
428
  * @memberof Claim
363
429
  */
364
- 'condition_Code5'?: string | null;
430
+ 'condition_Code22'?: string | null;
365
431
  /**
366
432
  *
367
433
  * @type {string}
368
434
  * @memberof Claim
369
435
  */
370
- 'condition_Code6'?: string | null;
436
+ 'condition_Code23'?: string | null;
371
437
  /**
372
438
  *
373
439
  * @type {string}
374
440
  * @memberof Claim
375
441
  */
442
+ 'condition_Code24'?: string | null;
443
+ /**
444
+ * The Condition Code value for this claim.
445
+ * @type {string}
446
+ * @memberof Claim
447
+ */
448
+ 'condition_Code3'?: string | null;
449
+ /**
450
+ * The Condition Code value for this claim.
451
+ * @type {string}
452
+ * @memberof Claim
453
+ */
454
+ 'condition_Code4'?: string | null;
455
+ /**
456
+ * The Condition Code value for this claim.
457
+ * @type {string}
458
+ * @memberof Claim
459
+ */
460
+ 'condition_Code5'?: string | null;
461
+ /**
462
+ * The Condition Code value for this claim.
463
+ * @type {string}
464
+ * @memberof Claim
465
+ */
466
+ 'condition_Code6'?: string | null;
467
+ /**
468
+ * The Condition Code value for this claim.
469
+ * @type {string}
470
+ * @memberof Claim
471
+ */
376
472
  'condition_Code7'?: string | null;
377
473
  /**
378
474
  *
379
475
  * @type {string}
380
476
  * @memberof Claim
381
477
  */
382
- 'coverage_Start'?: string | null;
478
+ 'condition_Code8'?: string | null;
383
479
  /**
384
480
  *
385
481
  * @type {string}
386
482
  * @memberof Claim
387
483
  */
484
+ 'condition_Code9'?: string | null;
485
+ /**
486
+ * The patients (or Subscribers) enrollment information, references Subenrollment.Group_Coverage_Start.
487
+ * @type {string}
488
+ * @memberof Claim
489
+ */
490
+ 'coverage_Start'?: string | null;
491
+ /**
492
+ * The current illness date for this claim.
493
+ * @type {string}
494
+ * @memberof Claim
495
+ */
388
496
  'current_Illness_Date'?: string | null;
389
497
  /**
390
- *
498
+ * The DRG Code for this claim, if applicable. References the DRGCodes.DRG_Code.
391
499
  * @type {string}
392
500
  * @memberof Claim
393
501
  */
394
502
  'drG_Code'?: string | null;
395
503
  /**
396
- *
504
+ * The quantity associated with this DRG value.
397
505
  * @type {number}
398
506
  * @memberof Claim
399
507
  */
400
508
  'drG_Quantity'?: number | null;
401
509
  /**
402
- *
510
+ * Information field used in custom processing and reporting.
403
511
  * @type {string}
404
512
  * @memberof Claim
405
513
  */
406
514
  'death_Cert_Rec_Date'?: string | null;
407
515
  /**
408
- *
516
+ * This identifies the date of delivery for disability due to pregnancy.
409
517
  * @type {string}
410
518
  * @memberof Claim
411
519
  */
412
520
  'delivery_Date'?: string | null;
413
521
  /**
414
- *
522
+ * This will identify the type of delivery that is performed as a result of pregnancy.
415
523
  * @type {string}
416
524
  * @memberof Claim
417
525
  */
418
526
  'delivery_Type'?: string | null;
419
527
  /**
420
- *
528
+ * This is an information only field that allows the tracking of Dependent SSI End Date.
421
529
  * @type {string}
422
530
  * @memberof Claim
423
531
  */
424
532
  'dep_SSDI_End_Date'?: string | null;
425
533
  /**
426
- *
534
+ * An assigned diagnostic code for this claim. This field, in the absence of a corresponding diagnosis pointer from a claim service line, indicates the primary diagnosis.
427
535
  * @type {string}
428
536
  * @memberof Claim
429
537
  */
430
538
  'diagnostic_Code1'?: string | null;
431
539
  /**
432
- *
540
+ * An assigned diagnostic code for this claim.
433
541
  * @type {string}
434
542
  * @memberof Claim
435
543
  */
436
544
  'diagnostic_Code10'?: string | null;
437
545
  /**
438
- *
546
+ * An assigned diagnostic code for this claim.
439
547
  * @type {string}
440
548
  * @memberof Claim
441
549
  */
442
550
  'diagnostic_Code11'?: string | null;
443
551
  /**
444
- *
552
+ * An assigned diagnostic code for this claim.
445
553
  * @type {string}
446
554
  * @memberof Claim
447
555
  */
448
556
  'diagnostic_Code12'?: string | null;
449
557
  /**
450
- *
558
+ * An assigned diagnostic code for this claim.
451
559
  * @type {string}
452
560
  * @memberof Claim
453
561
  */
454
562
  'diagnostic_Code13'?: string | null;
455
563
  /**
456
- *
564
+ * An assigned diagnostic code for this claim.
457
565
  * @type {string}
458
566
  * @memberof Claim
459
567
  */
460
568
  'diagnostic_Code14'?: string | null;
461
569
  /**
462
- *
570
+ * An assigned diagnostic code for this claim.
463
571
  * @type {string}
464
572
  * @memberof Claim
465
573
  */
466
574
  'diagnostic_Code15'?: string | null;
467
575
  /**
468
- *
576
+ * An assigned diagnostic code for this claim.
469
577
  * @type {string}
470
578
  * @memberof Claim
471
579
  */
472
580
  'diagnostic_Code16'?: string | null;
473
581
  /**
474
- *
582
+ * An assigned diagnostic code for this claim.
475
583
  * @type {string}
476
584
  * @memberof Claim
477
585
  */
478
586
  'diagnostic_Code17'?: string | null;
479
587
  /**
480
- *
588
+ * An assigned diagnostic code for this claim.
481
589
  * @type {string}
482
590
  * @memberof Claim
483
591
  */
484
592
  'diagnostic_Code18'?: string | null;
485
593
  /**
486
- *
594
+ * An assigned diagnostic code for this claim.
487
595
  * @type {string}
488
596
  * @memberof Claim
489
597
  */
490
598
  'diagnostic_Code19'?: string | null;
491
599
  /**
492
- *
600
+ * An assigned diagnostic code for this claim.
493
601
  * @type {string}
494
602
  * @memberof Claim
495
603
  */
496
604
  'diagnostic_Code2'?: string | null;
497
605
  /**
498
- *
606
+ * An assigned diagnostic code for this claim.
499
607
  * @type {string}
500
608
  * @memberof Claim
501
609
  */
502
610
  'diagnostic_Code20'?: string | null;
503
611
  /**
504
- *
612
+ * An assigned diagnostic code for this claim.
505
613
  * @type {string}
506
614
  * @memberof Claim
507
615
  */
508
616
  'diagnostic_Code21'?: string | null;
509
617
  /**
510
- *
618
+ * An assigned diagnostic code for this claim.
511
619
  * @type {string}
512
620
  * @memberof Claim
513
621
  */
514
622
  'diagnostic_Code22'?: string | null;
515
623
  /**
516
- *
624
+ * An assigned diagnostic code for this claim.
517
625
  * @type {string}
518
626
  * @memberof Claim
519
627
  */
520
628
  'diagnostic_Code23'?: string | null;
521
629
  /**
522
- *
630
+ * An assigned diagnostic code for this claim.
523
631
  * @type {string}
524
632
  * @memberof Claim
525
633
  */
526
634
  'diagnostic_Code24'?: string | null;
527
635
  /**
528
- *
636
+ * An assigned diagnostic code for this claim.
529
637
  * @type {string}
530
638
  * @memberof Claim
531
639
  */
532
640
  'diagnostic_Code3'?: string | null;
533
641
  /**
534
- *
642
+ * An assigned diagnostic code for this claim.
535
643
  * @type {string}
536
644
  * @memberof Claim
537
645
  */
538
646
  'diagnostic_Code4'?: string | null;
539
647
  /**
540
- *
648
+ * An assigned diagnostic code for this claim.
541
649
  * @type {string}
542
650
  * @memberof Claim
543
651
  */
544
652
  'diagnostic_Code5'?: string | null;
545
653
  /**
546
- *
654
+ * An assigned diagnostic code for this claim.
547
655
  * @type {string}
548
656
  * @memberof Claim
549
657
  */
550
658
  'diagnostic_Code6'?: string | null;
551
659
  /**
552
- *
660
+ * An assigned diagnostic code for this claim.
553
661
  * @type {string}
554
662
  * @memberof Claim
555
663
  */
556
664
  'diagnostic_Code7'?: string | null;
557
665
  /**
558
- *
666
+ * An assigned diagnostic code for this claim.
559
667
  * @type {string}
560
668
  * @memberof Claim
561
669
  */
562
670
  'diagnostic_Code8'?: string | null;
563
671
  /**
564
- *
672
+ * An assigned diagnostic code for this claim.
565
673
  * @type {string}
566
674
  * @memberof Claim
567
675
  */
568
676
  'diagnostic_Code9'?: string | null;
569
677
  /**
570
- *
678
+ * Indicates if the Diagnostic Code values on this claim are ICD9 or ICD10. Two possible values: 9 - ICD9 or 0 - ICD10.
571
679
  * @type {string}
572
680
  * @memberof Claim
573
681
  */
574
682
  'diagnostic_Code_Type': string;
575
683
  /**
576
- *
684
+ * The calculated date of disability (or manually enetered) based on the disabilty advisor in VBASoftware.
577
685
  * @type {string}
578
686
  * @memberof Claim
579
687
  */
580
688
  'disability_Date'?: string | null;
581
689
  /**
582
- *
690
+ * Information field used in custom processing and reporting.
583
691
  * @type {string}
584
692
  * @memberof Claim
585
693
  */
586
694
  'disability_End_Date'?: string | null;
587
695
  /**
588
- *
696
+ * Used to identify the type of disability (Injury or Illness).
589
697
  * @type {string}
590
698
  * @memberof Claim
591
699
  */
592
700
  'disability_Type'?: string | null;
593
701
  /**
594
- *
702
+ * This identifies the date the member was disabled by the Physician. This field, in combination with First Attended Physician Date and Last Day Worked, create the Disability Date for the Member.
595
703
  * @type {string}
596
704
  * @memberof Claim
597
705
  */
598
706
  'disabled_By_Physician'?: string | null;
599
707
  /**
600
- *
708
+ * Used to identify the date the member was discharged from the Hospital if hospitalized as part of this disability.
601
709
  * @type {string}
602
710
  * @memberof Claim
603
711
  */
604
712
  'discharge_Date'?: string | null;
605
713
  /**
606
- *
714
+ * For institutional Claims, holds the Discharge Hour.
607
715
  * @type {string}
608
716
  * @memberof Claim
609
717
  */
610
718
  'discharge_Hour'?: string | null;
611
719
  /**
612
- *
720
+ * The patients (or Subscribers) enrollment information, references Subenrollment.Division_ID.
613
721
  * @type {string}
614
722
  * @memberof Claim
615
723
  */
616
724
  'division_ID'?: string | null;
617
725
  /**
618
- *
726
+ * The external cause of injury code for this claim, if applicable.
619
727
  * @type {string}
620
728
  * @memberof Claim
621
729
  */
622
730
  'eCode_Diagnostic_Code'?: string | null;
623
731
  /**
624
- *
732
+ * The external cause of injury code for this claim, if applicable.
625
733
  * @type {string}
626
734
  * @memberof Claim
627
735
  */
628
736
  'eCode_Diagnostic_Code10'?: string | null;
629
737
  /**
630
- *
738
+ * The external cause of injury code for this claim, if applicable.
631
739
  * @type {string}
632
740
  * @memberof Claim
633
741
  */
634
742
  'eCode_Diagnostic_Code11'?: string | null;
635
743
  /**
636
- *
744
+ * The external cause of injury code for this claim, if applicable.
637
745
  * @type {string}
638
746
  * @memberof Claim
639
747
  */
640
748
  'eCode_Diagnostic_Code12'?: string | null;
641
749
  /**
642
- *
750
+ * The external cause of injury code for this claim, if applicable.
643
751
  * @type {string}
644
752
  * @memberof Claim
645
753
  */
646
754
  'eCode_Diagnostic_Code2'?: string | null;
647
755
  /**
648
- *
756
+ * The external cause of injury code for this claim, if applicable.
649
757
  * @type {string}
650
758
  * @memberof Claim
651
759
  */
652
760
  'eCode_Diagnostic_Code3'?: string | null;
653
761
  /**
654
- *
762
+ * The external cause of injury code for this claim, if applicable.
655
763
  * @type {string}
656
764
  * @memberof Claim
657
765
  */
658
766
  'eCode_Diagnostic_Code4'?: string | null;
659
767
  /**
660
- *
768
+ * The external cause of injury code for this claim, if applicable.
661
769
  * @type {string}
662
770
  * @memberof Claim
663
771
  */
664
772
  'eCode_Diagnostic_Code5'?: string | null;
665
773
  /**
666
- *
774
+ * The external cause of injury code for this claim, if applicable.
667
775
  * @type {string}
668
776
  * @memberof Claim
669
777
  */
670
778
  'eCode_Diagnostic_Code6'?: string | null;
671
779
  /**
672
- *
780
+ * The external cause of injury code for this claim, if applicable.
673
781
  * @type {string}
674
782
  * @memberof Claim
675
783
  */
676
784
  'eCode_Diagnostic_Code7'?: string | null;
677
785
  /**
678
- *
786
+ * The external cause of injury code for this claim, if applicable.
679
787
  * @type {string}
680
788
  * @memberof Claim
681
789
  */
682
790
  'eCode_Diagnostic_Code8'?: string | null;
683
791
  /**
684
- *
792
+ * The external cause of injury code for this claim, if applicable.
685
793
  * @type {string}
686
794
  * @memberof Claim
687
795
  */
688
796
  'eCode_Diagnostic_Code9'?: string | null;
689
797
  /**
690
- *
798
+ * Early and Periodic Screening, Diagnostic, and Treatment Indicator tracked from the claim submission.
691
799
  * @type {string}
692
800
  * @memberof Claim
693
801
  */
694
802
  'epsdT_Condition_Indicator1'?: string | null;
695
803
  /**
696
- *
804
+ * Early and Periodic Screening, Diagnostic, and Treatment Indicator tracked from the claim submission.
697
805
  * @type {string}
698
806
  * @memberof Claim
699
807
  */
700
808
  'epsdT_Condition_Indicator2'?: string | null;
701
809
  /**
702
- *
810
+ * Early and Periodic Screening, Diagnostic, and Treatment Indicator tracked from the claim submission.
703
811
  * @type {string}
704
812
  * @memberof Claim
705
813
  */
706
814
  'epsdT_Condition_Indicator3'?: string | null;
707
815
  /**
708
- *
816
+ * Early and Periodic Screening, Diagnostic, and Treatment tracking for if a referral was given for this claim.
709
817
  * @type {string}
710
818
  * @memberof Claim
711
819
  */
712
820
  'epsdT_Referral_Given'?: string | null;
713
821
  /**
714
- *
822
+ * Date when the record was first added to the system.
715
823
  * @type {string}
716
824
  * @memberof Claim
717
825
  */
718
826
  'entry_Date'?: string;
719
827
  /**
720
- *
828
+ * User that first added the record to the system.
721
829
  * @type {string}
722
830
  * @memberof Claim
723
831
  */
724
832
  'entry_User'?: string | null;
725
833
  /**
726
- *
834
+ * A place for both user assigned reason codes applicable to this claim or for adjudication to automatically assign ex code. References ExplanationCodes.Ex_Code.
727
835
  * @type {string}
728
836
  * @memberof Claim
729
837
  */
730
838
  'ex_Code1'?: string | null;
731
839
  /**
732
- *
840
+ * A place for both user assigned reason codes applicable to this claim or for adjudication to automatically assign ex code. References ExplanationCodes.Ex_Code.
733
841
  * @type {string}
734
842
  * @memberof Claim
735
843
  */
736
844
  'ex_Code2'?: string | null;
737
845
  /**
738
- *
846
+ * A place for both user assigned reason codes applicable to this claim or for adjudication to automatically assign ex code. References ExplanationCodes.Ex_Code.
739
847
  * @type {string}
740
848
  * @memberof Claim
741
849
  */
742
850
  'ex_Code3'?: string | null;
743
851
  /**
744
- *
852
+ * A place for both user assigned reason codes applicable to this claim or for adjudication to automatically assign ex code. References ExplanationCodes.Ex_Code.
745
853
  * @type {string}
746
854
  * @memberof Claim
747
855
  */
748
856
  'ex_Code4'?: string | null;
749
857
  /**
750
- *
858
+ * This is the Exhaust Date of the members Disability.
751
859
  * @type {string}
752
860
  * @memberof Claim
753
861
  */
754
862
  'exhaust_Date'?: string | null;
755
863
  /**
756
- *
864
+ * Expected Typical Duration (ETD) is the duration of disability identified by the MDA based on the type of job the member has as well as the diagnosis of the disability.
757
865
  * @type {number}
758
866
  * @memberof Claim
759
867
  */
760
868
  'expected_Typical_Duration'?: number | null;
761
869
  /**
762
- *
870
+ * This will hold the FICA withhold amount for each payment. If tax calculation module is enabled, this option will be ignored.
763
871
  * @type {number}
764
872
  * @memberof Claim
765
873
  */
766
874
  'ficA_Percent'?: number | null;
767
875
  /**
768
- *
876
+ * This will hold the federal withhold amount for each payment. If tax calculation module is enabled, this option will be ignored.
769
877
  * @type {number}
770
878
  * @memberof Claim
771
879
  */
772
880
  'federal_Withheld'?: number | null;
773
881
  /**
774
- *
882
+ * No longer in use.
775
883
  * @type {string}
776
884
  * @memberof Claim
777
885
  */
778
886
  'filing_Indicator'?: string | null;
779
887
  /**
780
- *
888
+ * This will place a follow-up date on each payment as an additional identifier for when this disability should be reviewed.
781
889
  * @type {string}
782
890
  * @memberof Claim
783
891
  */
784
892
  'followUp_Date'?: string | null;
785
893
  /**
786
- *
894
+ * This will place a follow-up ex code on each payment to allow the user to categorize what type of follow-up is being performed.
787
895
  * @type {string}
788
896
  * @memberof Claim
789
897
  */
790
898
  'followUp_Ex_Code'?: string | null;
791
899
  /**
792
- *
900
+ * Medicare Resubmission code for the claim. Indicated in Box 22 of the claim report.
793
901
  * @type {string}
794
902
  * @memberof Claim
795
903
  */
796
904
  'freq_Code'?: string | null;
797
905
  /**
798
- *
906
+ * The patients (or Subscribers) enrollment information, references Subenrollment.Group_ID.
799
907
  * @type {string}
800
908
  * @memberof Claim
801
909
  */
802
910
  'group_ID'?: string | null;
803
911
  /**
804
- *
912
+ * Information field used in custom processing and reporting.
805
913
  * @type {string}
806
914
  * @memberof Claim
807
915
  */
808
916
  'hearing_Vision_RX_Date'?: string | null;
809
917
  /**
810
- *
918
+ * Stores a reference, if applicable, to an image or document associated with this claim.
811
919
  * @type {string}
812
920
  * @memberof Claim
813
921
  */
814
922
  'image_File_Location'?: string | null;
815
923
  /**
816
- *
924
+ * Stores a reference, if applicable, to an image or document associated with this claim.
817
925
  * @type {string}
818
926
  * @memberof Claim
819
927
  */
820
928
  'image_File_Location2'?: string | null;
821
929
  /**
822
- *
930
+ * Stores a reference, if applicable, to an image or document associated with this claim.
823
931
  * @type {string}
824
932
  * @memberof Claim
825
933
  */
826
934
  'image_File_Location3'?: string | null;
827
935
  /**
828
- *
936
+ * Stores a reference, if applicable, to an image or document associated with this claim.
829
937
  * @type {string}
830
938
  * @memberof Claim
831
939
  */
832
940
  'image_File_Location4'?: string | null;
833
941
  /**
834
- *
942
+ * Information field to track the initial treatment date for this claim.
835
943
  * @type {string}
836
944
  * @memberof Claim
837
945
  */
838
946
  'initial_Treatment_Date'?: string | null;
839
947
  /**
840
- *
948
+ * This is the job classification for the member going on disability.
841
949
  * @type {string}
842
950
  * @memberof Claim
843
951
  */
844
952
  'job_Type'?: string | null;
845
953
  /**
846
- *
954
+ * This is an information only field that holds the date the member went on Long-Term Disability.
847
955
  * @type {string}
848
956
  * @memberof Claim
849
957
  */
850
958
  'ltD_Effective_Date'?: string | null;
851
959
  /**
852
- *
960
+ * This is an information only field that tracks the date the Long-Term Disability Packet was sent.
853
961
  * @type {string}
854
962
  * @memberof Claim
855
963
  */
856
964
  'ltD_Packet_Date'?: string | null;
857
965
  /**
858
- *
966
+ * This identifies the date the member last attended work prior to going on disability. This field, in combination with First Attended Physician Date and Disabled by Physician, create the Disability Date for the Member.
859
967
  * @type {string}
860
968
  * @memberof Claim
861
969
  */
862
970
  'last_Day_Worked'?: string | null;
863
971
  /**
864
- *
972
+ * This is an information only field that allows for the tracking of the Physician Warrant Date.
865
973
  * @type {string}
866
974
  * @memberof Claim
867
975
  */
868
976
  'last_Physician_Warrant_Date'?: string | null;
869
977
  /**
870
- *
978
+ * Information field to track the last time a phyician was seen at the time of this claim submission.
871
979
  * @type {string}
872
980
  * @memberof Claim
873
981
  */
874
982
  'last_Seen_Date'?: string | null;
875
983
  /**
876
- *
984
+ * This is an information only field that identifies if this disability is a liability injury. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
877
985
  * @type {boolean}
878
986
  * @memberof Claim
879
987
  */
880
988
  'liability_Injury': boolean;
881
989
  /**
882
- *
990
+ * Notes if the payment should be mailed to an entity other than the \"Send_Check_To\".
883
991
  * @type {string}
884
992
  * @memberof Claim
885
993
  */
886
994
  'mail_To'?: string | null;
887
995
  /**
888
- *
996
+ * The Member Sequence of the patient for this claim.
889
997
  * @type {string}
890
998
  * @memberof Claim
891
999
  */
892
1000
  'member_Seq'?: string | null;
893
1001
  /**
894
- *
1002
+ * The number of months the orthodontic treatment will be.
895
1003
  * @type {number}
896
1004
  * @memberof Claim
897
1005
  */
898
1006
  'months_Of_Treatment'?: number | null;
899
1007
  /**
900
- *
1008
+ * Indicates the network this claim was paid against. If this value is NULL, the claim is considered \"Out of Network\".
901
1009
  * @type {string}
902
1010
  * @memberof Claim
903
1011
  */
904
1012
  'network_ID'?: string | null;
905
1013
  /**
906
- *
1014
+ * No longer in use. Replaced by Note Services.
907
1015
  * @type {string}
908
1016
  * @memberof Claim
909
1017
  */
910
1018
  'note'?: string | null;
911
1019
  /**
912
- *
1020
+ * Notes if the disability is related to the patiens occupation. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
913
1021
  * @type {boolean}
914
1022
  * @memberof Claim
915
1023
  */
916
1024
  'occupational': boolean;
917
1025
  /**
918
- *
1026
+ * The Occurrence Code value for this claim.
919
1027
  * @type {string}
920
1028
  * @memberof Claim
921
1029
  */
@@ -925,819 +1033,1935 @@ export interface Claim {
925
1033
  * @type {string}
926
1034
  * @memberof Claim
927
1035
  */
928
- 'occurrence_Code2'?: string | null;
1036
+ 'occurrence_Code10'?: string | null;
929
1037
  /**
930
1038
  *
931
1039
  * @type {string}
932
1040
  * @memberof Claim
933
1041
  */
934
- 'occurrence_Code3'?: string | null;
1042
+ 'occurrence_Code11'?: string | null;
935
1043
  /**
936
1044
  *
937
1045
  * @type {string}
938
1046
  * @memberof Claim
939
1047
  */
940
- 'occurrence_Code4'?: string | null;
1048
+ 'occurrence_Code12'?: string | null;
941
1049
  /**
942
1050
  *
943
1051
  * @type {string}
944
1052
  * @memberof Claim
945
1053
  */
946
- 'occurrence_Date1'?: string | null;
1054
+ 'occurrence_Code13'?: string | null;
947
1055
  /**
948
1056
  *
949
1057
  * @type {string}
950
1058
  * @memberof Claim
951
1059
  */
952
- 'occurrence_Date2'?: string | null;
1060
+ 'occurrence_Code14'?: string | null;
953
1061
  /**
954
1062
  *
955
1063
  * @type {string}
956
1064
  * @memberof Claim
957
1065
  */
958
- 'occurrence_Date3'?: string | null;
1066
+ 'occurrence_Code15'?: string | null;
959
1067
  /**
960
1068
  *
961
1069
  * @type {string}
962
1070
  * @memberof Claim
963
1071
  */
964
- 'occurrence_Date4'?: string | null;
1072
+ 'occurrence_Code16'?: string | null;
965
1073
  /**
966
1074
  *
967
1075
  * @type {string}
968
1076
  * @memberof Claim
969
1077
  */
970
- 'occurrence_Span_Code'?: string | null;
1078
+ 'occurrence_Code17'?: string | null;
971
1079
  /**
972
1080
  *
973
1081
  * @type {string}
974
1082
  * @memberof Claim
975
1083
  */
976
- 'occurrence_Span_From'?: string | null;
1084
+ 'occurrence_Code18'?: string | null;
977
1085
  /**
978
1086
  *
979
1087
  * @type {string}
980
1088
  * @memberof Claim
981
1089
  */
982
- 'occurrence_Span_Thru'?: string | null;
1090
+ 'occurrence_Code19'?: string | null;
983
1091
  /**
984
- *
1092
+ * The Occurrence Code value for this claim.
985
1093
  * @type {string}
986
1094
  * @memberof Claim
987
1095
  */
988
- 'onset_Similar_Illness_Date'?: string | null;
1096
+ 'occurrence_Code2'?: string | null;
989
1097
  /**
990
1098
  *
991
- * @type {boolean}
1099
+ * @type {string}
992
1100
  * @memberof Claim
993
1101
  */
994
- 'orthodontics_Treatment': boolean;
1102
+ 'occurrence_Code20'?: string | null;
995
1103
  /**
996
1104
  *
997
- * @type {boolean}
1105
+ * @type {string}
998
1106
  * @memberof Claim
999
1107
  */
1000
- 'other_Insurance': boolean;
1108
+ 'occurrence_Code21'?: string | null;
1001
1109
  /**
1002
1110
  *
1003
1111
  * @type {string}
1004
1112
  * @memberof Claim
1005
1113
  */
1006
- 'other_Procedure_Code1'?: string | null;
1114
+ 'occurrence_Code22'?: string | null;
1007
1115
  /**
1008
1116
  *
1009
1117
  * @type {string}
1010
1118
  * @memberof Claim
1011
1119
  */
1012
- 'other_Procedure_Code2'?: string | null;
1120
+ 'occurrence_Code23'?: string | null;
1013
1121
  /**
1014
1122
  *
1015
1123
  * @type {string}
1016
1124
  * @memberof Claim
1017
1125
  */
1018
- 'other_Procedure_Code3'?: string | null;
1126
+ 'occurrence_Code24'?: string | null;
1019
1127
  /**
1020
- *
1128
+ * The Occurrence Code value for this claim.
1021
1129
  * @type {string}
1022
1130
  * @memberof Claim
1023
1131
  */
1024
- 'other_Procedure_Code4'?: string | null;
1132
+ 'occurrence_Code3'?: string | null;
1025
1133
  /**
1026
- *
1134
+ * The Occurrence Code value for this claim.
1027
1135
  * @type {string}
1028
1136
  * @memberof Claim
1029
1137
  */
1030
- 'other_Procedure_Code5'?: string | null;
1138
+ 'occurrence_Code4'?: string | null;
1031
1139
  /**
1032
1140
  *
1033
1141
  * @type {string}
1034
1142
  * @memberof Claim
1035
1143
  */
1036
- 'other_Procedure_Date1'?: string | null;
1144
+ 'occurrence_Code5'?: string | null;
1037
1145
  /**
1038
1146
  *
1039
1147
  * @type {string}
1040
1148
  * @memberof Claim
1041
1149
  */
1042
- 'other_Procedure_Date2'?: string | null;
1150
+ 'occurrence_Code6'?: string | null;
1043
1151
  /**
1044
1152
  *
1045
1153
  * @type {string}
1046
1154
  * @memberof Claim
1047
1155
  */
1048
- 'other_Procedure_Date3'?: string | null;
1156
+ 'occurrence_Code7'?: string | null;
1049
1157
  /**
1050
1158
  *
1051
1159
  * @type {string}
1052
1160
  * @memberof Claim
1053
1161
  */
1054
- 'other_Procedure_Date4'?: string | null;
1162
+ 'occurrence_Code8'?: string | null;
1055
1163
  /**
1056
1164
  *
1057
1165
  * @type {string}
1058
1166
  * @memberof Claim
1059
1167
  */
1060
- 'other_Procedure_Date5'?: string | null;
1168
+ 'occurrence_Code9'?: string | null;
1061
1169
  /**
1062
- *
1170
+ * The Occurrence Date associated to the assigned Occurrence Codes.
1063
1171
  * @type {string}
1064
1172
  * @memberof Claim
1065
1173
  */
1066
- 'override'?: string | null;
1174
+ 'occurrence_Date1'?: string | null;
1067
1175
  /**
1068
1176
  *
1069
1177
  * @type {string}
1070
1178
  * @memberof Claim
1071
1179
  */
1072
- 'override_Date'?: string | null;
1180
+ 'occurrence_Date10'?: string | null;
1073
1181
  /**
1074
1182
  *
1075
- * @type {boolean}
1183
+ * @type {string}
1076
1184
  * @memberof Claim
1077
1185
  */
1078
- 'override_Network_ID': boolean;
1186
+ 'occurrence_Date11'?: string | null;
1079
1187
  /**
1080
1188
  *
1081
- * @type {boolean}
1189
+ * @type {string}
1082
1190
  * @memberof Claim
1083
1191
  */
1084
- 'override_Payor_Account': boolean;
1192
+ 'occurrence_Date12'?: string | null;
1085
1193
  /**
1086
1194
  *
1087
1195
  * @type {string}
1088
1196
  * @memberof Claim
1089
1197
  */
1090
- 'override_User'?: string | null;
1198
+ 'occurrence_Date13'?: string | null;
1091
1199
  /**
1092
1200
  *
1093
- * @type {boolean}
1201
+ * @type {string}
1094
1202
  * @memberof Claim
1095
1203
  */
1096
- 'partial_Disability': boolean;
1204
+ 'occurrence_Date14'?: string | null;
1097
1205
  /**
1098
1206
  *
1099
1207
  * @type {string}
1100
1208
  * @memberof Claim
1101
1209
  */
1102
- 'patient_Account'?: string | null;
1210
+ 'occurrence_Date15'?: string | null;
1103
1211
  /**
1104
1212
  *
1105
1213
  * @type {string}
1106
1214
  * @memberof Claim
1107
1215
  */
1108
- 'patient_Reason_for_Visit_Diagnostic_Code1'?: string | null;
1216
+ 'occurrence_Date16'?: string | null;
1109
1217
  /**
1110
1218
  *
1111
1219
  * @type {string}
1112
1220
  * @memberof Claim
1113
1221
  */
1114
- 'patient_Reason_for_Visit_Diagnostic_Code2'?: string | null;
1222
+ 'occurrence_Date17'?: string | null;
1115
1223
  /**
1116
1224
  *
1117
1225
  * @type {string}
1118
1226
  * @memberof Claim
1119
1227
  */
1120
- 'patient_Reason_for_Visit_Diagnostic_Code3'?: string | null;
1228
+ 'occurrence_Date18'?: string | null;
1121
1229
  /**
1122
1230
  *
1123
1231
  * @type {string}
1124
1232
  * @memberof Claim
1125
1233
  */
1126
- 'patient_Relationship'?: string | null;
1234
+ 'occurrence_Date19'?: string | null;
1127
1235
  /**
1128
- *
1129
- * @type {boolean}
1236
+ * The Occurrence Date associated to the assigned Occurrence Codes.
1237
+ * @type {string}
1130
1238
  * @memberof Claim
1131
1239
  */
1132
- 'patient_Signature': boolean;
1240
+ 'occurrence_Date2'?: string | null;
1133
1241
  /**
1134
1242
  *
1135
1243
  * @type {string}
1136
1244
  * @memberof Claim
1137
1245
  */
1138
- 'patient_Signature_Date'?: string | null;
1246
+ 'occurrence_Date20'?: string | null;
1139
1247
  /**
1140
1248
  *
1141
1249
  * @type {string}
1142
1250
  * @memberof Claim
1143
1251
  */
1144
- 'patient_Status'?: string | null;
1252
+ 'occurrence_Date21'?: string | null;
1145
1253
  /**
1146
1254
  *
1147
1255
  * @type {string}
1148
1256
  * @memberof Claim
1149
1257
  */
1150
- 'payee_ID'?: string | null;
1258
+ 'occurrence_Date22'?: string | null;
1151
1259
  /**
1152
1260
  *
1153
1261
  * @type {string}
1154
1262
  * @memberof Claim
1155
1263
  */
1156
- 'payment_Status'?: string | null;
1264
+ 'occurrence_Date23'?: string | null;
1157
1265
  /**
1158
1266
  *
1159
1267
  * @type {string}
1160
1268
  * @memberof Claim
1161
1269
  */
1162
- 'payor_Claim_Control_Number'?: string | null;
1270
+ 'occurrence_Date24'?: string | null;
1163
1271
  /**
1164
- *
1272
+ * The Occurrence Date associated to the assigned Occurrence Codes.
1165
1273
  * @type {string}
1166
1274
  * @memberof Claim
1167
1275
  */
1168
- 'payor_ID'?: string | null;
1276
+ 'occurrence_Date3'?: string | null;
1277
+ /**
1278
+ * The Occurrence Date associated to the assigned Occurrence Codes.
1279
+ * @type {string}
1280
+ * @memberof Claim
1281
+ */
1282
+ 'occurrence_Date4'?: string | null;
1169
1283
  /**
1170
1284
  *
1171
1285
  * @type {string}
1172
1286
  * @memberof Claim
1173
1287
  */
1174
- 'physician_Return_To_Work'?: string | null;
1288
+ 'occurrence_Date5'?: string | null;
1175
1289
  /**
1176
1290
  *
1177
1291
  * @type {string}
1178
1292
  * @memberof Claim
1179
1293
  */
1180
- 'place_Of_Service'?: string | null;
1294
+ 'occurrence_Date6'?: string | null;
1181
1295
  /**
1182
1296
  *
1183
1297
  * @type {string}
1184
1298
  * @memberof Claim
1185
1299
  */
1186
- 'plan_ID'?: string | null;
1300
+ 'occurrence_Date7'?: string | null;
1187
1301
  /**
1188
1302
  *
1189
1303
  * @type {string}
1190
1304
  * @memberof Claim
1191
1305
  */
1192
- 'plan_Provider'?: string | null;
1306
+ 'occurrence_Date8'?: string | null;
1193
1307
  /**
1194
1308
  *
1195
1309
  * @type {string}
1196
1310
  * @memberof Claim
1197
1311
  */
1198
- 'plan_Year'?: string | null;
1312
+ 'occurrence_Date9'?: string | null;
1313
+ /**
1314
+ * The occurrence span indicator for the Occurrence Span From and Thru dates.
1315
+ * @type {string}
1316
+ * @memberof Claim
1317
+ */
1318
+ 'occurrence_Span_Code'?: string | null;
1199
1319
  /**
1200
1320
  *
1201
1321
  * @type {string}
1202
1322
  * @memberof Claim
1203
1323
  */
1204
- 'present_On_Admission1'?: string | null;
1324
+ 'occurrence_Span_Code10'?: string | null;
1205
1325
  /**
1206
1326
  *
1207
1327
  * @type {string}
1208
1328
  * @memberof Claim
1209
1329
  */
1210
- 'present_On_Admission10'?: string | null;
1330
+ 'occurrence_Span_Code11'?: string | null;
1211
1331
  /**
1212
1332
  *
1213
1333
  * @type {string}
1214
1334
  * @memberof Claim
1215
1335
  */
1216
- 'present_On_Admission11'?: string | null;
1336
+ 'occurrence_Span_Code12'?: string | null;
1217
1337
  /**
1218
1338
  *
1219
1339
  * @type {string}
1220
1340
  * @memberof Claim
1221
1341
  */
1222
- 'present_On_Admission12'?: string | null;
1342
+ 'occurrence_Span_Code13'?: string | null;
1223
1343
  /**
1224
1344
  *
1225
1345
  * @type {string}
1226
1346
  * @memberof Claim
1227
1347
  */
1228
- 'present_On_Admission13'?: string | null;
1348
+ 'occurrence_Span_Code14'?: string | null;
1229
1349
  /**
1230
1350
  *
1231
1351
  * @type {string}
1232
1352
  * @memberof Claim
1233
1353
  */
1234
- 'present_On_Admission14'?: string | null;
1354
+ 'occurrence_Span_Code15'?: string | null;
1235
1355
  /**
1236
1356
  *
1237
1357
  * @type {string}
1238
1358
  * @memberof Claim
1239
1359
  */
1240
- 'present_On_Admission15'?: string | null;
1360
+ 'occurrence_Span_Code16'?: string | null;
1241
1361
  /**
1242
1362
  *
1243
1363
  * @type {string}
1244
1364
  * @memberof Claim
1245
1365
  */
1246
- 'present_On_Admission16'?: string | null;
1366
+ 'occurrence_Span_Code17'?: string | null;
1247
1367
  /**
1248
1368
  *
1249
1369
  * @type {string}
1250
1370
  * @memberof Claim
1251
1371
  */
1252
- 'present_On_Admission17'?: string | null;
1372
+ 'occurrence_Span_Code18'?: string | null;
1253
1373
  /**
1254
1374
  *
1255
1375
  * @type {string}
1256
1376
  * @memberof Claim
1257
1377
  */
1258
- 'present_On_Admission18'?: string | null;
1378
+ 'occurrence_Span_Code19'?: string | null;
1259
1379
  /**
1260
1380
  *
1261
1381
  * @type {string}
1262
1382
  * @memberof Claim
1263
1383
  */
1264
- 'present_On_Admission19'?: string | null;
1384
+ 'occurrence_Span_Code2'?: string | null;
1265
1385
  /**
1266
1386
  *
1267
1387
  * @type {string}
1268
1388
  * @memberof Claim
1269
1389
  */
1270
- 'present_On_Admission2'?: string | null;
1390
+ 'occurrence_Span_Code20'?: string | null;
1271
1391
  /**
1272
1392
  *
1273
1393
  * @type {string}
1274
1394
  * @memberof Claim
1275
1395
  */
1276
- 'present_On_Admission20'?: string | null;
1396
+ 'occurrence_Span_Code21'?: string | null;
1277
1397
  /**
1278
1398
  *
1279
1399
  * @type {string}
1280
1400
  * @memberof Claim
1281
1401
  */
1282
- 'present_On_Admission21'?: string | null;
1402
+ 'occurrence_Span_Code22'?: string | null;
1283
1403
  /**
1284
1404
  *
1285
1405
  * @type {string}
1286
1406
  * @memberof Claim
1287
1407
  */
1288
- 'present_On_Admission22'?: string | null;
1408
+ 'occurrence_Span_Code23'?: string | null;
1289
1409
  /**
1290
1410
  *
1291
1411
  * @type {string}
1292
1412
  * @memberof Claim
1293
1413
  */
1294
- 'present_On_Admission23'?: string | null;
1414
+ 'occurrence_Span_Code24'?: string | null;
1295
1415
  /**
1296
1416
  *
1297
1417
  * @type {string}
1298
1418
  * @memberof Claim
1299
1419
  */
1300
- 'present_On_Admission24'?: string | null;
1420
+ 'occurrence_Span_Code3'?: string | null;
1301
1421
  /**
1302
1422
  *
1303
1423
  * @type {string}
1304
1424
  * @memberof Claim
1305
1425
  */
1306
- 'present_On_Admission3'?: string | null;
1426
+ 'occurrence_Span_Code4'?: string | null;
1307
1427
  /**
1308
1428
  *
1309
1429
  * @type {string}
1310
1430
  * @memberof Claim
1311
1431
  */
1312
- 'present_On_Admission4'?: string | null;
1432
+ 'occurrence_Span_Code5'?: string | null;
1313
1433
  /**
1314
1434
  *
1315
1435
  * @type {string}
1316
1436
  * @memberof Claim
1317
1437
  */
1318
- 'present_On_Admission5'?: string | null;
1438
+ 'occurrence_Span_Code6'?: string | null;
1319
1439
  /**
1320
1440
  *
1321
1441
  * @type {string}
1322
1442
  * @memberof Claim
1323
1443
  */
1324
- 'present_On_Admission6'?: string | null;
1444
+ 'occurrence_Span_Code7'?: string | null;
1325
1445
  /**
1326
1446
  *
1327
1447
  * @type {string}
1328
1448
  * @memberof Claim
1329
1449
  */
1330
- 'present_On_Admission7'?: string | null;
1450
+ 'occurrence_Span_Code8'?: string | null;
1331
1451
  /**
1332
1452
  *
1333
1453
  * @type {string}
1334
1454
  * @memberof Claim
1335
1455
  */
1336
- 'present_On_Admission8'?: string | null;
1456
+ 'occurrence_Span_Code9'?: string | null;
1457
+ /**
1458
+ * The occurrence span from for this claim.
1459
+ * @type {string}
1460
+ * @memberof Claim
1461
+ */
1462
+ 'occurrence_Span_From'?: string | null;
1337
1463
  /**
1338
1464
  *
1339
1465
  * @type {string}
1340
1466
  * @memberof Claim
1341
1467
  */
1342
- 'present_On_Admission9'?: string | null;
1468
+ 'occurrence_Span_From10'?: string | null;
1343
1469
  /**
1344
1470
  *
1345
1471
  * @type {string}
1346
1472
  * @memberof Claim
1347
1473
  */
1348
- 'present_On_Admission_ECode1'?: string | null;
1474
+ 'occurrence_Span_From11'?: string | null;
1349
1475
  /**
1350
1476
  *
1351
1477
  * @type {string}
1352
1478
  * @memberof Claim
1353
1479
  */
1354
- 'present_On_Admission_ECode10'?: string | null;
1480
+ 'occurrence_Span_From12'?: string | null;
1355
1481
  /**
1356
1482
  *
1357
1483
  * @type {string}
1358
1484
  * @memberof Claim
1359
1485
  */
1360
- 'present_On_Admission_ECode11'?: string | null;
1486
+ 'occurrence_Span_From13'?: string | null;
1361
1487
  /**
1362
1488
  *
1363
1489
  * @type {string}
1364
1490
  * @memberof Claim
1365
1491
  */
1366
- 'present_On_Admission_ECode12'?: string | null;
1492
+ 'occurrence_Span_From14'?: string | null;
1367
1493
  /**
1368
1494
  *
1369
1495
  * @type {string}
1370
1496
  * @memberof Claim
1371
1497
  */
1372
- 'present_On_Admission_ECode2'?: string | null;
1498
+ 'occurrence_Span_From15'?: string | null;
1373
1499
  /**
1374
1500
  *
1375
1501
  * @type {string}
1376
1502
  * @memberof Claim
1377
1503
  */
1378
- 'present_On_Admission_ECode3'?: string | null;
1504
+ 'occurrence_Span_From16'?: string | null;
1379
1505
  /**
1380
1506
  *
1381
1507
  * @type {string}
1382
1508
  * @memberof Claim
1383
1509
  */
1384
- 'present_On_Admission_ECode4'?: string | null;
1510
+ 'occurrence_Span_From17'?: string | null;
1385
1511
  /**
1386
1512
  *
1387
1513
  * @type {string}
1388
1514
  * @memberof Claim
1389
1515
  */
1390
- 'present_On_Admission_ECode5'?: string | null;
1516
+ 'occurrence_Span_From18'?: string | null;
1391
1517
  /**
1392
1518
  *
1393
1519
  * @type {string}
1394
1520
  * @memberof Claim
1395
1521
  */
1396
- 'present_On_Admission_ECode6'?: string | null;
1522
+ 'occurrence_Span_From19'?: string | null;
1397
1523
  /**
1398
1524
  *
1399
1525
  * @type {string}
1400
1526
  * @memberof Claim
1401
1527
  */
1402
- 'present_On_Admission_ECode7'?: string | null;
1528
+ 'occurrence_Span_From2'?: string | null;
1403
1529
  /**
1404
1530
  *
1405
1531
  * @type {string}
1406
1532
  * @memberof Claim
1407
1533
  */
1408
- 'present_On_Admission_ECode8'?: string | null;
1534
+ 'occurrence_Span_From20'?: string | null;
1409
1535
  /**
1410
1536
  *
1411
1537
  * @type {string}
1412
1538
  * @memberof Claim
1413
1539
  */
1414
- 'present_On_Admission_ECode9'?: string | null;
1540
+ 'occurrence_Span_From21'?: string | null;
1415
1541
  /**
1416
1542
  *
1417
1543
  * @type {string}
1418
1544
  * @memberof Claim
1419
1545
  */
1420
- 'pricing_Method'?: string | null;
1546
+ 'occurrence_Span_From22'?: string | null;
1421
1547
  /**
1422
1548
  *
1423
- * @type {number}
1549
+ * @type {string}
1424
1550
  * @memberof Claim
1425
1551
  */
1426
- 'pricing_Rate'?: number | null;
1552
+ 'occurrence_Span_From23'?: string | null;
1427
1553
  /**
1428
1554
  *
1429
1555
  * @type {string}
1430
1556
  * @memberof Claim
1431
1557
  */
1432
- 'principal_Procedure_Code'?: string | null;
1558
+ 'occurrence_Span_From24'?: string | null;
1433
1559
  /**
1434
1560
  *
1435
1561
  * @type {string}
1436
1562
  * @memberof Claim
1437
1563
  */
1438
- 'principal_Procedure_Date'?: string | null;
1564
+ 'occurrence_Span_From3'?: string | null;
1439
1565
  /**
1440
1566
  *
1441
1567
  * @type {string}
1442
1568
  * @memberof Claim
1443
1569
  */
1444
- 'prior_Placement_Date'?: string | null;
1570
+ 'occurrence_Span_From4'?: string | null;
1445
1571
  /**
1446
1572
  *
1447
1573
  * @type {string}
1448
1574
  * @memberof Claim
1449
1575
  */
1450
- 'processed_Date'?: string | null;
1576
+ 'occurrence_Span_From5'?: string | null;
1451
1577
  /**
1452
1578
  *
1453
- * @type {boolean}
1579
+ * @type {string}
1454
1580
  * @memberof Claim
1455
1581
  */
1456
- 'prosthesis_Replacement': boolean;
1582
+ 'occurrence_Span_From6'?: string | null;
1457
1583
  /**
1458
1584
  *
1459
1585
  * @type {string}
1460
1586
  * @memberof Claim
1461
1587
  */
1462
- 'provider_ID'?: string | null;
1588
+ 'occurrence_Span_From7'?: string | null;
1463
1589
  /**
1464
1590
  *
1465
1591
  * @type {string}
1466
1592
  * @memberof Claim
1467
1593
  */
1468
- 'qpA_Method'?: string | null;
1594
+ 'occurrence_Span_From8'?: string | null;
1469
1595
  /**
1470
1596
  *
1471
1597
  * @type {string}
1472
1598
  * @memberof Claim
1473
1599
  */
1474
- 'received_Date'?: string | null;
1600
+ 'occurrence_Span_From9'?: string | null;
1601
+ /**
1602
+ * The occurrence span thru for this claim.
1603
+ * @type {string}
1604
+ * @memberof Claim
1605
+ */
1606
+ 'occurrence_Span_Thru'?: string | null;
1475
1607
  /**
1476
1608
  *
1477
1609
  * @type {string}
1478
1610
  * @memberof Claim
1479
1611
  */
1480
- 'referred_By'?: string | null;
1612
+ 'occurrence_Span_Thru10'?: string | null;
1481
1613
  /**
1482
1614
  *
1483
- * @type {boolean}
1615
+ * @type {string}
1484
1616
  * @memberof Claim
1485
1617
  */
1486
- 'refund_Claim': boolean;
1618
+ 'occurrence_Span_Thru11'?: string | null;
1487
1619
  /**
1488
1620
  *
1489
- * @type {number}
1621
+ * @type {string}
1490
1622
  * @memberof Claim
1491
1623
  */
1492
- 'refund_Funding_Key'?: number | null;
1624
+ 'occurrence_Span_Thru12'?: string | null;
1493
1625
  /**
1494
1626
  *
1495
- * @type {boolean}
1627
+ * @type {string}
1496
1628
  * @memberof Claim
1497
1629
  */
1498
- 'related_To_Accident': boolean;
1630
+ 'occurrence_Span_Thru13'?: string | null;
1499
1631
  /**
1500
1632
  *
1501
- * @type {boolean}
1633
+ * @type {string}
1502
1634
  * @memberof Claim
1503
1635
  */
1504
- 'related_To_Another_Party': boolean;
1636
+ 'occurrence_Span_Thru14'?: string | null;
1505
1637
  /**
1506
1638
  *
1507
- * @type {boolean}
1639
+ * @type {string}
1508
1640
  * @memberof Claim
1509
1641
  */
1510
- 'related_To_Auto': boolean;
1642
+ 'occurrence_Span_Thru15'?: string | null;
1511
1643
  /**
1512
1644
  *
1513
- * @type {boolean}
1645
+ * @type {string}
1514
1646
  * @memberof Claim
1515
1647
  */
1516
- 'related_To_Employment': boolean;
1648
+ 'occurrence_Span_Thru16'?: string | null;
1517
1649
  /**
1518
1650
  *
1519
1651
  * @type {string}
1520
1652
  * @memberof Claim
1521
1653
  */
1522
- 'relinquished_Care_Date'?: string | null;
1654
+ 'occurrence_Span_Thru17'?: string | null;
1523
1655
  /**
1524
1656
  *
1525
1657
  * @type {string}
1526
1658
  * @memberof Claim
1527
1659
  */
1528
- 'remittance_Printed'?: string | null;
1660
+ 'occurrence_Span_Thru18'?: string | null;
1529
1661
  /**
1530
1662
  *
1531
1663
  * @type {string}
1532
1664
  * @memberof Claim
1533
1665
  */
1534
- 'reprice_Printed'?: string | null;
1666
+ 'occurrence_Span_Thru19'?: string | null;
1535
1667
  /**
1536
1668
  *
1537
1669
  * @type {string}
1538
1670
  * @memberof Claim
1539
1671
  */
1540
- 'repriced_Network_ID'?: string | null;
1672
+ 'occurrence_Span_Thru2'?: string | null;
1541
1673
  /**
1542
1674
  *
1543
1675
  * @type {string}
1544
1676
  * @memberof Claim
1545
1677
  */
1546
- 'return_To_Work_Date'?: string | null;
1678
+ 'occurrence_Span_Thru20'?: string | null;
1547
1679
  /**
1548
1680
  *
1549
- * @type {boolean}
1681
+ * @type {string}
1550
1682
  * @memberof Claim
1551
1683
  */
1552
- 'salary_Continuation': boolean;
1684
+ 'occurrence_Span_Thru21'?: string | null;
1553
1685
  /**
1554
1686
  *
1555
1687
  * @type {string}
1556
1688
  * @memberof Claim
1557
1689
  */
1558
- 'send_Check_To'?: string | null;
1690
+ 'occurrence_Span_Thru22'?: string | null;
1559
1691
  /**
1560
1692
  *
1561
1693
  * @type {string}
1562
1694
  * @memberof Claim
1563
1695
  */
1564
- 'sender_ID'?: string | null;
1696
+ 'occurrence_Span_Thru23'?: string | null;
1565
1697
  /**
1566
1698
  *
1567
1699
  * @type {string}
1568
1700
  * @memberof Claim
1569
1701
  */
1570
- 'service_Date'?: string | null;
1702
+ 'occurrence_Span_Thru24'?: string | null;
1571
1703
  /**
1572
1704
  *
1573
1705
  * @type {string}
1574
1706
  * @memberof Claim
1575
1707
  */
1576
- 'service_Thru'?: string | null;
1708
+ 'occurrence_Span_Thru3'?: string | null;
1577
1709
  /**
1578
1710
  *
1579
- * @type {boolean}
1711
+ * @type {string}
1580
1712
  * @memberof Claim
1581
1713
  */
1582
- 'sick_Time': boolean;
1714
+ 'occurrence_Span_Thru4'?: string | null;
1583
1715
  /**
1584
1716
  *
1585
1717
  * @type {string}
1586
1718
  * @memberof Claim
1587
1719
  */
1588
- 'statement_From_Date'?: string | null;
1720
+ 'occurrence_Span_Thru5'?: string | null;
1589
1721
  /**
1590
1722
  *
1591
1723
  * @type {string}
1592
1724
  * @memberof Claim
1593
1725
  */
1594
- 'statement_Thru_Date'?: string | null;
1726
+ 'occurrence_Span_Thru6'?: string | null;
1595
1727
  /**
1596
1728
  *
1597
1729
  * @type {string}
1598
1730
  * @memberof Claim
1599
1731
  */
1600
- 'subscriber_ID'?: string | null;
1732
+ 'occurrence_Span_Thru7'?: string | null;
1601
1733
  /**
1602
1734
  *
1603
- * @type {boolean}
1735
+ * @type {string}
1604
1736
  * @memberof Claim
1605
1737
  */
1606
- 'subscriber_Signature': boolean;
1738
+ 'occurrence_Span_Thru8'?: string | null;
1607
1739
  /**
1608
1740
  *
1741
+ * @type {string}
1742
+ * @memberof Claim
1743
+ */
1744
+ 'occurrence_Span_Thru9'?: string | null;
1745
+ /**
1746
+ * Notes the date of the original illness if this claim is associated to that illness.
1747
+ * @type {string}
1748
+ * @memberof Claim
1749
+ */
1750
+ 'onset_Similar_Illness_Date'?: string | null;
1751
+ /**
1752
+ * When this flag is checked, it indicates the dental claim is for orthodontics. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
1609
1753
  * @type {boolean}
1610
1754
  * @memberof Claim
1611
1755
  */
1612
- 'survivor_Benefit': boolean;
1756
+ 'orthodontics_Treatment': boolean;
1613
1757
  /**
1614
- *
1758
+ * Indicates if other insurance is applicable on this claim. This indicator unlocks COB amount fields on the ClaimDetail (service line). Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
1615
1759
  * @type {boolean}
1616
1760
  * @memberof Claim
1617
1761
  */
1618
- 'third_Party_Payment': boolean;
1762
+ 'other_Insurance': boolean;
1619
1763
  /**
1620
- *
1621
- * @type {number}
1764
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1765
+ * @type {string}
1622
1766
  * @memberof Claim
1623
1767
  */
1624
- 'total_COB': number;
1768
+ 'other_Procedure_Code1'?: string | null;
1625
1769
  /**
1626
- *
1627
- * @type {number}
1770
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1771
+ * @type {string}
1628
1772
  * @memberof Claim
1629
1773
  */
1630
- 'trading_Partner_Key'?: number | null;
1774
+ 'other_Procedure_Code10'?: string | null;
1631
1775
  /**
1632
- *
1776
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1633
1777
  * @type {string}
1634
1778
  * @memberof Claim
1635
1779
  */
1636
- 'trans_837_Control_Num'?: string | null;
1780
+ 'other_Procedure_Code11'?: string | null;
1637
1781
  /**
1638
- *
1639
- * @type {boolean}
1782
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1783
+ * @type {string}
1640
1784
  * @memberof Claim
1641
1785
  */
1642
- 'transaction_837': boolean;
1786
+ 'other_Procedure_Code12'?: string | null;
1643
1787
  /**
1644
- *
1788
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1645
1789
  * @type {string}
1646
1790
  * @memberof Claim
1647
1791
  */
1648
- 'transaction_837_ID'?: string | null;
1792
+ 'other_Procedure_Code13'?: string | null;
1649
1793
  /**
1650
- *
1794
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1651
1795
  * @type {string}
1652
1796
  * @memberof Claim
1653
1797
  */
1654
- 'type_Of_Admission'?: string | null;
1798
+ 'other_Procedure_Code14'?: string | null;
1655
1799
  /**
1656
- *
1800
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1657
1801
  * @type {string}
1658
1802
  * @memberof Claim
1659
1803
  */
1660
- 'type_Of_Bill'?: string | null;
1804
+ 'other_Procedure_Code15'?: string | null;
1661
1805
  /**
1662
- *
1806
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1663
1807
  * @type {string}
1664
1808
  * @memberof Claim
1665
1809
  */
1666
- 'update_Date'?: string;
1810
+ 'other_Procedure_Code16'?: string | null;
1667
1811
  /**
1668
- *
1812
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1669
1813
  * @type {string}
1670
1814
  * @memberof Claim
1671
1815
  */
1672
- 'update_User'?: string | null;
1816
+ 'other_Procedure_Code17'?: string | null;
1673
1817
  /**
1674
- *
1675
- * @type {boolean}
1818
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1819
+ * @type {string}
1676
1820
  * @memberof Claim
1677
1821
  */
1678
- 'vacation': boolean;
1822
+ 'other_Procedure_Code18'?: string | null;
1679
1823
  /**
1680
- *
1681
- * @type {number}
1824
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1825
+ * @type {string}
1682
1826
  * @memberof Claim
1683
1827
  */
1684
- 'value_Amount1'?: number | null;
1828
+ 'other_Procedure_Code19'?: string | null;
1685
1829
  /**
1686
- *
1687
- * @type {number}
1830
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1831
+ * @type {string}
1688
1832
  * @memberof Claim
1689
1833
  */
1690
- 'value_Amount2'?: number | null;
1834
+ 'other_Procedure_Code2'?: string | null;
1691
1835
  /**
1692
- *
1693
- * @type {number}
1836
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1837
+ * @type {string}
1694
1838
  * @memberof Claim
1695
1839
  */
1696
- 'value_Amount3'?: number | null;
1840
+ 'other_Procedure_Code20'?: string | null;
1697
1841
  /**
1698
- *
1699
- * @type {number}
1842
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1843
+ * @type {string}
1700
1844
  * @memberof Claim
1701
1845
  */
1702
- 'value_Amount4'?: number | null;
1846
+ 'other_Procedure_Code21'?: string | null;
1703
1847
  /**
1704
- *
1848
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1705
1849
  * @type {string}
1706
1850
  * @memberof Claim
1707
1851
  */
1708
- 'value_Code1'?: string | null;
1852
+ 'other_Procedure_Code22'?: string | null;
1709
1853
  /**
1710
- *
1854
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1711
1855
  * @type {string}
1712
1856
  * @memberof Claim
1713
1857
  */
1714
- 'value_Code2'?: string | null;
1858
+ 'other_Procedure_Code23'?: string | null;
1715
1859
  /**
1716
- *
1860
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1717
1861
  * @type {string}
1718
1862
  * @memberof Claim
1719
1863
  */
1720
- 'value_Code3'?: string | null;
1864
+ 'other_Procedure_Code3'?: string | null;
1721
1865
  /**
1722
- *
1866
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1723
1867
  * @type {string}
1724
1868
  * @memberof Claim
1725
1869
  */
1726
- 'value_Code4'?: string | null;
1870
+ 'other_Procedure_Code4'?: string | null;
1727
1871
  /**
1728
- *
1729
- * @type {boolean}
1872
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1873
+ * @type {string}
1730
1874
  * @memberof Claim
1731
1875
  */
1732
- 'void_Claim': boolean;
1876
+ 'other_Procedure_Code5'?: string | null;
1733
1877
  /**
1734
- *
1735
- * @type {boolean}
1878
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1879
+ * @type {string}
1736
1880
  * @memberof Claim
1737
1881
  */
1738
- 'volume_Override': boolean;
1882
+ 'other_Procedure_Code6'?: string | null;
1739
1883
  /**
1740
- *
1884
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1885
+ * @type {string}
1886
+ * @memberof Claim
1887
+ */
1888
+ 'other_Procedure_Code7'?: string | null;
1889
+ /**
1890
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1891
+ * @type {string}
1892
+ * @memberof Claim
1893
+ */
1894
+ 'other_Procedure_Code8'?: string | null;
1895
+ /**
1896
+ * Additional procedure code (ICD10 Diagnosis) values for this claim submission.
1897
+ * @type {string}
1898
+ * @memberof Claim
1899
+ */
1900
+ 'other_Procedure_Code9'?: string | null;
1901
+ /**
1902
+ * Date associated with the additional procedure code.
1903
+ * @type {string}
1904
+ * @memberof Claim
1905
+ */
1906
+ 'other_Procedure_Date1'?: string | null;
1907
+ /**
1908
+ * Date associated with the additional procedure code.
1909
+ * @type {string}
1910
+ * @memberof Claim
1911
+ */
1912
+ 'other_Procedure_Date10'?: string | null;
1913
+ /**
1914
+ * Date associated with the additional procedure code.
1915
+ * @type {string}
1916
+ * @memberof Claim
1917
+ */
1918
+ 'other_Procedure_Date11'?: string | null;
1919
+ /**
1920
+ * Date associated with the additional procedure code.
1921
+ * @type {string}
1922
+ * @memberof Claim
1923
+ */
1924
+ 'other_Procedure_Date12'?: string | null;
1925
+ /**
1926
+ * Date associated with the additional procedure code.
1927
+ * @type {string}
1928
+ * @memberof Claim
1929
+ */
1930
+ 'other_Procedure_Date13'?: string | null;
1931
+ /**
1932
+ * Date associated with the additional procedure code.
1933
+ * @type {string}
1934
+ * @memberof Claim
1935
+ */
1936
+ 'other_Procedure_Date14'?: string | null;
1937
+ /**
1938
+ * Date associated with the additional procedure code.
1939
+ * @type {string}
1940
+ * @memberof Claim
1941
+ */
1942
+ 'other_Procedure_Date15'?: string | null;
1943
+ /**
1944
+ * Date associated with the additional procedure code.
1945
+ * @type {string}
1946
+ * @memberof Claim
1947
+ */
1948
+ 'other_Procedure_Date16'?: string | null;
1949
+ /**
1950
+ * Date associated with the additional procedure code.
1951
+ * @type {string}
1952
+ * @memberof Claim
1953
+ */
1954
+ 'other_Procedure_Date17'?: string | null;
1955
+ /**
1956
+ * Date associated with the additional procedure code.
1957
+ * @type {string}
1958
+ * @memberof Claim
1959
+ */
1960
+ 'other_Procedure_Date18'?: string | null;
1961
+ /**
1962
+ * Date associated with the additional procedure code.
1963
+ * @type {string}
1964
+ * @memberof Claim
1965
+ */
1966
+ 'other_Procedure_Date19'?: string | null;
1967
+ /**
1968
+ * Date associated with the additional procedure code.
1969
+ * @type {string}
1970
+ * @memberof Claim
1971
+ */
1972
+ 'other_Procedure_Date2'?: string | null;
1973
+ /**
1974
+ * Date associated with the additional procedure code.
1975
+ * @type {string}
1976
+ * @memberof Claim
1977
+ */
1978
+ 'other_Procedure_Date20'?: string | null;
1979
+ /**
1980
+ * Date associated with the additional procedure code.
1981
+ * @type {string}
1982
+ * @memberof Claim
1983
+ */
1984
+ 'other_Procedure_Date21'?: string | null;
1985
+ /**
1986
+ * Date associated with the additional procedure code.
1987
+ * @type {string}
1988
+ * @memberof Claim
1989
+ */
1990
+ 'other_Procedure_Date22'?: string | null;
1991
+ /**
1992
+ * Date associated with the additional procedure code.
1993
+ * @type {string}
1994
+ * @memberof Claim
1995
+ */
1996
+ 'other_Procedure_Date23'?: string | null;
1997
+ /**
1998
+ * Date associated with the additional procedure code.
1999
+ * @type {string}
2000
+ * @memberof Claim
2001
+ */
2002
+ 'other_Procedure_Date3'?: string | null;
2003
+ /**
2004
+ * Date associated with the additional procedure code.
2005
+ * @type {string}
2006
+ * @memberof Claim
2007
+ */
2008
+ 'other_Procedure_Date4'?: string | null;
2009
+ /**
2010
+ * Date associated with the additional procedure code.
2011
+ * @type {string}
2012
+ * @memberof Claim
2013
+ */
2014
+ 'other_Procedure_Date5'?: string | null;
2015
+ /**
2016
+ * Date associated with the additional procedure code.
2017
+ * @type {string}
2018
+ * @memberof Claim
2019
+ */
2020
+ 'other_Procedure_Date6'?: string | null;
2021
+ /**
2022
+ * Date associated with the additional procedure code.
2023
+ * @type {string}
2024
+ * @memberof Claim
2025
+ */
2026
+ 'other_Procedure_Date7'?: string | null;
2027
+ /**
2028
+ * Date associated with the additional procedure code.
2029
+ * @type {string}
2030
+ * @memberof Claim
2031
+ */
2032
+ 'other_Procedure_Date8'?: string | null;
2033
+ /**
2034
+ * Date associated with the additional procedure code.
2035
+ * @type {string}
2036
+ * @memberof Claim
2037
+ */
2038
+ 'other_Procedure_Date9'?: string | null;
2039
+ /**
2040
+ * No longer in use.
2041
+ * @type {string}
2042
+ * @memberof Claim
2043
+ */
2044
+ 'override'?: string | null;
2045
+ /**
2046
+ * No longer in use.
2047
+ * @type {string}
2048
+ * @memberof Claim
2049
+ */
2050
+ 'override_Date'?: string | null;
2051
+ /**
2052
+ * This indicator lets the system know that the front end user has assigned this network ID and not adjudication. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2053
+ * @type {boolean}
2054
+ * @memberof Claim
2055
+ */
2056
+ 'override_Network_ID': boolean;
2057
+ /**
2058
+ * Users can choose the payor from the More Information screen and this flag prevents adjudication from using the expected payor. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2059
+ * @type {boolean}
2060
+ * @memberof Claim
2061
+ */
2062
+ 'override_Payor_Account': boolean;
2063
+ /**
2064
+ * No longer in use.
2065
+ * @type {string}
2066
+ * @memberof Claim
2067
+ */
2068
+ 'override_User'?: string | null;
2069
+ /**
2070
+ * This will identify if this is a partial disability payment. Partial Disability payments have additional tax and payment rules applied during adjudication. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2071
+ * @type {boolean}
2072
+ * @memberof Claim
2073
+ */
2074
+ 'partial_Disability': boolean;
2075
+ /**
2076
+ * For the servicing provider, this indicates the patient account identifier in their practice management system.
2077
+ * @type {string}
2078
+ * @memberof Claim
2079
+ */
2080
+ 'patient_Account'?: string | null;
2081
+ /**
2082
+ * Reason for Visit code on Diagnosis Code 1
2083
+ * @type {string}
2084
+ * @memberof Claim
2085
+ */
2086
+ 'patient_Reason_for_Visit_Diagnostic_Code1'?: string | null;
2087
+ /**
2088
+ * Reason for Visit code on Diagnosis Code 2
2089
+ * @type {string}
2090
+ * @memberof Claim
2091
+ */
2092
+ 'patient_Reason_for_Visit_Diagnostic_Code2'?: string | null;
2093
+ /**
2094
+ * Reason for Visit code on Diagnosis Code 3
2095
+ * @type {string}
2096
+ * @memberof Claim
2097
+ */
2098
+ 'patient_Reason_for_Visit_Diagnostic_Code3'?: string | null;
2099
+ /**
2100
+ * Holds the relationship of the patient to the insured.
2101
+ * @type {string}
2102
+ * @memberof Claim
2103
+ */
2104
+ 'patient_Relationship'?: string | null;
2105
+ /**
2106
+ * Indicates if the patient signature has been collected. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2107
+ * @type {boolean}
2108
+ * @memberof Claim
2109
+ */
2110
+ 'patient_Signature': boolean;
2111
+ /**
2112
+ * Indicates the date of the patient signature being collected.
2113
+ * @type {string}
2114
+ * @memberof Claim
2115
+ */
2116
+ 'patient_Signature_Date'?: string | null;
2117
+ /**
2118
+ * For institutional Claims, holds the Patient Status.
2119
+ * @type {string}
2120
+ * @memberof Claim
2121
+ */
2122
+ 'patient_Status'?: string | null;
2123
+ /**
2124
+ * The billing provider (payee) for this claim. References the ProviderPayee.Payee_ID (by Provider_ID).
2125
+ * @type {string}
2126
+ * @memberof Claim
2127
+ */
2128
+ 'payee_ID'?: string | null;
2129
+ /**
2130
+ * No longer in use.
2131
+ * @type {string}
2132
+ * @memberof Claim
2133
+ */
2134
+ 'payment_Status'?: string | null;
2135
+ /**
2136
+ * A claim reference number used in conjunction with the Medicare Resubmission code. Indicated in Box 22 of the claim report.
2137
+ * @type {string}
2138
+ * @memberof Claim
2139
+ */
2140
+ 'payor_Claim_Control_Number'?: string | null;
2141
+ /**
2142
+ * For claim funding, indicates the payor/account this claim would be paid from.
2143
+ * @type {string}
2144
+ * @memberof Claim
2145
+ */
2146
+ 'payor_ID'?: string | null;
2147
+ /**
2148
+ * This is the Return to Work date identified by the Physician at the start of disability. This may or may not be the actual date the member returns to work.
2149
+ * @type {string}
2150
+ * @memberof Claim
2151
+ */
2152
+ 'physician_Return_To_Work'?: string | null;
2153
+ /**
2154
+ * Some transactions hold the Place of Service at the header but typically this value is empty and the ClaimDetail.Place_Of_Service is used for each service line. This value is not used in standard processing.
2155
+ * @type {string}
2156
+ * @memberof Claim
2157
+ */
2158
+ 'place_Of_Service'?: string | null;
2159
+ /**
2160
+ * Holds the plan the patient is enrolled in and that benefits are assigned.
2161
+ * @type {string}
2162
+ * @memberof Claim
2163
+ */
2164
+ 'plan_ID'?: string | null;
2165
+ /**
2166
+ * No longer in use.
2167
+ * @type {string}
2168
+ * @memberof Claim
2169
+ */
2170
+ 'plan_Provider'?: string | null;
2171
+ /**
2172
+ * Indicates the Plan Year this claim is processed under. This drives accumulator calculations and referneces the GroupPlanYear.Plan_Year value.
2173
+ * @type {string}
2174
+ * @memberof Claim
2175
+ */
2176
+ 'plan_Year'?: string | null;
2177
+ /**
2178
+ * Indicates if the patient was present on admission for diagnosis 1.
2179
+ * @type {string}
2180
+ * @memberof Claim
2181
+ */
2182
+ 'present_On_Admission1'?: string | null;
2183
+ /**
2184
+ * Indicates if the patient was present on admission for diagnosis 10.
2185
+ * @type {string}
2186
+ * @memberof Claim
2187
+ */
2188
+ 'present_On_Admission10'?: string | null;
2189
+ /**
2190
+ * Indicates if the patient was present on admission for diagnosis 11.
2191
+ * @type {string}
2192
+ * @memberof Claim
2193
+ */
2194
+ 'present_On_Admission11'?: string | null;
2195
+ /**
2196
+ * Indicates if the patient was present on admission for diagnosis 12.
2197
+ * @type {string}
2198
+ * @memberof Claim
2199
+ */
2200
+ 'present_On_Admission12'?: string | null;
2201
+ /**
2202
+ * Indicates if the patient was present on admission for diagnosis 13.
2203
+ * @type {string}
2204
+ * @memberof Claim
2205
+ */
2206
+ 'present_On_Admission13'?: string | null;
2207
+ /**
2208
+ * Indicates if the patient was present on admission for diagnosis 14.
2209
+ * @type {string}
2210
+ * @memberof Claim
2211
+ */
2212
+ 'present_On_Admission14'?: string | null;
2213
+ /**
2214
+ * Indicates if the patient was present on admission for diagnosis 15.
2215
+ * @type {string}
2216
+ * @memberof Claim
2217
+ */
2218
+ 'present_On_Admission15'?: string | null;
2219
+ /**
2220
+ * Indicates if the patient was present on admission for diagnosis 16.
2221
+ * @type {string}
2222
+ * @memberof Claim
2223
+ */
2224
+ 'present_On_Admission16'?: string | null;
2225
+ /**
2226
+ * Indicates if the patient was present on admission for diagnosis 17.
2227
+ * @type {string}
2228
+ * @memberof Claim
2229
+ */
2230
+ 'present_On_Admission17'?: string | null;
2231
+ /**
2232
+ * Indicates if the patient was present on admission for diagnosis 18.
2233
+ * @type {string}
2234
+ * @memberof Claim
2235
+ */
2236
+ 'present_On_Admission18'?: string | null;
2237
+ /**
2238
+ * Indicates if the patient was present on admission for diagnosis 19.
2239
+ * @type {string}
2240
+ * @memberof Claim
2241
+ */
2242
+ 'present_On_Admission19'?: string | null;
2243
+ /**
2244
+ * Indicates if the patient was present on admission for diagnosis 2.
2245
+ * @type {string}
2246
+ * @memberof Claim
2247
+ */
2248
+ 'present_On_Admission2'?: string | null;
2249
+ /**
2250
+ * Indicates if the patient was present on admission for diagnosis 20.
2251
+ * @type {string}
2252
+ * @memberof Claim
2253
+ */
2254
+ 'present_On_Admission20'?: string | null;
2255
+ /**
2256
+ * Indicates if the patient was present on admission for diagnosis 21.
2257
+ * @type {string}
2258
+ * @memberof Claim
2259
+ */
2260
+ 'present_On_Admission21'?: string | null;
2261
+ /**
2262
+ * Indicates if the patient was present on admission for diagnosis 22.
2263
+ * @type {string}
2264
+ * @memberof Claim
2265
+ */
2266
+ 'present_On_Admission22'?: string | null;
2267
+ /**
2268
+ * Indicates if the patient was present on admission for diagnosis 23.
2269
+ * @type {string}
2270
+ * @memberof Claim
2271
+ */
2272
+ 'present_On_Admission23'?: string | null;
2273
+ /**
2274
+ * Indicates if the patient was present on admission for diagnosis 24.
2275
+ * @type {string}
2276
+ * @memberof Claim
2277
+ */
2278
+ 'present_On_Admission24'?: string | null;
2279
+ /**
2280
+ * Indicates if the patient was present on admission for diagnosis 3.
2281
+ * @type {string}
2282
+ * @memberof Claim
2283
+ */
2284
+ 'present_On_Admission3'?: string | null;
2285
+ /**
2286
+ * Indicates if the patient was present on admission for diagnosis 4.
2287
+ * @type {string}
2288
+ * @memberof Claim
2289
+ */
2290
+ 'present_On_Admission4'?: string | null;
2291
+ /**
2292
+ * Indicates if the patient was present on admission for diagnosis 5.
2293
+ * @type {string}
2294
+ * @memberof Claim
2295
+ */
2296
+ 'present_On_Admission5'?: string | null;
2297
+ /**
2298
+ * Indicates if the patient was present on admission for diagnosis 6.
2299
+ * @type {string}
2300
+ * @memberof Claim
2301
+ */
2302
+ 'present_On_Admission6'?: string | null;
2303
+ /**
2304
+ * Indicates if the patient was present on admission for diagnosis 7.
2305
+ * @type {string}
2306
+ * @memberof Claim
2307
+ */
2308
+ 'present_On_Admission7'?: string | null;
2309
+ /**
2310
+ * Indicates if the patient was present on admission for diagnosis 8.
2311
+ * @type {string}
2312
+ * @memberof Claim
2313
+ */
2314
+ 'present_On_Admission8'?: string | null;
2315
+ /**
2316
+ * Indicates if the patient was present on admission for diagnosis 9.
2317
+ * @type {string}
2318
+ * @memberof Claim
2319
+ */
2320
+ 'present_On_Admission9'?: string | null;
2321
+ /**
2322
+ * Indicates if the patient was present for the external cause of injury diagnosis 1.
2323
+ * @type {string}
2324
+ * @memberof Claim
2325
+ */
2326
+ 'present_On_Admission_ECode1'?: string | null;
2327
+ /**
2328
+ * Indicates if the patient was present for the external cause of injury diagnosis 10.
2329
+ * @type {string}
2330
+ * @memberof Claim
2331
+ */
2332
+ 'present_On_Admission_ECode10'?: string | null;
2333
+ /**
2334
+ * Indicates if the patient was present for the external cause of injury diagnosis 11.
2335
+ * @type {string}
2336
+ * @memberof Claim
2337
+ */
2338
+ 'present_On_Admission_ECode11'?: string | null;
2339
+ /**
2340
+ * Indicates if the patient was present for the external cause of injury diagnosis 12.
2341
+ * @type {string}
2342
+ * @memberof Claim
2343
+ */
2344
+ 'present_On_Admission_ECode12'?: string | null;
2345
+ /**
2346
+ * Indicates if the patient was present for the external cause of injury diagnosis 2.
2347
+ * @type {string}
2348
+ * @memberof Claim
2349
+ */
2350
+ 'present_On_Admission_ECode2'?: string | null;
2351
+ /**
2352
+ * Indicates if the patient was present for the external cause of injury diagnosis 3.
2353
+ * @type {string}
2354
+ * @memberof Claim
2355
+ */
2356
+ 'present_On_Admission_ECode3'?: string | null;
2357
+ /**
2358
+ * Indicates if the patient was present for the external cause of injury diagnosis 4.
2359
+ * @type {string}
2360
+ * @memberof Claim
2361
+ */
2362
+ 'present_On_Admission_ECode4'?: string | null;
2363
+ /**
2364
+ * Indicates if the patient was present for the external cause of injury diagnosis 5.
2365
+ * @type {string}
2366
+ * @memberof Claim
2367
+ */
2368
+ 'present_On_Admission_ECode5'?: string | null;
2369
+ /**
2370
+ * Indicates if the patient was present for the external cause of injury diagnosis 6.
2371
+ * @type {string}
2372
+ * @memberof Claim
2373
+ */
2374
+ 'present_On_Admission_ECode6'?: string | null;
2375
+ /**
2376
+ * Indicates if the patient was present for the external cause of injury diagnosis 7.
2377
+ * @type {string}
2378
+ * @memberof Claim
2379
+ */
2380
+ 'present_On_Admission_ECode7'?: string | null;
2381
+ /**
2382
+ * Indicates if the patient was present for the external cause of injury diagnosis 8.
2383
+ * @type {string}
2384
+ * @memberof Claim
2385
+ */
2386
+ 'present_On_Admission_ECode8'?: string | null;
2387
+ /**
2388
+ * Indicates if the patient was present for the external cause of injury diagnosis 9.
2389
+ * @type {string}
2390
+ * @memberof Claim
2391
+ */
2392
+ 'present_On_Admission_ECode9'?: string | null;
2393
+ /**
2394
+ * For reprice claims (typically submitted via 837), this notes the reprice method used to reprice this claim.
2395
+ * @type {string}
2396
+ * @memberof Claim
2397
+ */
2398
+ 'pricing_Method'?: string | null;
2399
+ /**
2400
+ * The ID of the pricing organization. Data is obtained in segment HCP04 on an 837.
2401
+ * @type {string}
2402
+ * @memberof Claim
2403
+ */
2404
+ 'pricing_Org_ID'?: string | null;
2405
+ /**
2406
+ * The rate associated with the reprice method (Pricing_Method).
2407
+ * @type {number}
2408
+ * @memberof Claim
2409
+ */
2410
+ 'pricing_Rate'?: number | null;
2411
+ /**
2412
+ * The principal procedure (ICD10 Diagnosis) for this claim submission.
2413
+ * @type {string}
2414
+ * @memberof Claim
2415
+ */
2416
+ 'principal_Procedure_Code'?: string | null;
2417
+ /**
2418
+ * The principal procedure date.
2419
+ * @type {string}
2420
+ * @memberof Claim
2421
+ */
2422
+ 'principal_Procedure_Date'?: string | null;
2423
+ /**
2424
+ * The date of a previous prosthetic or crown applied, if there was one.
2425
+ * @type {string}
2426
+ * @memberof Claim
2427
+ */
2428
+ 'prior_Placement_Date'?: string | null;
2429
+ /**
2430
+ * The date the claim was processed from batch.
2431
+ * @type {string}
2432
+ * @memberof Claim
2433
+ */
2434
+ 'processed_Date'?: string | null;
2435
+ /**
2436
+ * 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.
2437
+ * @type {boolean}
2438
+ * @memberof Claim
2439
+ */
2440
+ 'prosthesis_Replacement': boolean;
2441
+ /**
2442
+ * The provider ID of the servicing provider. References Provider.Provider_ID.
2443
+ * @type {string}
2444
+ * @memberof Claim
2445
+ */
2446
+ 'provider_ID'?: string | null;
2447
+ /**
2448
+ * Overrides the QPA Method set on the Plan for this claim.
2449
+ * @type {string}
2450
+ * @memberof Claim
2451
+ */
2452
+ 'qpA_Method'?: string | null;
2453
+ /**
2454
+ * The date this claim was received into the admin system.
2455
+ * @type {string}
2456
+ * @memberof Claim
2457
+ */
2458
+ 'received_Date'?: string | null;
2459
+ /**
2460
+ * Information field to track if a referral was sent for this claim.
2461
+ * @type {string}
2462
+ * @memberof Claim
2463
+ */
2464
+ 'referred_By'?: string | null;
2465
+ /**
2466
+ * Indicates that this claim was part of a Refund process. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2467
+ * @type {boolean}
2468
+ * @memberof Claim
2469
+ */
2470
+ 'refund_Claim': boolean;
2471
+ /**
2472
+ * If this claim was part of a refund process, this will hold the reference to the receipt generated by the refund process.
2473
+ * @type {number}
2474
+ * @memberof Claim
2475
+ */
2476
+ 'refund_Funding_Key'?: number | null;
2477
+ /**
2478
+ * Indicates if the claim is related to a non-car accident. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2479
+ * @type {boolean}
2480
+ * @memberof Claim
2481
+ */
2482
+ 'related_To_Accident': boolean;
2483
+ /**
2484
+ * Indicates if the claim was casued by a third party. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2485
+ * @type {boolean}
2486
+ * @memberof Claim
2487
+ */
2488
+ 'related_To_Another_Party': boolean;
2489
+ /**
2490
+ * Indicates if the claim is related to a car accident. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2491
+ * @type {boolean}
2492
+ * @memberof Claim
2493
+ */
2494
+ 'related_To_Auto': boolean;
2495
+ /**
2496
+ * Indicates if the claim is work related. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2497
+ * @type {boolean}
2498
+ * @memberof Claim
2499
+ */
2500
+ 'related_To_Employment': boolean;
2501
+ /**
2502
+ * Information field used in custom processing and reporting.
2503
+ * @type {string}
2504
+ * @memberof Claim
2505
+ */
2506
+ 'relinquished_Care_Date'?: string | null;
2507
+ /**
2508
+ * No longer in use.
2509
+ * @type {string}
2510
+ * @memberof Claim
2511
+ */
2512
+ 'remittance_Printed'?: string | null;
2513
+ /**
2514
+ * No longer in use.
2515
+ * @type {string}
2516
+ * @memberof Claim
2517
+ */
2518
+ 'reprice_Printed'?: string | null;
2519
+ /**
2520
+ * As part of reprice claim submissions (via 837), this will hold the repricing network.
2521
+ * @type {string}
2522
+ * @memberof Claim
2523
+ */
2524
+ 'repriced_Network_ID'?: string | null;
2525
+ /**
2526
+ * This is the date the member Returned to Work. This date affects the total payments created as well as other calculations during adjudication.
2527
+ * @type {string}
2528
+ * @memberof Claim
2529
+ */
2530
+ 'return_To_Work_Date'?: string | null;
2531
+ /**
2532
+ * This flag identifies that there is salary continuation during this disability. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2533
+ * @type {boolean}
2534
+ * @memberof Claim
2535
+ */
2536
+ 'salary_Continuation': boolean;
2537
+ /**
2538
+ * Indicates the entity that should be paid for this claim. S - Subscriber, G - Group, B - Beneficiary, P - Payee, or V - Provider.
2539
+ * @type {string}
2540
+ * @memberof Claim
2541
+ */
2542
+ 'send_Check_To'?: string | null;
2543
+ /**
2544
+ * The Sender ID sent inbound for x12 (837) transactions.
2545
+ * @type {string}
2546
+ * @memberof Claim
2547
+ */
2548
+ 'sender_ID'?: string | null;
2549
+ /**
2550
+ * The earliest Service_Date of all service lines on this claim.
2551
+ * @type {string}
2552
+ * @memberof Claim
2553
+ */
2554
+ 'service_Date'?: string | null;
2555
+ /**
2556
+ * The latest Service_Thru for all service lines on this claim.
2557
+ * @type {string}
2558
+ * @memberof Claim
2559
+ */
2560
+ 'service_Thru'?: string | null;
2561
+ /**
2562
+ * This flag identifies that there is sick time during this disability. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2563
+ * @type {boolean}
2564
+ * @memberof Claim
2565
+ */
2566
+ 'sick_Time': boolean;
2567
+ /**
2568
+ * For Institutional Claims, holds the Statement Date.
2569
+ * @type {string}
2570
+ * @memberof Claim
2571
+ */
2572
+ 'statement_From_Date'?: string | null;
2573
+ /**
2574
+ * For Institutional Claims, holds the Statement Date.
2575
+ * @type {string}
2576
+ * @memberof Claim
2577
+ */
2578
+ 'statement_Thru_Date'?: string | null;
2579
+ /**
2580
+ * The Subscriber ID of the patient for this claim.
2581
+ * @type {string}
2582
+ * @memberof Claim
2583
+ */
2584
+ 'subscriber_ID'?: string | null;
2585
+ /**
2586
+ * Indicates if the insured signature has been collected. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2587
+ * @type {boolean}
2588
+ * @memberof Claim
2589
+ */
2590
+ 'subscriber_Signature': boolean;
2591
+ /**
2592
+ * Indicates if Survivor Benefit was applied for this disability payment. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2593
+ * @type {boolean}
2594
+ * @memberof Claim
2595
+ */
2596
+ 'survivor_Benefit': boolean;
2597
+ /**
2598
+ * For disability, indicates if this professional claim is a 3rd party payment (typically related to alimony, garnishment, etc.) Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2599
+ * @type {boolean}
2600
+ * @memberof Claim
2601
+ */
2602
+ 'third_Party_Payment': boolean;
2603
+ /**
2604
+ * 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.
2605
+ * @type {number}
2606
+ * @memberof Claim
2607
+ */
2608
+ 'total_COB': number;
2609
+ /**
2610
+ * No longer in use.
2611
+ * @type {number}
2612
+ * @memberof Claim
2613
+ */
2614
+ 'trading_Partner_Key'?: number | null;
2615
+ /**
2616
+ * For 837 transactions, this is the control number assgined by the submitter.
2617
+ * @type {string}
2618
+ * @memberof Claim
2619
+ */
2620
+ 'trans_837_Control_Num'?: string | null;
2621
+ /**
2622
+ * Indicates this is a claim entered by an inbound 837. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2623
+ * @type {boolean}
2624
+ * @memberof Claim
2625
+ */
2626
+ 'transaction_837': boolean;
2627
+ /**
2628
+ * For 837 transactions, this holds the transaction ID assigned by the submission.
2629
+ * @type {string}
2630
+ * @memberof Claim
2631
+ */
2632
+ 'transaction_837_ID'?: string | null;
2633
+ /**
2634
+ * The Admission Type associated to this claim.
2635
+ * @type {string}
2636
+ * @memberof Claim
2637
+ */
2638
+ 'type_Of_Admission'?: string | null;
2639
+ /**
2640
+ * The Bill Type associated to this claim. References BillType.Type_Of_Bill.
2641
+ * @type {string}
2642
+ * @memberof Claim
2643
+ */
2644
+ 'type_Of_Bill'?: string | null;
2645
+ /**
2646
+ * Date when the record was last updated in the system.
2647
+ * @type {string}
2648
+ * @memberof Claim
2649
+ */
2650
+ 'update_Date'?: string;
2651
+ /**
2652
+ * User that last updated the record in the system.
2653
+ * @type {string}
2654
+ * @memberof Claim
2655
+ */
2656
+ 'update_User'?: string | null;
2657
+ /**
2658
+ * This flag identifies that there is vacation during this disability. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2659
+ * @type {boolean}
2660
+ * @memberof Claim
2661
+ */
2662
+ 'vacation': boolean;
2663
+ /**
2664
+ * The monetary amount related to the value code.
2665
+ * @type {number}
2666
+ * @memberof Claim
2667
+ */
2668
+ 'value_Amount1'?: number | null;
2669
+ /**
2670
+ *
2671
+ * @type {number}
2672
+ * @memberof Claim
2673
+ */
2674
+ 'value_Amount10'?: number | null;
2675
+ /**
2676
+ *
2677
+ * @type {number}
2678
+ * @memberof Claim
2679
+ */
2680
+ 'value_Amount11'?: number | null;
2681
+ /**
2682
+ *
2683
+ * @type {number}
2684
+ * @memberof Claim
2685
+ */
2686
+ 'value_Amount12'?: number | null;
2687
+ /**
2688
+ *
2689
+ * @type {number}
2690
+ * @memberof Claim
2691
+ */
2692
+ 'value_Amount13'?: number | null;
2693
+ /**
2694
+ *
2695
+ * @type {number}
2696
+ * @memberof Claim
2697
+ */
2698
+ 'value_Amount14'?: number | null;
2699
+ /**
2700
+ *
2701
+ * @type {number}
2702
+ * @memberof Claim
2703
+ */
2704
+ 'value_Amount15'?: number | null;
2705
+ /**
2706
+ *
2707
+ * @type {number}
2708
+ * @memberof Claim
2709
+ */
2710
+ 'value_Amount16'?: number | null;
2711
+ /**
2712
+ *
2713
+ * @type {number}
2714
+ * @memberof Claim
2715
+ */
2716
+ 'value_Amount17'?: number | null;
2717
+ /**
2718
+ *
2719
+ * @type {number}
2720
+ * @memberof Claim
2721
+ */
2722
+ 'value_Amount18'?: number | null;
2723
+ /**
2724
+ *
2725
+ * @type {number}
2726
+ * @memberof Claim
2727
+ */
2728
+ 'value_Amount19'?: number | null;
2729
+ /**
2730
+ * The monetary amount related to the value code.
2731
+ * @type {number}
2732
+ * @memberof Claim
2733
+ */
2734
+ 'value_Amount2'?: number | null;
2735
+ /**
2736
+ *
2737
+ * @type {number}
2738
+ * @memberof Claim
2739
+ */
2740
+ 'value_Amount20'?: number | null;
2741
+ /**
2742
+ *
2743
+ * @type {number}
2744
+ * @memberof Claim
2745
+ */
2746
+ 'value_Amount21'?: number | null;
2747
+ /**
2748
+ *
2749
+ * @type {number}
2750
+ * @memberof Claim
2751
+ */
2752
+ 'value_Amount22'?: number | null;
2753
+ /**
2754
+ *
2755
+ * @type {number}
2756
+ * @memberof Claim
2757
+ */
2758
+ 'value_Amount23'?: number | null;
2759
+ /**
2760
+ *
2761
+ * @type {number}
2762
+ * @memberof Claim
2763
+ */
2764
+ 'value_Amount24'?: number | null;
2765
+ /**
2766
+ * The monetary amount related to the value code.
2767
+ * @type {number}
2768
+ * @memberof Claim
2769
+ */
2770
+ 'value_Amount3'?: number | null;
2771
+ /**
2772
+ * The monetary amount related to the value code.
2773
+ * @type {number}
2774
+ * @memberof Claim
2775
+ */
2776
+ 'value_Amount4'?: number | null;
2777
+ /**
2778
+ *
2779
+ * @type {number}
2780
+ * @memberof Claim
2781
+ */
2782
+ 'value_Amount5'?: number | null;
2783
+ /**
2784
+ *
2785
+ * @type {number}
2786
+ * @memberof Claim
2787
+ */
2788
+ 'value_Amount6'?: number | null;
2789
+ /**
2790
+ *
2791
+ * @type {number}
2792
+ * @memberof Claim
2793
+ */
2794
+ 'value_Amount7'?: number | null;
2795
+ /**
2796
+ *
2797
+ * @type {number}
2798
+ * @memberof Claim
2799
+ */
2800
+ 'value_Amount8'?: number | null;
2801
+ /**
2802
+ *
2803
+ * @type {number}
2804
+ * @memberof Claim
2805
+ */
2806
+ 'value_Amount9'?: number | null;
2807
+ /**
2808
+ * The code indicating a monetary condition which was used by the intermediary to process an institutional claim.
2809
+ * @type {string}
2810
+ * @memberof Claim
2811
+ */
2812
+ 'value_Code1'?: string | null;
2813
+ /**
2814
+ *
2815
+ * @type {string}
2816
+ * @memberof Claim
2817
+ */
2818
+ 'value_Code10'?: string | null;
2819
+ /**
2820
+ *
2821
+ * @type {string}
2822
+ * @memberof Claim
2823
+ */
2824
+ 'value_Code11'?: string | null;
2825
+ /**
2826
+ *
2827
+ * @type {string}
2828
+ * @memberof Claim
2829
+ */
2830
+ 'value_Code12'?: string | null;
2831
+ /**
2832
+ *
2833
+ * @type {string}
2834
+ * @memberof Claim
2835
+ */
2836
+ 'value_Code13'?: string | null;
2837
+ /**
2838
+ *
2839
+ * @type {string}
2840
+ * @memberof Claim
2841
+ */
2842
+ 'value_Code14'?: string | null;
2843
+ /**
2844
+ *
2845
+ * @type {string}
2846
+ * @memberof Claim
2847
+ */
2848
+ 'value_Code15'?: string | null;
2849
+ /**
2850
+ *
2851
+ * @type {string}
2852
+ * @memberof Claim
2853
+ */
2854
+ 'value_Code16'?: string | null;
2855
+ /**
2856
+ *
2857
+ * @type {string}
2858
+ * @memberof Claim
2859
+ */
2860
+ 'value_Code17'?: string | null;
2861
+ /**
2862
+ *
2863
+ * @type {string}
2864
+ * @memberof Claim
2865
+ */
2866
+ 'value_Code18'?: string | null;
2867
+ /**
2868
+ *
2869
+ * @type {string}
2870
+ * @memberof Claim
2871
+ */
2872
+ 'value_Code19'?: string | null;
2873
+ /**
2874
+ * The code indicating a monetary condition which was used by the intermediary to process an institutional claim.
2875
+ * @type {string}
2876
+ * @memberof Claim
2877
+ */
2878
+ 'value_Code2'?: string | null;
2879
+ /**
2880
+ *
2881
+ * @type {string}
2882
+ * @memberof Claim
2883
+ */
2884
+ 'value_Code20'?: string | null;
2885
+ /**
2886
+ *
2887
+ * @type {string}
2888
+ * @memberof Claim
2889
+ */
2890
+ 'value_Code21'?: string | null;
2891
+ /**
2892
+ *
2893
+ * @type {string}
2894
+ * @memberof Claim
2895
+ */
2896
+ 'value_Code22'?: string | null;
2897
+ /**
2898
+ *
2899
+ * @type {string}
2900
+ * @memberof Claim
2901
+ */
2902
+ 'value_Code23'?: string | null;
2903
+ /**
2904
+ *
2905
+ * @type {string}
2906
+ * @memberof Claim
2907
+ */
2908
+ 'value_Code24'?: string | null;
2909
+ /**
2910
+ * The code indicating a monetary condition which was used by the intermediary to process an institutional claim.
2911
+ * @type {string}
2912
+ * @memberof Claim
2913
+ */
2914
+ 'value_Code3'?: string | null;
2915
+ /**
2916
+ * The code indicating a monetary condition which was used by the intermediary to process an institutional claim.
2917
+ * @type {string}
2918
+ * @memberof Claim
2919
+ */
2920
+ 'value_Code4'?: string | null;
2921
+ /**
2922
+ *
2923
+ * @type {string}
2924
+ * @memberof Claim
2925
+ */
2926
+ 'value_Code5'?: string | null;
2927
+ /**
2928
+ *
2929
+ * @type {string}
2930
+ * @memberof Claim
2931
+ */
2932
+ 'value_Code6'?: string | null;
2933
+ /**
2934
+ *
2935
+ * @type {string}
2936
+ * @memberof Claim
2937
+ */
2938
+ 'value_Code7'?: string | null;
2939
+ /**
2940
+ *
2941
+ * @type {string}
2942
+ * @memberof Claim
2943
+ */
2944
+ 'value_Code8'?: string | null;
2945
+ /**
2946
+ *
2947
+ * @type {string}
2948
+ * @memberof Claim
2949
+ */
2950
+ 'value_Code9'?: string | null;
2951
+ /**
2952
+ * Indicates that this claim was part of a Void process. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2953
+ * @type {boolean}
2954
+ * @memberof Claim
2955
+ */
2956
+ 'void_Claim': boolean;
2957
+ /**
2958
+ * Notes that the benefit amount, for disability claims, has been manually overridden. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
2959
+ * @type {boolean}
2960
+ * @memberof Claim
2961
+ */
2962
+ 'volume_Override': boolean;
2963
+ /**
2964
+ * Indicates if this disability payment is a waiting period payment. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
1741
2965
  * @type {boolean}
1742
2966
  * @memberof Claim
1743
2967
  */