UNPKG

@dotbase/hl7-v2-message

Version:

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

47 lines (46 loc) 1.19 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class ODT_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Tray Type */ this.ODT_1 = { index: 0, identifier: "ODT_1", description: "Tray Type", length: 60, isOptional: false, isRepeatable: false, value: "", }; /** * Service Period */ this.ODT_2 = { index: 1, identifier: "ODT_2", description: "Service Period", length: 60, isOptional: true, isRepeatable: false, value: "", }; /** * Text Instruction */ this.ODT_3 = { index: 2, identifier: "ODT_3", description: "Text Instruction", length: 80, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = ODT_Fields;