@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
69 lines (68 loc) • 1.24 kB
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class REL_Fields extends Hl7Fields {
/**
* Set ID -REL
*/
REL_1: Hl7Field;
/**
* Relationship Type
*/
REL_2: Hl7Field;
/**
* This Relationship Instance Identifier
*/
REL_3: Hl7Field;
/**
* Source Information Instance Identifier
*/
REL_4: Hl7Field;
/**
* Target Information Instance Identifier
*/
REL_5: Hl7Field;
/**
* Asserting Entity Instance ID
*/
REL_6: Hl7Field;
/**
* Asserting Person
*/
REL_7: Hl7Field;
/**
* Asserting Organization
*/
REL_8: Hl7Field;
/**
* Assertor Address
*/
REL_9: Hl7Field;
/**
* Assertor Contact
*/
REL_10: Hl7Field;
/**
* Assertion Date Range
*/
REL_11: Hl7Field;
/**
* Negation Indicator
*/
REL_12: Hl7Field;
/**
* Certainty of Relationship
*/
REL_13: Hl7Field;
/**
* Priority No
*/
REL_14: Hl7Field;
/**
* Priority Sequence No (rel preference for consideration)
*/
REL_15: Hl7Field;
/**
* Separability Indicator
*/
REL_16: Hl7Field;
}