Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

EmbeddedDashboardConfiguration

Properties

Name Type Description Notes
workspace_id str The ID of the workspace that contains dashboards.
dashboard_id str The ID of the dashboard that contains metrics.

Example

from talon_one.models.embedded_dashboard_configuration import EmbeddedDashboardConfiguration

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

# convert the object into a dict
embedded_dashboard_configuration_dict = embedded_dashboard_configuration_instance.to_dict()
# create an instance of EmbeddedDashboardConfiguration from a dict
embedded_dashboard_configuration_from_dict = EmbeddedDashboardConfiguration.from_dict(embedded_dashboard_configuration_dict)

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