@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 314 B
TypeScript
/**
* Identifies whether the rate spread is an absolute value to be added to the index rate or a percentage of the index rate.
* tag: 41206
* @readonly
* @enum {number} (int)
*/
export declare enum PaymentStreamRateSpreadType {
/** Absolute */
Absolute = 0,
/** Percentage */
Percentage = 1
}