Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.21 KB

DashboardCountData.md

File metadata and controls

32 lines (24 loc) · 1.21 KB

DashboardCountData

Properties

Name Type Description Notes
subscribers DashboardCountDataSubscribers [optional]
lists DashboardCountDataLists [optional]
campaigns DashboardCountDataCampaigns [optional]
messages int [optional]

Example

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)

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