UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 284 B
/** * Specifies the direction of the message. * - Tag: 385 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const MsgDirection: Readonly<{ /** Receive */ readonly Receive: 'R'; /** Send */ readonly Send: 'S'; }>;