@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
19 lines (18 loc) • 343 B
TypeScript
/**
* Specifies the action to be taken for the given order.
* tag: 2429
* @readonly
* @enum {string} (char)
*/
export declare enum OrderEntryAction {
/** Add */
Add = "1",
/** Modify */
Modify = "2",
/** Delete / Cancel */
Delete = "3",
/** Suspend */
Suspend = "4",
/** Release */
Release = "5"
}