Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 919 Bytes

TimeDetail.md

File metadata and controls

30 lines (21 loc) · 919 Bytes

TimeDetail

Properties

Name Type Description Notes
data List[TimeDetailData] [optional]
total int Total time spent [optional]

Example

from iblai.models.time_detail import TimeDetail

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

# convert the object into a dict
time_detail_dict = time_detail_instance.to_dict()
# create an instance of TimeDetail from a dict
time_detail_from_dict = TimeDetail.from_dict(time_detail_dict)

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