fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
16 lines (15 loc) • 419 B
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<{
readonly MoneyMarketFund: 0;
readonly OtherComingledPool: 1;
readonly RepoMarket: 2;
readonly DirectPurchaseOfSecurities: 3;
readonly OtherInvestments: 4;
}>;