@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
19 lines (18 loc) • 505 B
TypeScript
/**
* The sub-classification or notional schedule type of the swap.
* tag: 1575
* @readonly
* @enum {string} (String)
*/
export declare enum SwapSubClass {
/** Amortizing notional schedule */
Amortizing = "AMTZ",
/** Compounding */
Compounding = "COMP",
/** Constant notional schedule */
ConstantNotionalSchedule = "CNST",
/** Accreting notional schedule */
AccretingNotionalSchedule = "ACRT",
/** Custom notional schedule */
CustomNotionalSchedule = "CUST"
}