@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 320 B
TypeScript
/**
* When rate averaging is applicable, used to specify whether a weighted or unweighted average calculation method is to be used.
* tag: 40806
* @readonly
* @enum {number} (int)
*/
export declare enum PaymentStreamAveragingMethod {
/** Unweighted */
Unweighted = 0,
/** Weighted */
Weighted = 1
}