summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/openbb_core/provider/standard_models/etf_holdings_performance.py
blob: e081c89497b421cadc75656758b29bac4ac662e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""ETF Holdings Performance Standard Model."""

from .recent_performance import (
    RecentPerformanceData,
    RecentPerformanceQueryParams,
)


class ETFHoldingsPerformanceQueryParams(RecentPerformanceQueryParams):
    """ETF Holdings Performance Query."""


class ETFHoldingsPerformanceData(RecentPerformanceData):
    """ETF Holdings Performance Data."""