@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
95 lines (94 loc) • 2.43 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class RCP_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Query Priority
*/
this.RCP_1 = {
index: 0,
identifier: "RCP_1",
description: "Query Priority",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Quantity Limited Request
*/
this.RCP_2 = {
index: 1,
identifier: "RCP_2",
description: "Quantity Limited Request",
length: 10,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Response Modality
*/
this.RCP_3 = {
index: 2,
identifier: "RCP_3",
description: "Response Modality",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Execution and Delivery Time
*/
this.RCP_4 = {
index: 3,
identifier: "RCP_4",
description: "Execution and Delivery Time",
length: 24,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Modify Indicator
*/
this.RCP_5 = {
index: 4,
identifier: "RCP_5",
description: "Modify Indicator",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Sort-by Field
*/
this.RCP_6 = {
index: 5,
identifier: "RCP_6",
description: "Sort-by Field",
length: 512,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Segment group inclusion
*/
this.RCP_7 = {
index: 6,
identifier: "RCP_7",
description: "Segment group inclusion",
length: 256,
isOptional: true,
isRepeatable: true,
value: "",
};
}
}
exports.default = RCP_Fields;