fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 584 B
TypeScript
/**
* The method of Forward Rate Agreement (FRA) discounting, if any, that will apply.
* - Tag: 40816
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamFRADiscounting: Readonly<{
/** None */
readonly None: 0;
/** International Swaps and Derivatives Association (ISDA) */
readonly ISDA: 1;
/** Australian Financial Markets Association (AFMA) */
readonly AFMA: 2;
}>;
export type PaymentStreamFRADiscounting = (typeof PaymentStreamFRADiscounting)[keyof typeof PaymentStreamFRADiscounting];