UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 393 B
/** * Identifies the type of adjustment. * - Tag: 334 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const Adjustment: Readonly<{ /** Cancel */ readonly Cancel: 1; /** Error */ readonly Error: 2; /** Correction */ readonly Correction: 3; }>; export type Adjustment = (typeof Adjustment)[keyof typeof Adjustment];