Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 975 Bytes

SchoolClassStudents.md

File metadata and controls

28 lines (20 loc) · 975 Bytes

SchoolClassStudents

Properties

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

Example

from wonde.models.school_class_students import SchoolClassStudents

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

# convert the object into a dict
school_class_students_dict = school_class_students_instance.to_dict()
# create an instance of SchoolClassStudents from a dict
school_class_students_form_dict = school_class_students.from_dict(school_class_students_dict)

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