Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

AvgCourseGradeWithCutoffData.md

File metadata and controls

30 lines (21 loc) · 1.16 KB

AvgCourseGradeWithCutoffData

Properties

Name Type Description Notes
grade_cutoffs Dict[str, object] Dictionary showing grade cutoffs
average_grade float Course Average grade

Example

from iblai.models.avg_course_grade_with_cutoff_data import AvgCourseGradeWithCutoffData

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

# convert the object into a dict
avg_course_grade_with_cutoff_data_dict = avg_course_grade_with_cutoff_data_instance.to_dict()
# create an instance of AvgCourseGradeWithCutoffData from a dict
avg_course_grade_with_cutoff_data_from_dict = AvgCourseGradeWithCutoffData.from_dict(avg_course_grade_with_cutoff_data_dict)

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