fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 423 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';
}>;