@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
113 lines (112 loc) • 1.9 kB
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class SCH_Fields extends Hl7Fields {
/**
* Placer Appointment ID
*/
SCH_1: Hl7Field;
/**
* Filler Appointment ID
*/
SCH_2: Hl7Field;
/**
* Occurrence Number
*/
SCH_3: Hl7Field;
/**
* Placer Group Number
*/
SCH_4: Hl7Field;
/**
* Schedule ID
*/
SCH_5: Hl7Field;
/**
* Event Reason
*/
SCH_6: Hl7Field;
/**
* Appointment Reason
*/
SCH_7: Hl7Field;
/**
* Appointment Type
*/
SCH_8: Hl7Field;
/**
* Appointment Duration
*/
SCH_9: Hl7Field;
/**
* Appointment Duration Units
*/
SCH_10: Hl7Field;
/**
* Appointment Timing Quantity
*/
SCH_11: Hl7Field;
/**
* Placer Contact Person
*/
SCH_12: Hl7Field;
/**
* Placer Contact Phone Number
*/
SCH_13: Hl7Field;
/**
* Placer Contact Address
*/
SCH_14: Hl7Field;
/**
* Placer Contact Location
*/
SCH_15: Hl7Field;
/**
* Filler Contact Person
*/
SCH_16: Hl7Field;
/**
* Filler Contact Phone Number
*/
SCH_17: Hl7Field;
/**
* Filler Contact Address
*/
SCH_18: Hl7Field;
/**
* Filler Contact Location
*/
SCH_19: Hl7Field;
/**
* Entered By Person
*/
SCH_20: Hl7Field;
/**
* Entered By Phone Number
*/
SCH_21: Hl7Field;
/**
* Entered By Location
*/
SCH_22: Hl7Field;
/**
* Parent Placer Appointment ID
*/
SCH_23: Hl7Field;
/**
* Parent Filler Appointment ID
*/
SCH_24: Hl7Field;
/**
* Filler Status Code
*/
SCH_25: Hl7Field;
/**
* Placer Order Number
*/
SCH_26: Hl7Field;
/**
* Filler Order Number
*/
SCH_27: Hl7Field;
}