@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 465 B
TypeScript
/**
* Used to indicate if the side being reported on Trade Capture Report represents a leg of a multileg instrument or a single security.
* tag: 752
* @readonly
* @enum {number} (int)
*/
export declare enum SideMultiLegReportingType {
/** Single Security (default if not specified) */
SingleSecurity = 1,
/** Individual leg of a multileg security */
IndividualLegOfAMultilegSecurity = 2,
/** Multileg Security */
MultilegSecurity = 3
}