UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

18 lines (17 loc) 385 B
/** * Identifies status of the payment report. * - Tag: 2806 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PayReportStatus: Readonly<{ /** Received, not yet processed */ readonly Received: 0; /** Accepted */ readonly Accepted: 1; /** Rejected */ readonly Rejected: 2; readonly Disputed: 3; }>;