@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
89 lines (88 loc) • 1.53 kB
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class GT1_Fields extends Hl7Fields {
/**
* Set ID - guarantor
*/
GT1_1: Hl7Field;
/**
* Guarantor number
*/
GT1_2: Hl7Field;
/**
* Guarantor name
*/
GT1_3: Hl7Field;
/**
* Guarantor spouse name
*/
GT1_4: Hl7Field;
/**
* Guarantor address
*/
GT1_5: Hl7Field;
/**
* Guarantor phone number - home
*/
GT1_6: Hl7Field;
/**
* Guarantor phone number - business
*/
GT1_7: Hl7Field;
/**
* Guarantor date of birth
*/
GT1_8: Hl7Field;
/**
* Guarantor sex
*/
GT1_9: Hl7Field;
/**
* Guarantor type
*/
GT1_10: Hl7Field;
/**
* Guarantor relationship
*/
GT1_11: Hl7Field;
/**
* Guarantor social security number
*/
GT1_12: Hl7Field;
/**
* Guarantor date - begin
*/
GT1_13: Hl7Field;
/**
* Guarantor date - end
*/
GT1_14: Hl7Field;
/**
* Guarantor priority
*/
GT1_15: Hl7Field;
/**
* Guarantor employer name
*/
GT1_16: Hl7Field;
/**
* Guarantor employer address
*/
GT1_17: Hl7Field;
/**
* Guarantor employ phone number
*/
GT1_18: Hl7Field;
/**
* Guarantor employee ID number
*/
GT1_19: Hl7Field;
/**
* Guarantor employment status
*/
GT1_20: Hl7Field;
/**
* Guarantor organization
*/
GT1_21: Hl7Field;
}