Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

TimeSpentPerCourse.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

TimeSpentPerCourse

Properties

Name Type Description Notes
data List[TimeSpentPerCourseData] [optional]
pagination Pagination

Example

from iblai.models.time_spent_per_course import TimeSpentPerCourse

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

# convert the object into a dict
time_spent_per_course_dict = time_spent_per_course_instance.to_dict()
# create an instance of TimeSpentPerCourse from a dict
time_spent_per_course_from_dict = TimeSpentPerCourse.from_dict(time_spent_per_course_dict)

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