UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 330 B
/** * Action proposed for an Underlying Instrument instance. * - Tag: 944 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const CollAction: Readonly<{ /** Retain */ readonly Retain: 0; /** Add */ readonly Add: 1; /** Remove */ readonly Remove: 2; }>;