fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 473 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';
}>;