@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
57 lines (56 loc) • 907 B
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class NK1_Fields extends Hl7Fields {
/**
* Set ID - Next of Kin
*/
NK1_1: Hl7Field;
/**
* NK Name
*/
NK1_2: Hl7Field;
/**
* Relationship
*/
NK1_3: Hl7Field;
/**
* Address
*/
NK1_4: Hl7Field;
/**
* Phone Number
*/
NK1_5: Hl7Field;
/**
* Business Phone Number
*/
NK1_6: Hl7Field;
/**
* Contact Role
*/
NK1_7: Hl7Field;
/**
* Start Date
*/
NK1_8: Hl7Field;
/**
* End Date
*/
NK1_9: Hl7Field;
/**
* Next of Kin
*/
NK1_10: Hl7Field;
/**
* Next of kin job code / class
*/
NK1_11: Hl7Field;
/**
* Next of Kin Employee Number
*/
NK1_12: Hl7Field;
/**
* Organization Name
*/
NK1_13: Hl7Field;
}