@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
59 lines (58 loc) • 1.52 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class EQL_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Query Tag
*/
this.EQL_1 = {
index: 0,
identifier: "EQL_1",
description: "Query Tag",
length: 32,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Query/Response Format Code
*/
this.EQL_2 = {
index: 1,
identifier: "EQL_2",
description: "Query/Response Format Code",
length: 1,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* EQL Query Name
*/
this.EQL_3 = {
index: 2,
identifier: "EQL_3",
description: "EQL Query Name",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* EQL Query Statement
*/
this.EQL_4 = {
index: 3,
identifier: "EQL_4",
description: "EQL Query Statement",
length: 4096,
isOptional: false,
isRepeatable: false,
value: "",
};
}
}
exports.default = EQL_Fields;