UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 872 B
/** * Type of report * - Tag: 1426 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ApplReportType: Readonly<{ /** Reset ApplSeqNum to new value specified in ApplNewSeqNum(1399) */ readonly ApplSeqNumReset: 0; /** Reports that the last message has been sent for the ApplIDs Refer to RefApplLastSeqNum(1357) for the application sequence number of the last message. */ readonly LastMessageSent: 1; /** Heartbeat message indicating that Application identified by RefApplID(1355) is still alive. Refer to RefApplLastSeqNum(1357) for the application sequence number of the previous message. */ readonly ApplicationAlive: 2; /** Application message re-send completed. */ readonly ResendComplete: 3; }>; export type ApplReportType = (typeof ApplReportType)[keyof typeof ApplReportType];