UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 329 B
/** * Identifies the Confirmation transaction type. * - Tag: 666 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ConfirmTransType: Readonly<{ /** New */ readonly New: 0; /** Replace */ readonly Replace: 1; /** Cancel */ readonly Cancel: 2; }>;