UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 358 B
/** * Indicates the type of Quote Request being generated * - Tag: 303 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const QuoteRequestType: Readonly<{ /** Manual */ readonly Manual: 1; /** Automatic */ readonly Automatic: 2; /** Confirm quote */ readonly ConfirmQuote: 3; }>;