UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 513 B
/** * Identifies whether the rate spread is an absolute value to be added to the index rate or a percentage of the index rate. * - Tag: 41206 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PaymentStreamRateSpreadType: Readonly<{ /** Absolute */ readonly Absolute: 0; /** Percentage */ readonly Percentage: 1; }>; export type PaymentStreamRateSpreadType = (typeof PaymentStreamRateSpreadType)[keyof typeof PaymentStreamRateSpreadType];