UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

61 lines (60 loc) 983 B
import Hl7Fields from '../../../model/Hl7Fields'; import Hl7Field from '../../../model/Hl7Field'; export default class MSH_Fields extends Hl7Fields { /** * Field separator */ MSH_1: Hl7Field; /** * Encoding characters */ MSH_2: Hl7Field; /** * Sending application */ MSH_3: Hl7Field; /** * Sending facility */ MSH_4: Hl7Field; /** * Receiving application */ MSH_5: Hl7Field; /** * Receiving facility */ MSH_6: Hl7Field; /** * Date/time of message */ MSH_7: Hl7Field; /** * Security */ MSH_8: Hl7Field; /** * Message type */ MSH_9: Hl7Field; /** * Message control id */ MSH_10: Hl7Field; /** * Processing id */ MSH_11: Hl7Field; /** * Version id */ MSH_12: Hl7Field; /** * Sequence number */ MSH_13: Hl7Field; /** * Continuation pointer */ MSH_14: Hl7Field; }