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.73 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class PSH_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Report Type */ this.PSH_1 = { index: 0, identifier: "PSH_1", description: "Report Type", length: 60, isOptional: false, isRepeatable: false, value: "", }; /** * Report Form Identifier */ this.PSH_2 = { index: 1, identifier: "PSH_2", description: "Report Form Identifier", length: 60, isOptional: true, isRepeatable: false, value: "", }; /** * Report Date */ this.PSH_3 = { index: 2, identifier: "PSH_3", description: "Report Date", length: 26, isOptional: false, isRepeatable: false, value: "", }; /** * Report Interval Start Date */ this.PSH_4 = { index: 3, identifier: "PSH_4", description: "Report Interval Start Date", length: 26, isOptional: true, isRepeatable: false, value: "", }; /** * Report Interval End Date */ this.PSH_5 = { index: 4, identifier: "PSH_5", description: "Report Interval End Date", length: 26, isOptional: true, isRepeatable: false, value: "", }; /** * Quantity Manufactured */ this.PSH_6 = { index: 5, identifier: "PSH_6", description: "Quantity Manufactured", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Quantity Distributed */ this.PSH_7 = { index: 6, identifier: "PSH_7", description: "Quantity Distributed", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Quantity Distributed Method */ this.PSH_8 = { index: 7, identifier: "PSH_8", description: "Quantity Distributed Method", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Quantity Distributed Comment */ this.PSH_9 = { index: 8, identifier: "PSH_9", description: "Quantity Distributed Comment", length: 600, isOptional: true, isRepeatable: false, value: "", }; /** * Quantity in Use */ this.PSH_10 = { index: 9, identifier: "PSH_10", description: "Quantity in Use", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Quantity in Use Method */ this.PSH_11 = { index: 10, identifier: "PSH_11", description: "Quantity in Use Method", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Quantity in Use Comment */ this.PSH_12 = { index: 11, identifier: "PSH_12", description: "Quantity in Use Comment", length: 600, isOptional: true, isRepeatable: false, value: "", }; /** * Number of Product Experience Reports Filed by Facility */ this.PSH_13 = { index: 12, identifier: "PSH_13", description: "Number of Product Experience Reports Filed by Facility", length: 2, isOptional: true, isRepeatable: true, value: "", }; /** * Number of Product Experience Reports Filed by Distributor */ this.PSH_14 = { index: 13, identifier: "PSH_14", description: "Number of Product Experience Reports Filed by Distributor", length: 2, isOptional: true, isRepeatable: true, value: "", }; } } exports.default = PSH_Fields;