UNPKG

@dotbase/hl7-v2-message

Version:

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

179 lines (178 loc) 4.79 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class TCC_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Universal Service Identifier */ this.TCC_1 = { index: 0, identifier: "TCC_1", description: "Universal Service Identifier", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Equipment Test Application Identifier */ this.TCC_2 = { index: 1, identifier: "TCC_2", description: "Equipment Test Application Identifier", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Specimen Source */ this.TCC_3 = { index: 2, identifier: "TCC_3", description: "Specimen Source", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Auto-Dilution Factor Default */ this.TCC_4 = { index: 3, identifier: "TCC_4", description: "Auto-Dilution Factor Default", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Rerun Dilution Factor Default */ this.TCC_5 = { index: 4, identifier: "TCC_5", description: "Rerun Dilution Factor Default", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Pre-Dilution Factor Default */ this.TCC_6 = { index: 5, identifier: "TCC_6", description: "Pre-Dilution Factor Default", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Endogenous Content of Pre-Dilution Diluent */ this.TCC_7 = { index: 6, identifier: "TCC_7", description: "Endogenous Content of Pre-Dilution Diluent", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Inventory Limits Warning Level */ this.TCC_8 = { index: 7, identifier: "TCC_8", description: "Inventory Limits Warning Level", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Automatic Rerun Allowed */ this.TCC_9 = { index: 8, identifier: "TCC_9", description: "Automatic Rerun Allowed", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Automatic Repeat Allowed */ this.TCC_10 = { index: 9, identifier: "TCC_10", description: "Automatic Repeat Allowed", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Automatic Reflex Allowed */ this.TCC_11 = { index: 10, identifier: "TCC_11", description: "Automatic Reflex Allowed", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Equipment Dynamic Range */ this.TCC_12 = { index: 11, identifier: "TCC_12", description: "Equipment Dynamic Range", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Units */ this.TCC_13 = { index: 12, identifier: "TCC_13", description: "Units", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Processing Type */ this.TCC_14 = { index: 13, identifier: "TCC_14", description: "Processing Type", length: undefined, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = TCC_Fields;