@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
131 lines (130 loc) • 3.44 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class ILT_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set Id - ILT
*/
this.ILT_1 = {
index: 0,
identifier: "ILT_1",
description: "Set Id - ILT",
length: 4,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Inventory Lot Number
*/
this.ILT_2 = {
index: 1,
identifier: "ILT_2",
description: "Inventory Lot Number",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Inventory Expiration Date
*/
this.ILT_3 = {
index: 2,
identifier: "ILT_3",
description: "Inventory Expiration Date",
length: 24,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inventory Received Date
*/
this.ILT_4 = {
index: 3,
identifier: "ILT_4",
description: "Inventory Received Date",
length: 24,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inventory Received Quantity
*/
this.ILT_5 = {
index: 4,
identifier: "ILT_5",
description: "Inventory Received Quantity",
length: 12,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inventory Received Quantity Unit
*/
this.ILT_6 = {
index: 5,
identifier: "ILT_6",
description: "Inventory Received Quantity Unit",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inventory Received Item Cost
*/
this.ILT_7 = {
index: 6,
identifier: "ILT_7",
description: "Inventory Received Item Cost",
length: 12,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inventory On Hand Date
*/
this.ILT_8 = {
index: 7,
identifier: "ILT_8",
description: "Inventory On Hand Date",
length: 24,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inventory On Hand Quantity
*/
this.ILT_9 = {
index: 8,
identifier: "ILT_9",
description: "Inventory On Hand Quantity",
length: 12,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inventory On Hand Quantity Unit
*/
this.ILT_10 = {
index: 9,
identifier: "ILT_10",
description: "Inventory On Hand Quantity Unit",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = ILT_Fields;