Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

PerLearnerTimeSpentInCourseTree.md

File metadata and controls

30 lines (21 loc) · 1.19 KB

PerLearnerTimeSpentInCourseTree

Properties

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

Example

from iblai.models.per_learner_time_spent_in_course_tree import PerLearnerTimeSpentInCourseTree

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

# convert the object into a dict
per_learner_time_spent_in_course_tree_dict = per_learner_time_spent_in_course_tree_instance.to_dict()
# create an instance of PerLearnerTimeSpentInCourseTree from a dict
per_learner_time_spent_in_course_tree_from_dict = PerLearnerTimeSpentInCourseTree.from_dict(per_learner_time_spent_in_course_tree_dict)

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