UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 398 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; }>;