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.26 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class LRL_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Primary Key Value - LRL */ this.LRL_1 = { index: 0, identifier: "LRL_1", description: "Primary Key Value - LRL", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Segment Action Code */ this.LRL_2 = { index: 1, identifier: "LRL_2", description: "Segment Action Code", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Segment Unique Key */ this.LRL_3 = { index: 2, identifier: "LRL_3", description: "Segment Unique Key", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Location Relationship ID */ this.LRL_4 = { index: 3, identifier: "LRL_4", description: "Location Relationship ID", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Organizational Location Relationship Value */ this.LRL_5 = { index: 4, identifier: "LRL_5", description: "Organizational Location Relationship Value", length: undefined, isOptional: false, isRepeatable: true, value: "", }; /** * Patient Location Relationship Value */ this.LRL_6 = { index: 5, identifier: "LRL_6", description: "Patient Location Relationship Value", length: undefined, isOptional: false, isRepeatable: false, value: "", }; } } exports.default = LRL_Fields;