UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 496 B
/** * Acknowledgement status of a Quote(35=S) or QuoteCancel(35=Z) message submission. * - Tag: 1865 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const QuoteAckStatus: Readonly<{ /** Received, not yet processed */ readonly ReceivedNotYetProcessed: 0; /** Accepted */ readonly Accepted: 1; /** Rejected */ readonly Rejected: 2; }>; export type QuoteAckStatus = (typeof QuoteAckStatus)[keyof typeof QuoteAckStatus];