fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 500 B
TypeScript
/**
* Identifies party of trade responsible for exchange reporting.
* - Tag: 113
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const ReportToExch: Readonly<{
/** Indicates the party sending message will report trade */
readonly SenderReports: "N";
/** Indicates the party receiving message must report trade */
readonly ReceiverReports: "Y";
}>;
export type ReportToExch = (typeof ReportToExch)[keyof typeof ReportToExch];