fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 701 B
TypeScript
/**
* Reason the trade match report submission was rejected.
* - Tag: 1897
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradeMatchRejectReason: Readonly<{
/** Successful */
readonly Successful: 0;
/** Invalid party information */
readonly InvalidPartyInformation: 1;
/** Unknown instrument */
readonly UnknownInstrument: 2;
/** Not authorized to report trades */
readonly Unauthorized: 3;
/** Invalid trade type */
readonly InvalidTradeType: 4;
/** Other */
readonly Other: 99;
}>;
export type TradeMatchRejectReason = (typeof TradeMatchRejectReason)[keyof typeof TradeMatchRejectReason];