Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 900 Bytes

File metadata and controls

30 lines (21 loc) · 900 Bytes

Dashboard

Properties

Name Type Description Notes
id str The identifier of the dashboard [optional]
name str The name of the dashboard [optional]

Example

from cyperf.models.dashboard import Dashboard

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

# convert the object into a dict
dashboard_dict = dashboard_instance.to_dict()
# create an instance of Dashboard from a dict
dashboard_from_dict = Dashboard.from_dict(dashboard_dict)

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