UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 343 B
/** * Identifies Registration Instructions transaction type * - Tag: 514 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const RegistTransType: Readonly<{ /** New */ readonly New: '0'; /** Cancel */ readonly Cancel: '2'; /** Replace */ readonly Replace: '1'; }>;