@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 396 B
TypeScript
/**
* Indicates the type of entity who initiated an event, e.g. modification or cancellation of an order or quote.
* tag: 2830
* @readonly
* @enum {string} (char)
*/
export declare enum EventInitiatorType {
/** Customer or client */
CustomerOrClient = "C",
/** Exchange or execution venue */
ExchangeOrExecutionVenue = "E",
/** Firm or broker */
FirmOrBroker = "F"
}