UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

16 lines (15 loc) 347 B
/** * Used to indicate the status of a post-trade payment. * - Tag: 2823 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PostTradePaymentStatus: Readonly<{ readonly New: 0; readonly Initiated: 1; readonly Pending: 2; readonly Confirmed: 3; readonly Rejected: 4; }>;