UNPKG

@dotbase/hl7-v2-message

Version:

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

227 lines (226 loc) 5.61 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class PRC_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Primary Key Value - PRC */ this.PRC_1 = { index: 0, identifier: "PRC_1", description: "Primary Key Value - PRC", length: 250, isOptional: false, isRepeatable: false, value: "", }; /** * Facility ID - PRC */ this.PRC_2 = { index: 1, identifier: "PRC_2", description: "Facility ID - PRC", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Department */ this.PRC_3 = { index: 2, identifier: "PRC_3", description: "Department", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Valid Patient Classes */ this.PRC_4 = { index: 3, identifier: "PRC_4", description: "Valid Patient Classes", length: 1, isOptional: true, isRepeatable: true, value: "", }; /** * Price */ this.PRC_5 = { index: 4, identifier: "PRC_5", description: "Price", length: 12, isOptional: true, isRepeatable: true, value: "", }; /** * Formula */ this.PRC_6 = { index: 5, identifier: "PRC_6", description: "Formula", length: 200, isOptional: true, isRepeatable: true, value: "", }; /** * Minimum Quantity */ this.PRC_7 = { index: 6, identifier: "PRC_7", description: "Minimum Quantity", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Maximum Quantity */ this.PRC_8 = { index: 7, identifier: "PRC_8", description: "Maximum Quantity", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Minimum Price */ this.PRC_9 = { index: 8, identifier: "PRC_9", description: "Minimum Price", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Maximum Price */ this.PRC_10 = { index: 9, identifier: "PRC_10", description: "Maximum Price", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Effective Start Date */ this.PRC_11 = { index: 10, identifier: "PRC_11", description: "Effective Start Date", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Effective End Date */ this.PRC_12 = { index: 11, identifier: "PRC_12", description: "Effective End Date", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Price Override Flag */ this.PRC_13 = { index: 12, identifier: "PRC_13", description: "Price Override Flag", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Billing Category */ this.PRC_14 = { index: 13, identifier: "PRC_14", description: "Billing Category", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Chargeable Flag */ this.PRC_15 = { index: 14, identifier: "PRC_15", description: "Chargeable Flag", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Active/Inactive Flag */ this.PRC_16 = { index: 15, identifier: "PRC_16", description: "Active/Inactive Flag", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Cost */ this.PRC_17 = { index: 16, identifier: "PRC_17", description: "Cost", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Charge On Indicator */ this.PRC_18 = { index: 17, identifier: "PRC_18", description: "Charge On Indicator", length: 1, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = PRC_Fields;