Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.01 KB

StudentEducationDetails.md

File metadata and controls

28 lines (20 loc) · 1.01 KB

StudentEducationDetails

Properties

Name Type Description Notes
data EducationDetails [optional]

Example

from wonde.models.student_education_details import StudentEducationDetails

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

# convert the object into a dict
student_education_details_dict = student_education_details_instance.to_dict()
# create an instance of StudentEducationDetails from a dict
student_education_details_form_dict = student_education_details.from_dict(student_education_details_dict)

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