fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 768 B
TypeScript
/**
* Indicates the method of execution reporting requested by issuer of the order.
* - Tag: 563
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MultiLegRptTypeReq: Readonly<{
/** Report by mulitleg security only (do not report legs) */
readonly ReportByMulitlegSecurityOnly: 0;
/** Report by multileg security and by instrument legs belonging to the multileg security */
readonly ReportByMultilegSecurityAndInstrumentLegs: 1;
/** Report by instrument legs belonging to the multileg security only (do not report status of multileg security) */
readonly ReportByInstrumentLegsOnly: 2;
}>;
export type MultiLegRptTypeReq = (typeof MultiLegRptTypeReq)[keyof typeof MultiLegRptTypeReq];