Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 922 Bytes

DashboardCount.md

File metadata and controls

29 lines (21 loc) · 922 Bytes

DashboardCount

Properties

Name Type Description Notes
data DashboardCountData [optional]

Example

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)

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