Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

ListDataviews401Response.md

File metadata and controls

32 lines (23 loc) · 1.11 KB

ListDataviews401Response

Authorization Exception

Properties

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

Example

from openapi_client.models.list_dataviews401_response import ListDataviews401Response

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

# convert the object into a dict
list_dataviews401_response_dict = list_dataviews401_response_instance.to_dict()
# create an instance of ListDataviews401Response from a dict
list_dataviews401_response_from_dict = ListDataviews401Response.from_dict(list_dataviews401_response_dict)

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