@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
71 lines (70 loc) • 1.81 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class VTQ_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Query Tag
*/
this.VTQ_1 = {
index: 0,
identifier: "VTQ_1",
description: "Query Tag",
length: 32,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Query/Response Format Code
*/
this.VTQ_2 = {
index: 1,
identifier: "VTQ_2",
description: "Query/Response Format Code",
length: 1,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* VT Query Name
*/
this.VTQ_3 = {
index: 2,
identifier: "VTQ_3",
description: "VT Query Name",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Virtual Table Name
*/
this.VTQ_4 = {
index: 3,
identifier: "VTQ_4",
description: "Virtual Table Name",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Selection Criteria
*/
this.VTQ_5 = {
index: 4,
identifier: "VTQ_5",
description: "Selection Criteria",
length: 256,
isOptional: true,
isRepeatable: true,
value: "",
};
}
}
exports.default = VTQ_Fields;