UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 546 B
/** * Type of trade attribute defining a subgroup in an allocation group. * - Tag: 2980 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocGroupSubQtyType: Readonly<{ /** Trade type */ readonly TradeType: 1; /** Trade publication indicator */ readonly TradePublicationIndicator: 2; /** Order handling instruction */ readonly OrderHandlingInstruction: 3; }>; export type AllocGroupSubQtyType = (typeof AllocGroupSubQtyType)[keyof typeof AllocGroupSubQtyType];