@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
113 lines (112 loc) • 1.76 kB
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class PID_Fields extends Hl7Fields {
/**
* Set ID - Patient ID
*/
PID_1: Hl7Field;
/**
* Patient ID
*/
PID_2: Hl7Field;
/**
* Patient ID
*/
PID_3: Hl7Field;
/**
* Alternate Patient ID
*/
PID_4: Hl7Field;
/**
* Patient Name
*/
PID_5: Hl7Field;
/**
* Mothers Maiden Name
*/
PID_6: Hl7Field;
/**
* Date of Birth
*/
PID_7: Hl7Field;
/**
* Sex
*/
PID_8: Hl7Field;
/**
* Patient Alias
*/
PID_9: Hl7Field;
/**
* Race
*/
PID_10: Hl7Field;
/**
* Patient Address
*/
PID_11: Hl7Field;
/**
* County code
*/
PID_12: Hl7Field;
/**
* Phone Number - Home
*/
PID_13: Hl7Field;
/**
* Phone Number - Business
*/
PID_14: Hl7Field;
/**
* Language - Patient
*/
PID_15: Hl7Field;
/**
* Marital Status
*/
PID_16: Hl7Field;
/**
* Religion
*/
PID_17: Hl7Field;
/**
* Patient Account Number
*/
PID_18: Hl7Field;
/**
* Social security number - patient
*/
PID_19: Hl7Field;
/**
* Drivers license number - patient
*/
PID_20: Hl7Field;
/**
* Mothers Identifier
*/
PID_21: Hl7Field;
/**
* Ethnic Group
*/
PID_22: Hl7Field;
/**
* Birth Place
*/
PID_23: Hl7Field;
/**
* Multiple Birth Indicator
*/
PID_24: Hl7Field;
/**
* Birth Order
*/
PID_25: Hl7Field;
/**
* Citizenship
*/
PID_26: Hl7Field;
/**
* Veterans Military Status
*/
PID_27: Hl7Field;
}