fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 498 B
TypeScript
/**
* Used to indicate the status of the trade match report submission.
* - Tag: 1896
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradeMatchAckStatus: Readonly<{
/** Received, not yet processed */
readonly ReceivedNotProcessed: 0;
/** Accepted */
readonly Accepted: 1;
/** Rejected */
readonly Rejected: 2;
}>;
export type TradeMatchAckStatus = (typeof TradeMatchAckStatus)[keyof typeof TradeMatchAckStatus];