fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 370 B
TypeScript
/**
* Identifies the type of execution destination for the order.
* - Tag: 2704
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ExDestinationType: Readonly<{
readonly NoRestriction: 0;
readonly TradedOnlyOnTradingVenue: 1;
readonly TradedOnlyOnSI: 2;
readonly TradedOnTradingVenueOrSI: 3;
}>;