fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 480 B
TypeScript
/**
* Indicates the reason a Trading Session Status Request was rejected.
* - Tag: 567
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradSesStatusRejReason: Readonly<{
/** Unknown or invalid TradingSessionID */
readonly UnknownOrInvalidTradingSessionID: 1;
/** Other */
readonly Other: 99;
}>;
export type TradSesStatusRejReason = (typeof TradSesStatusRejReason)[keyof typeof TradSesStatusRejReason];