fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 396 B
TypeScript
/**
* Specifies the type of Market Data update.
* - Tag: 265
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MDUpdateType: Readonly<{
/** Full refresh */
readonly FullRefresh: 0;
/** Incremental refresh */
readonly IncrementalRefresh: 1;
}>;
export type MDUpdateType = (typeof MDUpdateType)[keyof typeof MDUpdateType];