fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
21 lines (20 loc) • 444 B
TypeScript
/**
* 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';
}>;