@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
61 lines (60 loc) • 1.12 kB
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class PSH_Fields extends Hl7Fields {
/**
* Report Type
*/
PSH_1: Hl7Field;
/**
* Report Form Identifier
*/
PSH_2: Hl7Field;
/**
* Report Date
*/
PSH_3: Hl7Field;
/**
* Report Interval Start Date
*/
PSH_4: Hl7Field;
/**
* Report Interval End Date
*/
PSH_5: Hl7Field;
/**
* Quantity Manufactured
*/
PSH_6: Hl7Field;
/**
* Quantity Distributed
*/
PSH_7: Hl7Field;
/**
* Quantity Distributed Method
*/
PSH_8: Hl7Field;
/**
* Quantity Distributed Comment
*/
PSH_9: Hl7Field;
/**
* Quantity in Use
*/
PSH_10: Hl7Field;
/**
* Quantity in Use Method
*/
PSH_11: Hl7Field;
/**
* Quantity in Use Comment
*/
PSH_12: Hl7Field;
/**
* Number of Product Experience Reports Filed by Facility
*/
PSH_13: Hl7Field;
/**
* Number of Product Experience Reports Filed by Distributor
*/
PSH_14: Hl7Field;
}