@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
19 lines (18 loc) • 408 B
TypeScript
/**
* Request result of mass order request.
* tag: 2426
* @readonly
* @enum {number} (int)
*/
export declare enum MassOrderRequestResult {
/** Successful */
Successful = 0,
/** Response level not supported */
ResponseLevelNotSupported = 1,
/** Invalid market */
InvalidMarket = 2,
/** Invalid market segment */
InvalidMarketSegment = 3,
/** Other */
Other = 99
}