@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
71 lines (70 loc) • 1.79 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class SLT_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Device Number
*/
this.SLT_1 = {
index: 0,
identifier: "SLT_1",
description: "Device Number",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Device Name
*/
this.SLT_2 = {
index: 1,
identifier: "SLT_2",
description: "Device Name",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Lot Number
*/
this.SLT_3 = {
index: 2,
identifier: "SLT_3",
description: "Lot Number ",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Item Identifier
*/
this.SLT_4 = {
index: 3,
identifier: "SLT_4",
description: "Item Identifier",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Bar Code
*/
this.SLT_5 = {
index: 4,
identifier: "SLT_5",
description: "Bar Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = SLT_Fields;