Name | Type | Description | Notes |
---|---|---|---|
data | DashboardCountData | [optional] |
from listmonk.models.dashboard_count import DashboardCount
# TODO update the JSON string below
json = "{}"
# create an instance of DashboardCount from a JSON string
dashboard_count_instance = DashboardCount.from_json(json)
# print the JSON string representation of the object
print
DashboardCount.to_json()
# convert the object into a dict
dashboard_count_dict = dashboard_count_instance.to_dict()
# create an instance of DashboardCount from a dict
dashboard_count_form_dict = dashboard_count.from_dict(dashboard_count_dict)