UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

287 lines (286 loc) 7.37 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class ARQ_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Placer Appointment ID */ this.ARQ_1 = { index: 0, identifier: "ARQ_1", description: "Placer Appointment ID", length: 75, isOptional: false, isRepeatable: false, value: "", }; /** * Filler Appointment ID */ this.ARQ_2 = { index: 1, identifier: "ARQ_2", description: "Filler Appointment ID", length: 75, isOptional: true, isRepeatable: false, value: "", }; /** * Occurrence Number */ this.ARQ_3 = { index: 2, identifier: "ARQ_3", description: "Occurrence Number", length: 5, isOptional: true, isRepeatable: false, value: "", }; /** * Placer Group Number */ this.ARQ_4 = { index: 3, identifier: "ARQ_4", description: "Placer Group Number", length: 22, isOptional: true, isRepeatable: false, value: "", }; /** * Schedule ID */ this.ARQ_5 = { index: 4, identifier: "ARQ_5", description: "Schedule ID", length: 200, isOptional: true, isRepeatable: false, value: "", }; /** * Request Event Reason */ this.ARQ_6 = { index: 5, identifier: "ARQ_6", description: "Request Event Reason", length: 200, isOptional: true, isRepeatable: false, value: "", }; /** * Appointment Reason */ this.ARQ_7 = { index: 6, identifier: "ARQ_7", description: "Appointment Reason", length: 200, isOptional: true, isRepeatable: false, value: "", }; /** * Appointment Type */ this.ARQ_8 = { index: 7, identifier: "ARQ_8", description: "Appointment Type", length: 200, isOptional: true, isRepeatable: false, value: "", }; /** * Appointment Duration */ this.ARQ_9 = { index: 8, identifier: "ARQ_9", description: "Appointment Duration", length: 20, isOptional: true, isRepeatable: false, value: "", }; /** * Appointment Duration Units */ this.ARQ_10 = { index: 9, identifier: "ARQ_10", description: "Appointment Duration Units", length: 200, isOptional: true, isRepeatable: false, value: "", }; /** * Requested Start Date/Time Range */ this.ARQ_11 = { index: 10, identifier: "ARQ_11", description: "Requested Start Date/Time Range", length: 53, isOptional: true, isRepeatable: true, value: "", }; /** * Priority-ARQ */ this.ARQ_12 = { index: 11, identifier: "ARQ_12", description: "Priority-ARQ", length: 5, isOptional: true, isRepeatable: false, value: "", }; /** * Repeating Interval */ this.ARQ_13 = { index: 12, identifier: "ARQ_13", description: "Repeating Interval", length: 100, isOptional: true, isRepeatable: false, value: "", }; /** * Repeating Interval Duration */ this.ARQ_14 = { index: 13, identifier: "ARQ_14", description: "Repeating Interval Duration", length: 5, isOptional: true, isRepeatable: false, value: "", }; /** * Placer Contact Person */ this.ARQ_15 = { index: 14, identifier: "ARQ_15", description: "Placer Contact Person", length: 48, isOptional: false, isRepeatable: true, value: "", }; /** * Placer Contact Phone Number */ this.ARQ_16 = { index: 15, identifier: "ARQ_16", description: "Placer Contact Phone Number", length: 40, isOptional: true, isRepeatable: true, value: "", }; /** * Placer Contact Address */ this.ARQ_17 = { index: 16, identifier: "ARQ_17", description: "Placer Contact Address", length: 106, isOptional: true, isRepeatable: true, value: "", }; /** * Placer Contact Location */ this.ARQ_18 = { index: 17, identifier: "ARQ_18", description: "Placer Contact Location", length: 80, isOptional: true, isRepeatable: false, value: "", }; /** * Entered by Person */ this.ARQ_19 = { index: 18, identifier: "ARQ_19", description: "Entered by Person", length: 48, isOptional: false, isRepeatable: true, value: "", }; /** * Entered by Phone Number */ this.ARQ_20 = { index: 19, identifier: "ARQ_20", description: "Entered by Phone Number", length: 40, isOptional: true, isRepeatable: true, value: "", }; /** * Entered by Location */ this.ARQ_21 = { index: 20, identifier: "ARQ_21", description: "Entered by Location", length: 80, isOptional: true, isRepeatable: false, value: "", }; /** * Parent Placer Appointment ID */ this.ARQ_22 = { index: 21, identifier: "ARQ_22", description: "Parent Placer Appointment ID", length: 75, isOptional: true, isRepeatable: false, value: "", }; /** * Parent Filler Appointment ID */ this.ARQ_23 = { index: 22, identifier: "ARQ_23", description: "Parent Filler Appointment ID", length: 75, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = ARQ_Fields;