Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

TimeDetailData.md

File metadata and controls

34 lines (25 loc) · 1.17 KB

TimeDetailData

Properties

Name Type Description Notes
average_time float Average time spent
display_name str Chapter name
id str Chapter Id
children List[TimeDetailChild] [optional]
total_time int Total time spent [optional]
total_users int Total users who accessed the chapter [optional]

Example

from iblai.models.time_detail_data import TimeDetailData

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

# convert the object into a dict
time_detail_data_dict = time_detail_data_instance.to_dict()
# create an instance of TimeDetailData from a dict
time_detail_data_from_dict = TimeDetailData.from_dict(time_detail_data_dict)

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