@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
14 lines (13 loc) • 309 B
TypeScript
/**
* Indication that a block trade will be allocated.
* tag: 1980
* @readonly
* @enum {number} (int)
*/
export declare enum BlockTrdAllocIndicator {
/** Block to be allocated */
BlockToBeAllocated = 0,
/** Block not to be allocated */
BlockNotToBeAllocated = 1,
AllocatedTrade = 2
}