Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.15 KB

DashboardCountDataSubscribers.md

File metadata and controls

31 lines (23 loc) · 1.15 KB

DashboardCountDataSubscribers

Properties

Name Type Description Notes
total int [optional]
blocklisted object [optional]
orphans int [optional]

Example

from listmonk.models.dashboard_count_data_subscribers import DashboardCountDataSubscribers

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

# convert the object into a dict
dashboard_count_data_subscribers_dict = dashboard_count_data_subscribers_instance.to_dict()
# create an instance of DashboardCountDataSubscribers from a dict
dashboard_count_data_subscribers_form_dict = dashboard_count_data_subscribers.from_dict(dashboard_count_data_subscribers_dict)

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