@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
29 lines (28 loc) • 605 B
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class PSG_Fields extends Hl7Fields {
/**
* Provider Product/Service Group Number
*/
PSG_1: Hl7Field;
/**
* Payer Product/Service Group Number
*/
PSG_2: Hl7Field;
/**
* Product/Service Group Sequence Number
*/
PSG_3: Hl7Field;
/**
* Adjudicate as Group
*/
PSG_4: Hl7Field;
/**
* Product/Service Group Billed Amount
*/
PSG_5: Hl7Field;
/**
* Product/Service Group Description
*/
PSG_6: Hl7Field;
}