fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 556 B
TypeScript
/**
* Type of Market Data update action.
* - Tag: 279
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const MDUpdateAction: Readonly<{
/** New */
readonly New: "0";
/** Change */
readonly Change: "1";
/** Delete */
readonly Delete: "2";
/** Delete Thru */
readonly DeleteThru: "3";
/** Delete From */
readonly DeleteFrom: "4";
/** Overlay */
readonly Overlay: "5";
}>;
export type MDUpdateAction = (typeof MDUpdateAction)[keyof typeof MDUpdateAction];