fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 308 B
TypeScript
/**
* 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;
}>;