You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
frominstana_client.models.custom_dashboard_with_user_specific_informationimportCustomDashboardWithUserSpecificInformation# TODO update the JSON string belowjson="{}"# create an instance of CustomDashboardWithUserSpecificInformation from a JSON stringcustom_dashboard_with_user_specific_information_instance=CustomDashboardWithUserSpecificInformation.from_json(json)
# print the JSON string representation of the objectprint(CustomDashboardWithUserSpecificInformation.to_json())
# convert the object into a dictcustom_dashboard_with_user_specific_information_dict=custom_dashboard_with_user_specific_information_instance.to_dict()
# create an instance of CustomDashboardWithUserSpecificInformation from a dictcustom_dashboard_with_user_specific_information_from_dict=CustomDashboardWithUserSpecificInformation.from_dict(custom_dashboard_with_user_specific_information_dict)