@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
107 lines (106 loc) • 2.77 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class SCP_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Number Of Decontamination/Sterilization Devices
*/
this.SCP_1 = {
index: 0,
identifier: "SCP_1",
description: "Number Of Decontamination/Sterilization Devices ",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Labor Calculation Type
*/
this.SCP_2 = {
index: 1,
identifier: "SCP_2",
description: "Labor Calculation Type",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Date Format
*/
this.SCP_3 = {
index: 2,
identifier: "SCP_3",
description: "Date Format",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Device Number
*/
this.SCP_4 = {
index: 3,
identifier: "SCP_4",
description: "Device Number",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Device Name
*/
this.SCP_5 = {
index: 4,
identifier: "SCP_5",
description: "Device Name",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Device Model Name
*/
this.SCP_6 = {
index: 5,
identifier: "SCP_6",
description: "Device Model Name",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Device Type
*/
this.SCP_7 = {
index: 6,
identifier: "SCP_7",
description: "Device Type",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Lot Control
*/
this.SCP_8 = {
index: 7,
identifier: "SCP_8",
description: "Lot Control",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = SCP_Fields;