fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 384 B
TypeScript
/**
* The level of response requested from receiver of mass order messages. A default value should be bilaterally agreed.
* - Tag: 2427
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const OrderResponseLevel: Readonly<{
readonly NoAck: 0;
readonly MinimumAck: 1;
readonly AckEach: 2;
readonly SummaryAck: 3;
}>;