fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 653 B
TypeScript
/**
* Code to represent the status of a list order.
* - Tag: 431
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ListOrderStatus: Readonly<{
/** In bidding process */
readonly InBiddingProcess: 1;
/** Received for execution */
readonly ReceivedForExecution: 2;
/** Executing */
readonly Executing: 3;
/** Cancelling */
readonly Cancelling: 4;
/** Alert */
readonly Alert: 5;
/** All Done */
readonly AllDone: 6;
/** Reject */
readonly Reject: 7;
}>;
export type ListOrderStatus = (typeof ListOrderStatus)[keyof typeof ListOrderStatus];