@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
59 lines (58 loc) • 1.52 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class STZ_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Sterilization Type
*/
this.STZ_1 = {
index: 0,
identifier: "STZ_1",
description: "Sterilization Type",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Sterilization Cycle
*/
this.STZ_2 = {
index: 1,
identifier: "STZ_2",
description: "Sterilization Cycle",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Maintenance Cycle
*/
this.STZ_3 = {
index: 2,
identifier: "STZ_3",
description: "Maintenance Cycle",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Maintenance Type
*/
this.STZ_4 = {
index: 3,
identifier: "STZ_4",
description: "Maintenance Type",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = STZ_Fields;