fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
32 lines (31 loc) • 817 B
TypeScript
/**
* Identifies the type of payment stream associated with the swap.
* - Tag: 40738
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamType: Readonly<{
/** Periodic (default) */
readonly Periodic: 0;
/** Initial */
readonly Initial: 1;
/** Single */
readonly Single: 2;
/** Dividend */
readonly Dividend: 3;
/** Interest */
readonly Interest: 4;
/** Dividend return */
readonly DividendReturn: 5;
/** Price return */
readonly PriceReturn: 6;
/** Total return */
readonly TotalReturn: 7;
/** Variance */
readonly Variance: 8;
/** Correlation */
readonly Correlation: 9;
}>;
export type PaymentStreamType = (typeof PaymentStreamType)[keyof typeof PaymentStreamType];