UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 322 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; }>;