| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The identifier of the dashboard | [optional] |
| name | str | The name of the dashboard | [optional] |
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)