UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

18 lines (17 loc) 463 B
/** * The status of this trade with respect to matching or comparison. * - Tag: 573 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const MatchStatus: Readonly<{ /** Compared, matched or affirmed */ readonly Compared: '0'; /** Uncompared, unmatched, or unaffirmed */ readonly Uncompared: '1'; /** Advisory or alert */ readonly AdvisoryOrAlert: '2'; readonly Mismatched: '3'; }>;