UNPKG

@dotbase/hl7-v2-message

Version:

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

83 lines (82 loc) 2.17 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class PTH_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Action Code */ this.PTH_1 = { index: 0, identifier: "PTH_1", description: "Action Code", length: 2, isOptional: false, isRepeatable: false, value: "", }; /** * Pathway ID */ this.PTH_2 = { index: 1, identifier: "PTH_2", description: "Pathway ID", length: 80, isOptional: false, isRepeatable: false, value: "", }; /** * Pathway Instance ID */ this.PTH_3 = { index: 2, identifier: "PTH_3", description: "Pathway Instance ID", length: 60, isOptional: false, isRepeatable: false, value: "", }; /** * Pathway Established Date/Time */ this.PTH_4 = { index: 3, identifier: "PTH_4", description: "Pathway Established Date/Time", length: 26, isOptional: false, isRepeatable: false, value: "", }; /** * Pathway Life Cycle Status */ this.PTH_5 = { index: 4, identifier: "PTH_5", description: "Pathway Life Cycle Status", length: 80, isOptional: true, isRepeatable: false, value: "", }; /** * Change Pathway Life Cycle Status Date/Time */ this.PTH_6 = { index: 5, identifier: "PTH_6", description: "Change Pathway Life Cycle Status Date/Time", length: 26, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = PTH_Fields;