@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 315 B
TypeScript
/**
* Used to indicate the status of the trade match report submission.
* tag: 1896
* @readonly
* @enum {number} (int)
*/
export declare enum TradeMatchAckStatus {
/** Received, not yet processed */
ReceivedNotProcessed = 0,
/** Accepted */
Accepted = 1,
/** Rejected */
Rejected = 2
}