UNPKG

@dotbase/hl7-v2-message

Version:

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

35 lines (34 loc) 1.01 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class UAC_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * User Authentication Credential Type Code */ this.UAC_1 = { index: 0, identifier: "UAC_1", description: "User Authentication Credential Type Code", length: undefined, isOptional: false, isRepeatable: false, value: "", }; /** * User Authentication Credential */ this.UAC_2 = { index: 1, identifier: "UAC_2", description: "User Authentication Credential ", length: undefined, isOptional: false, isRepeatable: false, value: "", }; } } exports.default = UAC_Fields;