UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 325 B
/** * Identifies IOI message transaction type * - Tag: 28 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const IOITransType: Readonly<{ /** New */ readonly New: 'N'; /** Cancel */ readonly Cancel: 'C'; /** Replace */ readonly Replace: 'R'; }>;