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