UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

22 lines (21 loc) 533 B
/** * Specifies the action to be taken for the given order. * - Tag: 2429 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const OrderEntryAction: Readonly<{ /** Add */ readonly Add: "1"; /** Modify */ readonly Modify: "2"; /** Delete / Cancel */ readonly Delete: "3"; /** Suspend */ readonly Suspend: "4"; /** Release */ readonly Release: "5"; }>; export type OrderEntryAction = (typeof OrderEntryAction)[keyof typeof OrderEntryAction];