UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 837 B
/** * Quote model type * - Tag: 2403 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const QuoteModelType: Readonly<{ /** Quote entry New quote is entered or previously submitted quote is updated in full without regard to amount executed when a subsequent quote (e.g. with the same QuoteID reference) is received by the Recipient of the quote message. */ readonly QuoteEntry: 1; /** Quote modification Previously submitted quote must be present and is updated, taking into consideration the amount already executed when a subsequent quote (e.g. with the same QuoteID reference) is received by the Recipient of the quote message. */ readonly QuoteModification: 2; }>; export type QuoteModelType = (typeof QuoteModelType)[keyof typeof QuoteModelType];