fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 429 B
TypeScript
/**
* Defines the lot type assigned to the order.
* - Tag: 1093
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const LotType: Readonly<{
/** Odd Lot */
readonly OddLot: '1';
/** Round Lot */
readonly RoundLot: '2';
/** Block Lot */
readonly BlockLot: '3';
/** Round lot based upon UnitOfMeasure(996) */
readonly RoundLotBasedUpon: '4';
}>;