fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 547 B
TypeScript
/**
* Indicates that the Sequence Reset message is replacing administrative or application messages which will not be resent.
* - Tag: 123
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const GapFillFlag: Readonly<{
/** Sequence Reset, Ignore Msg Seq Num (N/A For FIXML - Not Used) */
readonly SequenceReset: "N";
/** Gap Fill Message, Msg Seq Num Field Valid */
readonly GapFillMessage: "Y";
}>;
export type GapFillFlag = (typeof GapFillFlag)[keyof typeof GapFillFlag];