UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 610 B
/** * Indicates how the orders being booked and allocated by an AllocationInstruction or AllocationReport message are identified, e.g. by explicit definition in the OrdAllocGrp or ExecAllocGrp components, or not identified explicitly. * - Tag: 857 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocNoOrdersType: Readonly<{ /** Not specified */ readonly NotSpecified: 0; /** Explicit list provided */ readonly ExplicitListProvided: 1; }>; export type AllocNoOrdersType = (typeof AllocNoOrdersType)[keyof typeof AllocNoOrdersType];