fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
16 lines (15 loc) • 394 B
TypeScript
/**
* Indication that a block trade will be allocated.
* - Tag: 1980
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const BlockTrdAllocIndicator: Readonly<{
/** Block to be allocated */
readonly BlockToBeAllocated: 0;
/** Block not to be allocated */
readonly BlockNotToBeAllocated: 1;
readonly AllocatedTrade: 2;
}>;