UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 383 B
/** * Specifies the affirmation status of the confirmation. * - Tag: 940 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AffirmStatus: Readonly<{ /** Received */ readonly Received: 1; /** Confirm rejected, i.e. not affirmed */ readonly ConfirmRejected: 2; /** Affirmed */ readonly Affirmed: 3; }>;