Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

OverTimeWithTotal.md

File metadata and controls

31 lines (22 loc) · 1.25 KB

OverTimeWithTotal

Returns { "data": { "2022-04-26": 0, "2022-04-27": 0, ... "2023-01-01": 0 }, "total": 0 }

Properties

Name Type Description Notes
data Dict[str, object] Dates are keys and values are the value for the date in the key. e,g `{"2020-01-01": 30. ...}` [optional]
total int Total [optional]

Example

from iblai.models.over_time_with_total import OverTimeWithTotal

# TODO update the JSON string below
json = "{}"
# create an instance of OverTimeWithTotal from a JSON string
over_time_with_total_instance = OverTimeWithTotal.from_json(json)
# print the JSON string representation of the object
print(OverTimeWithTotal.to_json())

# convert the object into a dict
over_time_with_total_dict = over_time_with_total_instance.to_dict()
# create an instance of OverTimeWithTotal from a dict
over_time_with_total_from_dict = OverTimeWithTotal.from_dict(over_time_with_total_dict)

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