Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

ListDataviews404Response.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

ListDataviews404Response

Not Found Exception

Properties

Name Type Description Notes
status_code int
detail str
extra none_type[str, object] [optional]

Example

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)

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