fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 503 B
TypeScript
/**
* Reason for order being unaffected by mass action even though it belongs to the orders covered by MassActionScope(1374).
* - Tag: 2677
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const NotAffectedReason: Readonly<{
/** Order suspended */
readonly OrderSuspended: 0;
/** Instrument suspended */
readonly InstrumentSuspended: 1;
}>;
export type NotAffectedReason = (typeof NotAffectedReason)[keyof typeof NotAffectedReason];