fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
21 lines (20 loc) • 509 B
TypeScript
/**
* Request result of mass order request.
* - Tag: 2426
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MassOrderRequestResult: Readonly<{
/** Successful */
readonly Successful: 0;
/** Response level not supported */
readonly ResponseLevelNotSupported: 1;
/** Invalid market */
readonly InvalidMarket: 2;
/** Invalid market segment */
readonly InvalidMarketSegment: 3;
/** Other */
readonly Other: 99;
}>;