UNPKG

@dotbase/hl7-v2-message

Version:

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

179 lines (178 loc) 4.49 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class TQ1_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Set ID - TQ1 */ this.TQ1_1 = { index: 0, identifier: "TQ1_1", description: "Set ID - TQ1", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Quantity */ this.TQ1_2 = { index: 1, identifier: "TQ1_2", description: "Quantity", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Repeat Pattern */ this.TQ1_3 = { index: 2, identifier: "TQ1_3", description: "Repeat Pattern", length: undefined, isOptional: true, isRepeatable: true, value: "", }; /** * Explicit Time */ this.TQ1_4 = { index: 3, identifier: "TQ1_4", description: "Explicit Time", length: undefined, isOptional: true, isRepeatable: true, value: "", }; /** * Relative Time and Units */ this.TQ1_5 = { index: 4, identifier: "TQ1_5", description: "Relative Time and Units", length: undefined, isOptional: true, isRepeatable: true, value: "", }; /** * Service Duration */ this.TQ1_6 = { index: 5, identifier: "TQ1_6", description: "Service Duration", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Start date/time */ this.TQ1_7 = { index: 6, identifier: "TQ1_7", description: "Start date/time", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * End date/time */ this.TQ1_8 = { index: 7, identifier: "TQ1_8", description: "End date/time", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Priority */ this.TQ1_9 = { index: 8, identifier: "TQ1_9", description: "Priority", length: undefined, isOptional: true, isRepeatable: true, value: "", }; /** * Condition text */ this.TQ1_10 = { index: 9, identifier: "TQ1_10", description: "Condition text", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Text instruction */ this.TQ1_11 = { index: 10, identifier: "TQ1_11", description: "Text instruction", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Conjunction */ this.TQ1_12 = { index: 11, identifier: "TQ1_12", description: "Conjunction", length: 1, isOptional: false, isRepeatable: false, value: "", }; /** * Occurrence duration */ this.TQ1_13 = { index: 12, identifier: "TQ1_13", description: "Occurrence duration", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Total occurrences */ this.TQ1_14 = { index: 13, identifier: "TQ1_14", description: "Total occurrences", length: undefined, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = TQ1_Fields;