fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
29 lines (28 loc) • 851 B
TypeScript
/**
* TradeReportRejectReason
* - Tag: 751
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradeReportRejectReason: Readonly<{
/** Successful (default) */
readonly Successful: 0;
/** Invalid party information */
readonly InvalidPartyInformation: 1;
/** Unknown instrument */
readonly UnknownInstrument: 2;
/** Unauthorized to report trades */
readonly UnauthorizedToReportTrades: 3;
/** Invalid trade type */
readonly InvalidTradeType: 4;
/** Price exceeds current price band */
readonly PriceExceedsCurrentPriceBand: 5;
/** Reference price not available */
readonly ReferencePriceNotAvailable: 6;
/** Notional value exceeds threshold */
readonly NotionalValueExceedsThreshold: 7;
/** Other */
readonly Other: 99;
}>;