Type definition for base valuation report holding (shared by ValuationReportHolding and ValuationReportChildHolding).

interface BaseValuationReportHolding {
    absExposurePercentage: Maybe<Decimal>;
    artifact: ValuationReportArtifact;
    change: Maybe<Decimal>;
    investment: ValuationReportHoldingFiguresInvestment;
    lastdate: string;
    netExposurePercentage: Maybe<Decimal>;
    opendate: string;
    pnl: Decimal;
    pnlToInvestment: Maybe<Decimal>;
    quantity: Decimal;
    valuation: ValuationReportHoldingFiguresValuation;
    valuePercentage: Maybe<Decimal>;
}

Hierarchy (view full)

Properties

absExposurePercentage: Maybe<Decimal>
change: Maybe<Decimal>
lastdate: string
netExposurePercentage: Maybe<Decimal>
opendate: string
pnl: Decimal
pnlToInvestment: Maybe<Decimal>
quantity: Decimal
valuePercentage: Maybe<Decimal>