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.46 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class URD_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * R/U Date/Time */ this.URD_1 = { index: 0, identifier: "URD_1", description: "R/U Date/Time", length: 26, isOptional: true, isRepeatable: false, value: "", }; /** * Report Priority */ this.URD_2 = { index: 1, identifier: "URD_2", description: "Report Priority", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * R/U Who Subject Definition */ this.URD_3 = { index: 2, identifier: "URD_3", description: "R/U Who Subject Definition", length: 250, isOptional: false, isRepeatable: true, value: "", }; /** * R/U What Subject Definition */ this.URD_4 = { index: 3, identifier: "URD_4", description: "R/U What Subject Definition", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * R/U What Department Code */ this.URD_5 = { index: 4, identifier: "URD_5", description: "R/U What Department Code", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * R/U Display/Print Locations */ this.URD_6 = { index: 5, identifier: "URD_6", description: "R/U Display/Print Locations", length: 20, isOptional: true, isRepeatable: true, value: "", }; /** * R/U Results Level */ this.URD_7 = { index: 6, identifier: "URD_7", description: "R/U Results Level", length: 1, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = URD_Fields;