Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 977 Bytes

DetailedGradeView.md

File metadata and controls

29 lines (20 loc) · 977 Bytes

DetailedGradeView

Properties

Name Type Description Notes
data List[DetailedGradeViewData] [optional]

Example

from iblai.models.detailed_grade_view import DetailedGradeView

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

# convert the object into a dict
detailed_grade_view_dict = detailed_grade_view_instance.to_dict()
# create an instance of DetailedGradeView from a dict
detailed_grade_view_from_dict = DetailedGradeView.from_dict(detailed_grade_view_dict)

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