@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
14 lines (13 loc) • 342 B
TypeScript
/**
* Used to specify whether the principal is paying or receiving the fixed rate in an interest rate swap.
* tag: 1933
* @readonly
* @enum {string} (String)
*/
export declare enum IRSDirection {
Pay = "PAY",
/** Principal is receiving fixed rate */
Rcv = "RCV",
/** Swap is float/float or fixed/fixed */
NA = "NA"
}