fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
27 lines (26 loc) • 882 B
TypeScript
/**
* 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<{
/** New
Payment is awaiting confirmation from the recipient. */
readonly New: 0;
/** Initiated
Payment is confirmed by the recipient and has been scheduled. */
readonly Initiated: 1;
/** Pending
Payment has been instructed to the payment service but status is unknown. */
readonly Pending: 2;
/** Confirmed
Payment is complete and confirmed by the payment service. */
readonly Confirmed: 3;
/** Rejected
Payment was rejected by the payment service. */
readonly Rejected: 4;
}>;
export type PostTradePaymentStatus = (typeof PostTradePaymentStatus)[keyof typeof PostTradePaymentStatus];