Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

ActiveUsersPerCourse.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

ActiveUsersPerCourse

Properties

Name Type Description Notes
data List[ActiveUsersPerCourseData]
total int Total unique active users in this period
meta OvertimeMeta

Example

from iblai.models.active_users_per_course import ActiveUsersPerCourse

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

# convert the object into a dict
active_users_per_course_dict = active_users_per_course_instance.to_dict()
# create an instance of ActiveUsersPerCourse from a dict
active_users_per_course_from_dict = ActiveUsersPerCourse.from_dict(active_users_per_course_dict)

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