fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 529 B
TypeScript
/**
* Time unit associated with the floating rate index.
* - Tag: 40791
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const PaymentStreamRateIndexCurveUnit: Readonly<{
/** Day */
readonly Day: "D";
/** Week */
readonly Week: "Wk";
/** Month */
readonly Month: "Mo";
/** Year */
readonly Year: "Yr";
}>;
export type PaymentStreamRateIndexCurveUnit = (typeof PaymentStreamRateIndexCurveUnit)[keyof typeof PaymentStreamRateIndexCurveUnit];