@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
59 lines (58 loc) • 1.53 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class SPR_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Query Tag
*/
this.SPR_1 = {
index: 0,
identifier: "SPR_1",
description: "Query Tag",
length: 32,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Query/Response Format Code
*/
this.SPR_2 = {
index: 1,
identifier: "SPR_2",
description: "Query/Response Format Code",
length: 1,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Stored Procedure Name
*/
this.SPR_3 = {
index: 2,
identifier: "SPR_3",
description: "Stored Procedure Name",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Input Parameter List
*/
this.SPR_4 = {
index: 3,
identifier: "SPR_4",
description: "Input Parameter List",
length: 256,
isOptional: true,
isRepeatable: true,
value: "",
};
}
}
exports.default = SPR_Fields;