UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

28 lines (27 loc) 669 B
/** * Time unit associated with the frequency of the bond's coupon payment. * - Tag: 1949 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const CouponFrequencyUnit: Readonly<{ /** Day */ readonly Day: "D"; /** Week */ readonly Week: "Wk"; /** Month */ readonly Month: "Mo"; /** Year */ readonly Year: "Yr"; /** Hour */ readonly Hour: "H"; /** Minute */ readonly Minute: "Min"; /** Second */ readonly Second: "S"; /** Term */ readonly Term: "T"; }>; export type CouponFrequencyUnit = (typeof CouponFrequencyUnit)[keyof typeof CouponFrequencyUnit];