Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.15 KB

DashboardCountDataCampaigns.md

File metadata and controls

30 lines (22 loc) · 1.15 KB

DashboardCountDataCampaigns

Properties

Name Type Description Notes
total int [optional]
by_status DashboardCountDataCampaignsByStatus [optional]

Example

from listmonk.models.dashboard_count_data_campaigns import DashboardCountDataCampaigns

# TODO update the JSON string below
json = "{}"
# create an instance of DashboardCountDataCampaigns from a JSON string
dashboard_count_data_campaigns_instance = DashboardCountDataCampaigns.from_json(json)
# print the JSON string representation of the object
print
DashboardCountDataCampaigns.to_json()

# convert the object into a dict
dashboard_count_data_campaigns_dict = dashboard_count_data_campaigns_instance.to_dict()
# create an instance of DashboardCountDataCampaigns from a dict
dashboard_count_data_campaigns_form_dict = dashboard_count_data_campaigns.from_dict(dashboard_count_data_campaigns_dict)

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