JSON schema for exceptions based on RFC 7807
Name | Type | Description | Notes |
---|---|---|---|
additional_properties | object | [optional] | |
detail | str | [optional] | |
instance | str | [optional] | |
status | int | [optional] | |
title | str | [optional] | |
type | str |
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)