fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 489 B
TypeScript
/**
* If provided, then Instrument occurrence has explicitly changed
* - Tag: 1324
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const ListUpdateAction: Readonly<{
/** Add */
readonly Add: "A";
/** Delete */
readonly Delete: "D";
/** Modify */
readonly Modify: "M";
/** Snapshot */
readonly Snapshot: "S";
}>;
export type ListUpdateAction = (typeof ListUpdateAction)[keyof typeof ListUpdateAction];