@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
47 lines (46 loc) • 1.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class BTS_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Batch Message Count
*/
this.BTS_1 = {
index: 0,
identifier: "BTS_1",
description: "Batch Message Count",
length: 10,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Batch Comment
*/
this.BTS_2 = {
index: 1,
identifier: "BTS_2",
description: "Batch Comment",
length: 80,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Batch Totals
*/
this.BTS_3 = {
index: 2,
identifier: "BTS_3",
description: "Batch Totals",
length: 100,
isOptional: true,
isRepeatable: true,
value: "",
};
}
}
exports.default = BTS_Fields;