Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.15 KB

RequestSchoolAccess200Response.md

File metadata and controls

30 lines (22 loc) · 1.15 KB

RequestSchoolAccess200Response

Properties

Name Type Description Notes
success bool [optional]
state str [optional]
message str [optional]

Example

from wonde.models.request_school_access200_response import RequestSchoolAccess200Response

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

# convert the object into a dict
request_school_access200_response_dict = request_school_access200_response_instance.to_dict()
# create an instance of RequestSchoolAccess200Response from a dict
request_school_access200_response_form_dict = request_school_access200_response.from_dict(request_school_access200_response_dict)

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