@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 318 B
TypeScript
/**
* Reason for trade aggregation request being rejected.
* tag: 2791
* @readonly
* @enum {number} (int)
*/
export declare enum TradeAggregationRejectReason {
/** Unknown order(s) */
UnknownOrders = 0,
/** Unknown execution/fill(s) */
UnknownExecutionFills = 1,
/** Other */
Other = 99
}