Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.23 KB

School.md

File metadata and controls

38 lines (30 loc) · 1.23 KB

School

Properties

Name Type Description Notes
id str [optional]
name str [optional]
establishment_number str [optional]
urn int [optional]
phase_of_education str [optional]
la_code str [optional]
timezone str [optional]
mis str [optional]
address SchoolAddress [optional]
extended SchoolExtended [optional]
region SchoolRegion [optional]

Example

from wonde.models.school import School

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

# convert the object into a dict
school_dict = school_instance.to_dict()
# create an instance of School from a dict
school_form_dict = school.from_dict(school_dict)

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