UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 481 B
/** * Indicates the type of entity who initiated an event, e.g. modification or cancellation of an order or quote. * - Tag: 2830 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const EventInitiatorType: Readonly<{ /** Customer or client */ readonly CustomerOrClient: 'C'; /** Exchange or execution venue */ readonly ExchangeOrExecutionVenue: 'E'; /** Firm or broker */ readonly FirmOrBroker: 'F'; }>;