UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 546 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<{ /** Principal is paying fixed rate */ readonly Pay: "PAY"; /** Principal is receiving fixed rate */ readonly Rcv: "RCV"; /** Swap is float/float or fixed/fixed */ readonly NA: "NA"; }>; export type IRSDirection = (typeof IRSDirection)[keyof typeof IRSDirection];