UNPKG

@dotbase/hl7-v2-message

Version:

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

71 lines (70 loc) 1.96 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class PSS_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Provider Product/Service Section Number */ this.PSS_1 = { index: 0, identifier: "PSS_1", description: "Provider Product/Service Section Number", length: 73, isOptional: false, isRepeatable: false, value: "", }; /** * Payer Product/Service Section Number */ this.PSS_2 = { index: 1, identifier: "PSS_2", description: "Payer Product/Service Section Number", length: 73, isOptional: true, isRepeatable: false, value: "", }; /** * Product/Service Section Sequence Number */ this.PSS_3 = { index: 2, identifier: "PSS_3", description: "Product/Service Section Sequence Number", length: 4, isOptional: false, isRepeatable: false, value: "", }; /** * Billed Amount */ this.PSS_4 = { index: 3, identifier: "PSS_4", description: "Billed Amount", length: 254, isOptional: false, isRepeatable: false, value: "", }; /** * Section Description or Heading */ this.PSS_5 = { index: 4, identifier: "PSS_5", description: "Section Description or Heading", length: 254, isOptional: false, isRepeatable: false, value: "", }; } } exports.default = PSS_Fields;