fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 511 B
TypeScript
/**
* Compounding method.
* - Tag: 40747
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamCompoundingMethod: Readonly<{
/** None */
readonly None: 0;
/** Flat */
readonly Flat: 1;
/** Straight */
readonly Straight: 2;
/** Spread exclusive */
readonly SpreadExclusive: 3;
}>;
export type PaymentStreamCompoundingMethod = (typeof PaymentStreamCompoundingMethod)[keyof typeof PaymentStreamCompoundingMethod];