@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
131 lines (130 loc) • 3.46 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class TQ2_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set ID - TQ2
*/
this.TQ2_1 = {
index: 0,
identifier: "TQ2_1",
description: "Set ID - TQ2",
length: 4,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Sequence/Results Flag
*/
this.TQ2_2 = {
index: 1,
identifier: "TQ2_2",
description: "Sequence/Results Flag",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Related Placer Number
*/
this.TQ2_3 = {
index: 2,
identifier: "TQ2_3",
description: "Related Placer Number",
length: 22,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Related Filler Number
*/
this.TQ2_4 = {
index: 3,
identifier: "TQ2_4",
description: "Related Filler Number",
length: 22,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Related Placer Group Number
*/
this.TQ2_5 = {
index: 4,
identifier: "TQ2_5",
description: "Related Placer Group Number",
length: 22,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Sequence Condition Code
*/
this.TQ2_6 = {
index: 5,
identifier: "TQ2_6",
description: "Sequence Condition Code",
length: 2,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Cyclic Entry/Exit Indicator
*/
this.TQ2_7 = {
index: 6,
identifier: "TQ2_7",
description: "Cyclic Entry/Exit Indicator",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Sequence Condition Time Interval
*/
this.TQ2_8 = {
index: 7,
identifier: "TQ2_8",
description: "Sequence Condition Time Interval",
length: 20,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Cyclic Group Maximum Number of Repeats
*/
this.TQ2_9 = {
index: 8,
identifier: "TQ2_9",
description: "Cyclic Group Maximum Number of Repeats",
length: 10,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Special Service Request Relationship
*/
this.TQ2_10 = {
index: 9,
identifier: "TQ2_10",
description: "Special Service Request Relationship",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = TQ2_Fields;