UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 447 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; }>; export type QuoteRequestType = (typeof QuoteRequestType)[keyof typeof QuoteRequestType];