@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
101 lines (100 loc) • 1.65 kB
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class ORC_Fields extends Hl7Fields {
/**
* Order Control
*/
ORC_1: Hl7Field;
/**
* Placer Order Number
*/
ORC_2: Hl7Field;
/**
* Filler Order Number
*/
ORC_3: Hl7Field;
/**
* Placer Group Number
*/
ORC_4: Hl7Field;
/**
* Order Status
*/
ORC_5: Hl7Field;
/**
* Response Flag
*/
ORC_6: Hl7Field;
/**
* Quantity/Timing
*/
ORC_7: Hl7Field;
/**
* Parent Order
*/
ORC_8: Hl7Field;
/**
* Date/Time of Transaction
*/
ORC_9: Hl7Field;
/**
* Entered By
*/
ORC_10: Hl7Field;
/**
* Verified By
*/
ORC_11: Hl7Field;
/**
* Ordering Provider
*/
ORC_12: Hl7Field;
/**
* Enterer s Location
*/
ORC_13: Hl7Field;
/**
* Call Back Phone Number
*/
ORC_14: Hl7Field;
/**
* Order Effective Date/Time
*/
ORC_15: Hl7Field;
/**
* Order Control Code Reason
*/
ORC_16: Hl7Field;
/**
* Entering Organization
*/
ORC_17: Hl7Field;
/**
* Entering Device
*/
ORC_18: Hl7Field;
/**
* Action By
*/
ORC_19: Hl7Field;
/**
* Advanced Beneficiary Notice Code
*/
ORC_20: Hl7Field;
/**
* Ordering Facility Name
*/
ORC_21: Hl7Field;
/**
* Ordering Facility Address
*/
ORC_22: Hl7Field;
/**
* Ordering Facility Phone Number
*/
ORC_23: Hl7Field;
/**
* Ordering Provider Address
*/
ORC_24: Hl7Field;
}