UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 481 B
/** * Specifies the type of action requested * - Tag: 1373 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MassActionType: Readonly<{ /** Suspend orders */ readonly SuspendOrders: 1; /** Release orders from suspension */ readonly ReleaseOrdersFromSuspension: 2; /** Cancel orders */ readonly CancelOrders: 3; }>; export type MassActionType = (typeof MassActionType)[keyof typeof MassActionType];