Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

CustomDashboards

Properties

Name Type Description Notes
active bool Indicates whether the custom dashboards are enabled or not.
links List[APILink] A list of links to user defined stats dashboards. [optional]
links List[APILink] [optional]

Example

from cyperf.models.custom_dashboards import CustomDashboards

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

# convert the object into a dict
custom_dashboards_dict = custom_dashboards_instance.to_dict()
# create an instance of CustomDashboards from a dict
custom_dashboards_from_dict = CustomDashboards.from_dict(custom_dashboards_dict)

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