UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 448 B
/** * The method of calculating discounted payment amounts * - Tag: 40744 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PaymentStreamDiscountType: Readonly<{ /** Standard */ readonly Standard: 0; /** Forward Rate Agreement (FRA) */ readonly FRA: 1; }>; export type PaymentStreamDiscountType = (typeof PaymentStreamDiscountType)[keyof typeof PaymentStreamDiscountType];