Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

AvgCourseGradeWithCutoff.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

AvgCourseGradeWithCutoff

Properties

Name Type Description Notes
data AvgCourseGradeWithCutoffData [optional]

Example

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)

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