UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 460 B
/** * Indicates that message may contain information that has been sent under another sequence number. * - Tag: 97 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const PossResend: Readonly<{ /** Original Transmission */ readonly OriginalTransmission: "N"; /** Possible Resend */ readonly PossibleResend: "Y"; }>; export type PossResend = (typeof PossResend)[keyof typeof PossResend];