fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
26 lines (25 loc) • 826 B
TypeScript
/**
* Specified how the TradeCaptureReport(35=AE) should be handled by the respondent.
* - Tag: 1123
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const TradeHandlingInstr: Readonly<{
/** Trade confirmation */
readonly TradeConfirmation: '0';
/** Two-party report */
readonly TwoPartyReport: '1';
/** One-party report for matching */
readonly OnePartyReportForMatching: '2';
readonly OnePartyReportForPassThrough: '3';
/** Automated floor order routing */
readonly AutomatedFloorOrderRouting: '4';
/** Two-party report for claim */
readonly TwoPartyReportForClaim: '5';
/** One-party report */
readonly OnePartyReport: '6';
readonly ThirdPtyRptForPassThrough: '7';
readonly OnePartyReportAutoMatch: '8';
}>;