UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 673 B
/** * 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; }>;