UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 387 B
/** * Settlement Instructions message transaction type * - Tag: 163 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const SettlInstTransType: Readonly<{ /** New */ readonly New: 'N'; /** Cancel */ readonly Cancel: 'C'; /** Replace */ readonly Replace: 'R'; /** Restate */ readonly Restate: 'T'; }>;