fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 561 B
TypeScript
/**
* The method used when calculating the Inflation Index Level from multiple points - the most common is Linear.
* - Tag: 40811
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamInflationInterpolationMethod: Readonly<{
/** None */
readonly None: 0;
/** Linear zero yield */
readonly LinearZeroYield: 1;
}>;
export type PaymentStreamInflationInterpolationMethod = (typeof PaymentStreamInflationInterpolationMethod)[keyof typeof PaymentStreamInflationInterpolationMethod];