UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 688 B
/** * The type of value in CurrentCollateralAmount(1704). * - Tag: 2632 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const CollateralAmountType: Readonly<{ /** Market valuation (the default) */ readonly MarketValuation: 0; /** Portfolio value before processing pledge request */ readonly PortfolioValue: 1; /** Value confirmed as "locked-up" for processing a pledge request */ readonly ValueConfirmed: 2; /** Credit value of collateral at CCP processing a pledge request */ readonly CollateralCreditValue: 3; readonly AdditionalCollateralValue: 4; readonly EstimatedMarketValuation: 5; }>;