fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 424 B
TypeScript
/**
* Indicates that both sides of the FIX session should reset sequence numbers.
* - Tag: 141
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const ResetSeqNumFlag: Readonly<{
/** No */
readonly No: "N";
/** Yes, reset sequence numbers */
readonly Yes: "Y";
}>;
export type ResetSeqNumFlag = (typeof ResetSeqNumFlag)[keyof typeof ResetSeqNumFlag];