UNPKG

@dotbase/hl7-v2-message

Version:

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

131 lines (130 loc) 3.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class AUT_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Authorizing Payor, Plan ID */ this.AUT_1 = { index: 0, identifier: "AUT_1", description: "Authorizing Payor, Plan ID", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Authorizing Payor, Company ID */ this.AUT_2 = { index: 1, identifier: "AUT_2", description: "Authorizing Payor, Company ID", length: 250, isOptional: false, isRepeatable: false, value: "", }; /** * Authorizing Payor, Company Name */ this.AUT_3 = { index: 2, identifier: "AUT_3", description: "Authorizing Payor, Company Name", length: 45, isOptional: true, isRepeatable: false, value: "", }; /** * Authorization Effective Date */ this.AUT_4 = { index: 3, identifier: "AUT_4", description: "Authorization Effective Date", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Authorization Expiration Date */ this.AUT_5 = { index: 4, identifier: "AUT_5", description: "Authorization Expiration Date", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Authorization Identifier */ this.AUT_6 = { index: 5, identifier: "AUT_6", description: "Authorization Identifier", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * Reimbursement Limit */ this.AUT_7 = { index: 6, identifier: "AUT_7", description: "Reimbursement Limit", length: 25, isOptional: true, isRepeatable: false, value: "", }; /** * Requested Number of Treatments */ this.AUT_8 = { index: 7, identifier: "AUT_8", description: "Requested Number of Treatments", length: 2, isOptional: true, isRepeatable: false, value: "", }; /** * Authorized Number of Treatments */ this.AUT_9 = { index: 8, identifier: "AUT_9", description: "Authorized Number of Treatments", length: 2, isOptional: true, isRepeatable: false, value: "", }; /** * Process Date */ this.AUT_10 = { index: 9, identifier: "AUT_10", description: "Process Date", length: 24, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = AUT_Fields;