Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 805 Bytes

OverTime.md

File metadata and controls

29 lines (20 loc) · 805 Bytes

OverTime

Properties

Name Type Description Notes
data Dict[str, object]

Example

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)

[Back to Model list] [Back to API list] [Back to README]