Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.05 KB

File metadata and controls

33 lines (26 loc) · 1.05 KB

Exception

JSON schema for exceptions based on RFC 7807

Properties

Name Type Description Notes
additional_properties object [optional]
detail str [optional]
instance str [optional]
status int [optional]
title str [optional]
type str

Example

from unity_sps_ogc_processes_api_python_client.models.exception import Exception

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

# convert the object into a dict
exception_dict = exception_instance.to_dict()
# create an instance of Exception from a dict
exception_from_dict = Exception.from_dict(exception_dict)

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