Name | Type | Description | Notes |
---|---|---|---|
data | Dict[str, object] |
from iblai.models.over_time import OverTime
# TODO update the JSON string below
json = "{}"
# create an instance of OverTime from a JSON string
over_time_instance = OverTime.from_json(json)
# print the JSON string representation of the object
print(OverTime.to_json())
# convert the object into a dict
over_time_dict = over_time_instance.to_dict()
# create an instance of OverTime from a dict
over_time_from_dict = OverTime.from_dict(over_time_dict)