investfly.models.common.DatedValue

@dataclass
class DatedValue:

Data Container class to hold Time,Value for timed numeric values

DatedValue(date: datetime.datetime, value: float | int)
date: datetime.datetime
value: float | int
def toJsonDict(self) -> Dict[str, Any]:
@staticmethod
def fromDict( json_dict: Dict[str, Any]) -> DatedValue: