UNPKG

@dotbase/hl7-v2-message

Version:

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

95 lines (94 loc) 2.36 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class RQ1_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Anticipated Price */ this.RQ1_1 = { index: 0, identifier: "RQ1_1", description: "Anticipated Price", length: 10, isOptional: true, isRepeatable: false, value: "", }; /** * Manufacturer ID */ this.RQ1_2 = { index: 1, identifier: "RQ1_2", description: "Manufacturer ID", length: 60, isOptional: true, isRepeatable: false, value: "", }; /** * Manufacturers Catalog */ this.RQ1_3 = { index: 2, identifier: "RQ1_3", description: "Manufacturers Catalog", length: 16, isOptional: true, isRepeatable: false, value: "", }; /** * Vendor ID */ this.RQ1_4 = { index: 3, identifier: "RQ1_4", description: "Vendor ID", length: 60, isOptional: true, isRepeatable: false, value: "", }; /** * Vendor Catalog */ this.RQ1_5 = { index: 4, identifier: "RQ1_5", description: "Vendor Catalog", length: 16, isOptional: true, isRepeatable: false, value: "", }; /** * Taxable */ this.RQ1_6 = { index: 5, identifier: "RQ1_6", description: "Taxable", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Substitute Allowed */ this.RQ1_7 = { index: 6, identifier: "RQ1_7", description: "Substitute Allowed", length: 1, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = RQ1_Fields;