fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 578 B
TypeScript
/**
* Indicates whether a message decrements the number of outstanding requests, e.g. one where ThrottleType = Outstanding Requests.
* - Tag: 1686
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ThrottleCountIndicator: Readonly<{
/** Outstanding requests unchanged */
readonly OutstandingRequestsUnchanged: 0;
/** Outstanding requests decreased */
readonly OutstandingRequestsDecreased: 1;
}>;
export type ThrottleCountIndicator = (typeof ThrottleCountIndicator)[keyof typeof ThrottleCountIndicator];