Name |
Type |
Description |
Notes |
course_id |
str |
Edx Course ID |
|
name |
str |
Course Name |
|
user_count |
int |
Active users for the period |
|
from iblai.models.active_users_per_course_data import ActiveUsersPerCourseData
# TODO update the JSON string below
json = "{}"
# create an instance of ActiveUsersPerCourseData from a JSON string
active_users_per_course_data_instance = ActiveUsersPerCourseData.from_json(json)
# print the JSON string representation of the object
print(ActiveUsersPerCourseData.to_json())
# convert the object into a dict
active_users_per_course_data_dict = active_users_per_course_data_instance.to_dict()
# create an instance of ActiveUsersPerCourseData from a dict
active_users_per_course_data_from_dict = ActiveUsersPerCourseData.from_dict(active_users_per_course_data_dict)
[Back to Model list] [Back to API list] [Back to README]