fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 419 B
TypeScript
/**
* Specifies the method under which a trade quantity was allocated.
* - Tag: 1002
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AllocMethod: Readonly<{
/** Automatic */
readonly Automatic: 1;
/** Guarantor */
readonly Guarantor: 2;
/** Manual */
readonly Manual: 3;
/** Broker assigned */
readonly BrokerAssigned: 4;
}>;