@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 307 B
TypeScript
/**
* Indicates how the minimum quantity should be applied when executing the order.
* tag: 1822
* @readonly
* @enum {number} (int)
*/
export declare enum MinQtyMethod {
/** Once (applies only to first execution) */
Once = 1,
/** Multiple (applies to every execution) */
Multiple = 2
}