UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 496 B
/** * Indicates whether or not automatic booking can occur. * - Tag: 589 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const DayBookingInst: Readonly<{ /** Can trigger booking without reference to the order initiator ("auto") */ readonly Auto: '0'; /** Speak with order initiator before booking ("speak first") */ readonly SpeakWithOrderInitiatorBeforeBooking: '1'; /** Accumulate */ readonly Accumulate: '2'; }>;