Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.09 KB

SchoolAddress.md

File metadata and controls

32 lines (24 loc) · 1.09 KB

SchoolAddress

Properties

Name Type Description Notes
address_line_1 str [optional]
address_line_2 str [optional]
address_town str [optional]
address_postcode str [optional]
address_country SchoolAddressAddressCountry [optional]

Example

from wonde.models.school_address import SchoolAddress

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

# convert the object into a dict
school_address_dict = school_address_instance.to_dict()
# create an instance of SchoolAddress from a dict
school_address_form_dict = school_address.from_dict(school_address_dict)

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