Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.05 KB

RequestSchoolAccessRequest.md

File metadata and controls

28 lines (20 loc) · 1.05 KB

RequestSchoolAccessRequest

Properties

Name Type Description Notes
contacts List[Contact] [optional]

Example

from wonde.models.request_school_access_request import RequestSchoolAccessRequest

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

# convert the object into a dict
request_school_access_request_dict = request_school_access_request_instance.to_dict()
# create an instance of RequestSchoolAccessRequest from a dict
request_school_access_request_form_dict = request_school_access_request.from_dict(request_school_access_request_dict)

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