Not Found Exception
Name | Type | Description | Notes |
---|---|---|---|
status_code | int | ||
detail | str | ||
extra | none_type[str, object] | [optional] |
from openapi_client.models.list_dataviews404_response import ListDataviews404Response
# TODO update the JSON string below
json = "{}"
# create an instance of ListDataviews404Response from a JSON string
list_dataviews404_response_instance = ListDataviews404Response.from_json(json)
# print the JSON string representation of the object
print(ListDataviews404Response.to_json())
# convert the object into a dict
list_dataviews404_response_dict = list_dataviews404_response_instance.to_dict()
# create an instance of ListDataviews404Response from a dict
list_dataviews404_response_from_dict = ListDataviews404Response.from_dict(list_dataviews404_response_dict)