Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 902 Bytes

CoursePoint.md

File metadata and controls

30 lines (21 loc) · 902 Bytes

CoursePoint

Properties

Name Type Description Notes
course_id str The edX course ID string for the course.
points int

Example

from iblai.models.course_point import CoursePoint

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

# convert the object into a dict
course_point_dict = course_point_instance.to_dict()
# create an instance of CoursePoint from a dict
course_point_from_dict = CoursePoint.from_dict(course_point_dict)

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