UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 444 B
/** * Coupon type of the bond. * - Tag: 1946 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const CouponType: Readonly<{ /** Zero */ readonly Zero: 0; /** Fixed rate */ readonly FixedRate: 1; /** Floating rate */ readonly FloatingRate: 2; /** Structured */ readonly Structured: 3; }>; export type CouponType = (typeof CouponType)[keyof typeof CouponType];