@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
25 lines (24 loc) • 446 B
TypeScript
/**
* Time unit associated with the frequency of the bond's coupon payment.
* tag: 1949
* @readonly
* @enum {string} (String)
*/
export declare enum CouponFrequencyUnit {
/** Day */
Day = "D",
/** Week */
Week = "Wk",
/** Month */
Month = "Mo",
/** Year */
Year = "Yr",
/** Hour */
Hour = "H",
/** Minute */
Minute = "Min",
/** Second */
Second = "S",
/** Term */
Term = "T"
}