UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

191 lines (190 loc) 5 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class IIM_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Primary Key Value - IIM */ this.IIM_1 = { index: 0, identifier: "IIM_1", description: "Primary Key Value - IIM", length: 250, isOptional: false, isRepeatable: false, value: "", }; /** * Service Item Code */ this.IIM_2 = { index: 1, identifier: "IIM_2", description: "Service Item Code", length: 250, isOptional: false, isRepeatable: false, value: "", }; /** * Inventory Lot Number */ this.IIM_3 = { index: 2, identifier: "IIM_3", description: "Inventory Lot Number", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory Expiration Date */ this.IIM_4 = { index: 3, identifier: "IIM_4", description: "Inventory Expiration Date", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory Manufacturer Name */ this.IIM_5 = { index: 4, identifier: "IIM_5", description: "Inventory Manufacturer Name", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory Location */ this.IIM_6 = { index: 5, identifier: "IIM_6", description: "Inventory Location", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory Received Date */ this.IIM_7 = { index: 6, identifier: "IIM_7", description: "Inventory Received Date", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory Received Quantity */ this.IIM_8 = { index: 7, identifier: "IIM_8", description: "Inventory Received Quantity", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory Received Quantity Unit */ this.IIM_9 = { index: 8, identifier: "IIM_9", description: "Inventory Received Quantity Unit", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory Received Item Cost */ this.IIM_10 = { index: 9, identifier: "IIM_10", description: "Inventory Received Item Cost", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory On Hand Date */ this.IIM_11 = { index: 10, identifier: "IIM_11", description: "Inventory On Hand Date", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory On Hand Quantity */ this.IIM_12 = { index: 11, identifier: "IIM_12", description: "Inventory On Hand Quantity", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory On Hand Quantity Unit */ this.IIM_13 = { index: 12, identifier: "IIM_13", description: "Inventory On Hand Quantity Unit", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Procedure Code */ this.IIM_14 = { index: 13, identifier: "IIM_14", description: "Procedure Code", length: 705, isOptional: true, isRepeatable: false, value: "", }; /** * Procedure Code Modifier */ this.IIM_15 = { index: 14, identifier: "IIM_15", description: "Procedure Code Modifier", length: 705, isOptional: true, isRepeatable: true, value: "", }; } } exports.default = IIM_Fields;