@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
37 lines (36 loc) • 637 B
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class PRA_Fields extends Hl7Fields {
/**
* Primary Key Value - PRA
*/
PRA_1: Hl7Field;
/**
* Practitioner Group
*/
PRA_2: Hl7Field;
/**
* Practitioner Category
*/
PRA_3: Hl7Field;
/**
* Provider Billing
*/
PRA_4: Hl7Field;
/**
* Specialty
*/
PRA_5: Hl7Field;
/**
* Practitioner ID Numbers
*/
PRA_6: Hl7Field;
/**
* Privileges
*/
PRA_7: Hl7Field;
/**
* Date Entered Practice
*/
PRA_8: Hl7Field;
}