UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 404 B
/** * Indicates the method of preallocation. * - Tag: 591 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const PreallocMethod: Readonly<{ /** Pro rata */ readonly ProRata: "0"; /** Do not pro-rata - discuss first */ readonly DoNotProRata: "1"; }>; export type PreallocMethod = (typeof PreallocMethod)[keyof typeof PreallocMethod];