UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

16 lines (15 loc) 515 B
/** * Identifies beginning of new message and session protocol version by means of a session profile identifier (see FIX Session Layer for details). ALWAYS FIRST FIELD IN MESSAGE. (Always unencrypted). * - Tag: 8 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const BeginString: Readonly<{ /** Session profile FIX.4.2 */ readonly FIX42: 'FIX.4.2'; /** Session profile FIX4 */ readonly FIX44: 'FIX.4.4'; readonly FIXT11: 'FIXT.1.1'; }>;