Name | Type | Description | Notes |
---|---|---|---|
data | AvgCourseGradeWithCutoffData | [optional] |
from iblai.models.avg_course_grade_with_cutoff import AvgCourseGradeWithCutoff
# TODO update the JSON string below
json = "{}"
# create an instance of AvgCourseGradeWithCutoff from a JSON string
avg_course_grade_with_cutoff_instance = AvgCourseGradeWithCutoff.from_json(json)
# print the JSON string representation of the object
print(AvgCourseGradeWithCutoff.to_json())
# convert the object into a dict
avg_course_grade_with_cutoff_dict = avg_course_grade_with_cutoff_instance.to_dict()
# create an instance of AvgCourseGradeWithCutoff from a dict
avg_course_grade_with_cutoff_from_dict = AvgCourseGradeWithCutoff.from_dict(avg_course_grade_with_cutoff_dict)