fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
27 lines (26 loc) • 571 B
TypeScript
/**
* 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';
}>;