You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromiblai.models.course_completion_per_course_dataimportCourseCompletionPerCourseData# TODO update the JSON string belowjson="{}"# create an instance of CourseCompletionPerCourseData from a JSON stringcourse_completion_per_course_data_instance=CourseCompletionPerCourseData.from_json(json)
# print the JSON string representation of the objectprint(CourseCompletionPerCourseData.to_json())
# convert the object into a dictcourse_completion_per_course_data_dict=course_completion_per_course_data_instance.to_dict()
# create an instance of CourseCompletionPerCourseData from a dictcourse_completion_per_course_data_from_dict=CourseCompletionPerCourseData.from_dict(course_completion_per_course_data_dict)