from iblai.models.course_skill import CourseSkill
# TODO update the JSON string below
json = "{}"
# create an instance of CourseSkill from a JSON string
course_skill_instance = CourseSkill.from_json(json)
# print the JSON string representation of the object
print(CourseSkill.to_json())
# convert the object into a dict
course_skill_dict = course_skill_instance.to_dict()
# create an instance of CourseSkill from a dict
course_skill_from_dict = CourseSkill.from_dict(course_skill_dict)