UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 454 B
/** * QuoteType * - Tag: 537 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const QuoteType: Readonly<{ /** Indicative */ readonly Indicative: 0; /** Tradeable */ readonly Tradeable: 1; /** Restricted tradeable */ readonly RestrictedTradeable: 2; /** Counter (tradeable) */ readonly Counter: 3; /** Initially tradeable */ readonly InitiallyTradeable: 4; }>;