fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 533 B
TypeScript
/**
* The source of the payment stream floating rate index.
* - Tag: 40790
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamRateIndexSource: Readonly<{
/** Bloomberg */
readonly Bloomberg: 0;
/** Reuters */
readonly Reuters: 1;
/** Telerate */
readonly Telerate: 2;
/** Other */
readonly Other: 99;
}>;
export type PaymentStreamRateIndexSource = (typeof PaymentStreamRateIndexSource)[keyof typeof PaymentStreamRateIndexSource];