@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 320 B
TypeScript
/**
* The method used when calculating the Inflation Index Level from multiple points - the most common is Linear.
* tag: 40811
* @readonly
* @enum {number} (int)
*/
export declare enum PaymentStreamInflationInterpolationMethod {
/** None */
None = 0,
/** Linear zero yield */
LinearZeroYield = 1
}