UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 415 B
/** * Method under which assignment was conducted * - Tag: 1049 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const InstrmtAssignmentMethod: Readonly<{ /** Pro rata */ readonly ProRata: "P"; /** Random */ readonly Random: "R"; }>; export type InstrmtAssignmentMethod = (typeof InstrmtAssignmentMethod)[keyof typeof InstrmtAssignmentMethod];