fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 710 B
TypeScript
/**
* The specification of any provisions for calculating payment obligations when a floating rate is negative (either due to a quoted negative floating rate or by operation of a spread that is subtracted from the floating rate).
* - Tag: 40807
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamNegativeRateTreatment: Readonly<{
/** Zero interest rate method */
readonly ZeroInterestRateMethod: 0;
/** Negative interest rate method */
readonly NegativeInterestRateMethod: 1;
}>;
export type PaymentStreamNegativeRateTreatment = (typeof PaymentStreamNegativeRateTreatment)[keyof typeof PaymentStreamNegativeRateTreatment];