Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

DeletePageAPIResponse

Properties

Name Type Description Notes
reason str [optional]
code str [optional]
status str

Example

from client.models.delete_page_api_response import DeletePageAPIResponse

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

# convert the object into a dict
delete_page_api_response_dict = delete_page_api_response_instance.to_dict()
# create an instance of DeletePageAPIResponse from a dict
delete_page_api_response_from_dict = DeletePageAPIResponse.from_dict(delete_page_api_response_dict)

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