Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.43 KB

File metadata and controls

34 lines (25 loc) · 1.43 KB

CustomDashboardWithUserSpecificInformation

Properties

Name Type Description Notes
access_rules List[AccessRule]
id str
owner_id str
title str
widgets List[Widget]
writable bool

Example

from instana_client.models.custom_dashboard_with_user_specific_information import CustomDashboardWithUserSpecificInformation

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

# convert the object into a dict
custom_dashboard_with_user_specific_information_dict = custom_dashboard_with_user_specific_information_instance.to_dict()
# create an instance of CustomDashboardWithUserSpecificInformation from a dict
custom_dashboard_with_user_specific_information_from_dict = CustomDashboardWithUserSpecificInformation.from_dict(custom_dashboard_with_user_specific_information_dict)

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