Source code for depot_service.models.iceberg_stats
from pydantic import BaseModel
from typing import Dict
[docs]class IcebergStats(BaseModel):
stats: Dict[str, str]
timeline: Dict[str, Dict[str, str]]
properties: Dict[str, str]
from pydantic import BaseModel
from typing import Dict
[docs]class IcebergStats(BaseModel):
stats: Dict[str, str]
timeline: Dict[str, Dict[str, str]]
properties: Dict[str, str]