| Name | Type | Description | Notes |
|---|---|---|---|
| status | bool | [optional] | |
| message | str | [optional] | |
| overview | OverviewInfo | [optional] |
from hyperstack.models.dashboard_info_response import DashboardInfoResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DashboardInfoResponse from a JSON string
dashboard_info_response_instance = DashboardInfoResponse.from_json(json)
# print the JSON string representation of the object
print DashboardInfoResponse.to_json()
# convert the object into a dict
dashboard_info_response_dict = dashboard_info_response_instance.to_dict()
# create an instance of DashboardInfoResponse from a dict
dashboard_info_response_form_dict = dashboard_info_response.from_dict(dashboard_info_response_dict)