Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

DashboardInfoResponse

Properties

Name Type Description Notes
message str [optional]
overview OverviewInfo [optional]
status bool [optional]

Example

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_from_dict = DashboardInfoResponse.from_dict(dashboard_info_response_dict)

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