UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

23 lines (22 loc) 795 B
/** * Identifies the event which caused origination of the identifier in RegulatoryTradeID(1903). When more than one event is the cause, use the higher enumeration value. For example, if the identifier is originated due to an allocated trade which was cleared and reported, use the enumeration value 2 (Clearing). * - Tag: 1904 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const RegulatoryTradeIDEvent: Readonly<{ readonly InitialBlockTrade: 0; readonly Allocation: 1; /** Clearing */ readonly Clearing: 2; /** Compression */ readonly Compression: 3; /** Novation */ readonly Novation: 4; /** Termination */ readonly Termination: 5; /** Post-trade valuation */ readonly PostTrdVal: 6; }>;