@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
125 lines (124 loc) • 2.11 kB
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class IN2_Fields extends Hl7Fields {
/**
* Insureds employee ID
*/
IN2_1: Hl7Field;
/**
* Insureds social security number
*/
IN2_2: Hl7Field;
/**
* Insureds employer name
*/
IN2_3: Hl7Field;
/**
* Employer information data
*/
IN2_4: Hl7Field;
/**
* Mail claim party
*/
IN2_5: Hl7Field;
/**
* Medicare health insurance card number
*/
IN2_6: Hl7Field;
/**
* Medicaid case name
*/
IN2_7: Hl7Field;
/**
* Medicaid case number
*/
IN2_8: Hl7Field;
/**
* Champus sponsor name
*/
IN2_9: Hl7Field;
/**
* Champus ID number
*/
IN2_10: Hl7Field;
/**
* Dependent of champus recipient
*/
IN2_11: Hl7Field;
/**
* Champus organization
*/
IN2_12: Hl7Field;
/**
* Champus station
*/
IN2_13: Hl7Field;
/**
* Champus service
*/
IN2_14: Hl7Field;
/**
* Champus rank / grade
*/
IN2_15: Hl7Field;
/**
* Champus status
*/
IN2_16: Hl7Field;
/**
* Champus retire date
*/
IN2_17: Hl7Field;
/**
* Champus non-availability certification on file
*/
IN2_18: Hl7Field;
/**
* Baby coverage
*/
IN2_19: Hl7Field;
/**
* Combine baby bill
*/
IN2_20: Hl7Field;
/**
* Blood deductible
*/
IN2_21: Hl7Field;
/**
* Special coverage approval name
*/
IN2_22: Hl7Field;
/**
* Special coverage approval title
*/
IN2_23: Hl7Field;
/**
* Non-covered insurance code
*/
IN2_24: Hl7Field;
/**
* Payor ID
*/
IN2_25: Hl7Field;
/**
* Payor subscriber ID
*/
IN2_26: Hl7Field;
/**
* Eligibility source
*/
IN2_27: Hl7Field;
/**
* Room coverage type / amount
*/
IN2_28: Hl7Field;
/**
* Policy type / amount
*/
IN2_29: Hl7Field;
/**
* Daily deductible
*/
IN2_30: Hl7Field;
}