@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 325 B
TypeScript
/**
* Indicates if a Cancel/Replace has caused an order to lose book priority.
* tag: 638
* @readonly
* @enum {number} (int)
*/
export declare enum PriorityIndicator {
/** Priority unchanged */
PriorityUnchanged = 0,
/** Lost Priority as result of order change */
LostPriorityAsResultOfOrderChange = 1
}