UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 436 B
/** * Status of the trade aggregation request. * - Tag: 2790 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TradeAggregationRequestStatus: Readonly<{ /** Accepted */ readonly Accepted: 0; /** Rejected */ readonly Rejected: 1; }>; export type TradeAggregationRequestStatus = (typeof TradeAggregationRequestStatus)[keyof typeof TradeAggregationRequestStatus];