UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 321 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'; }>;