Type definition for the artifact as reported in the valuation.

interface ValuationReportArtifact {
    ccy: Maybe<CurrencyCode>;
    country: Maybe<string>;
    expiry: Maybe<string>;
    figi: Maybe<string>;
    guid: string;
    id: DecafArtifactId;
    isin: Maybe<string>;
    issuer: Maybe<string>;
    mic: Maybe<string>;
    name: Maybe<string>;
    quantity: Decimal;
    sector: Maybe<string>;
    stype: Maybe<string>;
    symbol: string;
    ticker: Maybe<string>;
    type: ValuationReportArtifactType;
    underlyingId: Maybe<DecafArtifactId>;
}

Properties

ccy: Maybe<CurrencyCode>
country: Maybe<string>
expiry: Maybe<string>
figi: Maybe<string>
guid: string
isin: Maybe<string>
issuer: Maybe<string>
mic: Maybe<string>
name: Maybe<string>
quantity: Decimal
sector: Maybe<string>
stype: Maybe<string>
symbol: string
ticker: Maybe<string>
underlyingId: Maybe<DecafArtifactId>