UNPKG

@dotbase/hl7-v2-message

Version:

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

47 lines (46 loc) 1.24 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class ECR_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Command Response */ this.ECR_1 = { index: 0, identifier: "ECR_1", description: "Command Response", length: 250, isOptional: false, isRepeatable: false, value: "", }; /** * Date/Time Completed */ this.ECR_2 = { index: 1, identifier: "ECR_2", description: "Date/Time Completed", length: 24, isOptional: false, isRepeatable: false, value: "", }; /** * Command Response Parameters */ this.ECR_3 = { index: 2, identifier: "ECR_3", description: "Command Response Parameters", length: 65536, isOptional: true, isRepeatable: true, value: "", }; } } exports.default = ECR_Fields;