Authorization Exception
Name | Type | Description | Notes |
---|---|---|---|
status_code | int | ||
detail | str | ||
extra | none_type[str, object] | [optional] |
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)