@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
17 lines (16 loc) • 336 B
TypeScript
/**
* Defines the lot type assigned to the order.
* tag: 1093
* @readonly
* @enum {string} (char)
*/
export declare enum LotType {
/** Odd Lot */
OddLot = "1",
/** Round Lot */
RoundLot = "2",
/** Block Lot */
BlockLot = "3",
/** Round lot based upon UnitOfMeasure(996) */
RoundLotBasedUpon = "4"
}