UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 384 B
/** * Indicates how the minimum quantity should be applied when executing the order. * - Tag: 1822 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MinQtyMethod: Readonly<{ /** Once (applies only to first execution) */ readonly Once: 1; /** Multiple (applies to every execution) */ readonly Multiple: 2; }>;