/**
 * 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];
