fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 587 B
TypeScript
/**
* Indicates the type of RoutingID (217) specified.
* - Tag: 216
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RoutingType: Readonly<{
/** Target Firm */
readonly TargetFirm: 1;
/** Target List */
readonly TargetList: 2;
/** Block Firm */
readonly BlockFirm: 3;
/** Block List */
readonly BlockList: 4;
/** Target Person */
readonly TargetPerson: 5;
/** Block Person */
readonly BlockPerson: 6;
}>;
export type RoutingType = (typeof RoutingType)[keyof typeof RoutingType];