fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 380 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;
}>;