UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

16 lines (15 loc) 427 B
/** * Used to specify whether the principal is paying or receiving the fixed rate in an interest rate swap. * - Tag: 1933 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const IRSDirection: Readonly<{ readonly Pay: 'PAY'; /** Principal is receiving fixed rate */ readonly Rcv: 'RCV'; /** Swap is float/float or fixed/fixed */ readonly NA: 'NA'; }>;