@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
16 lines (15 loc) • 370 B
TypeScript
/**
* The status of this trade with respect to matching or comparison.
* tag: 573
* @readonly
* @enum {string} (char)
*/
export declare enum MatchStatus {
/** Compared, matched or affirmed */
Compared = "0",
/** Uncompared, unmatched, or unaffirmed */
Uncompared = "1",
/** Advisory or alert */
AdvisoryOrAlert = "2",
Mismatched = "3"
}