fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 828 B
TypeScript
/**
* Type of matching exception.
* - Tag: 2773
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MatchExceptionType: Readonly<{
/** No matching confirmation */
readonly NoMatchingConfirmation: 0;
/** No matching allocation */
readonly NoMatchingAllocation: 1;
/** Allocation data element missing */
readonly AllocationDataElementMissing: 2;
/** Confirmation data element missing */
readonly ConfirmationDataElementMissing: 3;
/** Data difference not within tolerance */
readonly DataDifferenceNotWithinTolerance: 4;
/** Match within tolerance */
readonly MatchWithinTolerance: 5;
/** Other */
readonly Other: 99;
}>;
export type MatchExceptionType = (typeof MatchExceptionType)[keyof typeof MatchExceptionType];