@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
17 lines (16 loc) • 326 B
TypeScript
/**
* Specifies the method under which a trade quantity was allocated.
* tag: 1002
* @readonly
* @enum {number} (int)
*/
export declare enum AllocMethod {
/** Automatic */
Automatic = 1,
/** Guarantor */
Guarantor = 2,
/** Manual */
Manual = 3,
/** Broker assigned */
BrokerAssigned = 4
}