UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 586 B
/** * Status of the transfer. * - Tag: 2442 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TransferStatus: Readonly<{ /** Received */ readonly Received: 0; /** Rejected by intermediary */ readonly RejectedByIntermediary: 1; /** Accept pending */ readonly AcceptPending: 2; /** Accepted */ readonly Accepted: 3; /** Declined */ readonly Declined: 4; /** Cancelled */ readonly Cancelled: 5; }>; export type TransferStatus = (typeof TransferStatus)[keyof typeof TransferStatus];