@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
97 lines (96 loc) • 1.64 kB
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class ARQ_Fields extends Hl7Fields {
/**
* Placer Appointment ID
*/
ARQ_1: Hl7Field;
/**
* Filler Appointment ID
*/
ARQ_2: Hl7Field;
/**
* Occurrence Number
*/
ARQ_3: Hl7Field;
/**
* Placer Group Number
*/
ARQ_4: Hl7Field;
/**
* Schedule ID
*/
ARQ_5: Hl7Field;
/**
* Request Event Reason
*/
ARQ_6: Hl7Field;
/**
* Appointment Reason
*/
ARQ_7: Hl7Field;
/**
* Appointment Type
*/
ARQ_8: Hl7Field;
/**
* Appointment Duration
*/
ARQ_9: Hl7Field;
/**
* Appointment Duration Units
*/
ARQ_10: Hl7Field;
/**
* Requested Start Date/Time Range
*/
ARQ_11: Hl7Field;
/**
* Priority-ARQ
*/
ARQ_12: Hl7Field;
/**
* Repeating Interval
*/
ARQ_13: Hl7Field;
/**
* Repeating Interval Duration
*/
ARQ_14: Hl7Field;
/**
* Placer Contact Person
*/
ARQ_15: Hl7Field;
/**
* Placer Contact Phone Number
*/
ARQ_16: Hl7Field;
/**
* Placer Contact Address
*/
ARQ_17: Hl7Field;
/**
* Placer Contact Location
*/
ARQ_18: Hl7Field;
/**
* Entered by Person
*/
ARQ_19: Hl7Field;
/**
* Entered by Phone Number
*/
ARQ_20: Hl7Field;
/**
* Entered by Location
*/
ARQ_21: Hl7Field;
/**
* Parent Placer Appointment ID
*/
ARQ_22: Hl7Field;
/**
* Parent Filler Appointment ID
*/
ARQ_23: Hl7Field;
}