UNPKG

@dotbase/hl7-v2-message

Version:

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

107 lines (106 loc) 2.81 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class IPR_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * IPR Identifier */ this.IPR_1 = { index: 0, identifier: "IPR_1", description: "IPR Identifier", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Provider Cross Reference Identifier */ this.IPR_2 = { index: 1, identifier: "IPR_2", description: "Provider Cross Reference Identifier", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Payer Cross Reference Identifier */ this.IPR_3 = { index: 2, identifier: "IPR_3", description: "Payer Cross Reference Identifier", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * IPR Status */ this.IPR_4 = { index: 3, identifier: "IPR_4", description: "IPR Status", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * IPR Date/Time */ this.IPR_5 = { index: 4, identifier: "IPR_5", description: "IPR Date/Time", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * Adjudicated/Paid Amount */ this.IPR_6 = { index: 5, identifier: "IPR_6", description: "Adjudicated/Paid Amount", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * Expected Payment Date/Time */ this.IPR_7 = { index: 6, identifier: "IPR_7", description: "Expected Payment Date/Time", length: undefined, isOptional: true, isRepeatable: false, value: "", }; /** * IPR Checksum */ this.IPR_8 = { index: 7, identifier: "IPR_8", description: "IPR Checksum", length: undefined, isOptional: false, isRepeatable: false, value: "", }; } } exports.default = IPR_Fields;