Name | Type | Description | Notes |
---|---|---|---|
subscribers | DashboardCountDataSubscribers | [optional] | |
lists | DashboardCountDataLists | [optional] | |
campaigns | DashboardCountDataCampaigns | [optional] | |
messages | int | [optional] |
from listmonk.models.dashboard_count_data import DashboardCountData
# TODO update the JSON string below
json = "{}"
# create an instance of DashboardCountData from a JSON string
dashboard_count_data_instance = DashboardCountData.from_json(json)
# print the JSON string representation of the object
print
DashboardCountData.to_json()
# convert the object into a dict
dashboard_count_data_dict = dashboard_count_data_instance.to_dict()
# create an instance of DashboardCountData from a dict
dashboard_count_data_form_dict = dashboard_count_data.from_dict(dashboard_count_data_dict)