@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
21 lines (20 loc) • 345 B
TypeScript
/**
* Code to represent the status type.
* tag: 429
* @readonly
* @enum {number} (int)
*/
export declare enum ListStatusType {
/** Ack */
Ack = 1,
/** Response */
Response = 2,
/** Timed */
Timed = 3,
/** Exec Started */
ExecStarted = 4,
/** All Done */
AllDone = 5,
/** Alert */
Alert = 6
}