fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 518 B
TypeScript
/**
* 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;
}>;