fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
27 lines (26 loc) • 1.19 kB
TypeScript
/**
* Indicates the type of investment the cash collateral is re-invested in.
* - Tag: 2844
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CollateralReinvestmentType: Readonly<{
/** Money market fund
Registered money market fund. In the context of EU SFTR reporting this corresponds to code "MMFT". */
readonly MoneyMarketFund: 0;
/** Other comingled pool
Any commingled pool other than money market fund. In the context of EU SFTR reporting this corresponds to code "OCMP". */
readonly OtherComingledPool: 1;
/** Repo market
The repurchase agreement market. In the context of EU SFTR reporting this corresponds to code "REPM". */
readonly RepoMarket: 2;
/** Direct purchase of securities
In the context of EU SFTR reporting this corresponds to code "SDPU". */
readonly DirectPurchaseOfSecurities: 3;
/** Other investments
In the context of EU SFTR reporting this corresponds to code "OTHR". */
readonly OtherInvestments: 4;
}>;
export type CollateralReinvestmentType = (typeof CollateralReinvestmentType)[keyof typeof CollateralReinvestmentType];