@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 346 B
TypeScript
/**
* Identifies party of trade responsible for exchange reporting.
* tag: 113
* @readonly
* @enum {string} (Boolean)
*/
export declare enum ReportToExch {
/** Indicates the party sending message will report trade */
SenderReports = "N",
/** Indicates the party receiving message must report trade */
ReceiverReports = "Y"
}