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