Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.05 KB

DashboardChart.md

File metadata and controls

30 lines (22 loc) · 1.05 KB

DashboardChart

Properties

Name Type Description Notes
link_clicks List[DashboardChartLinkClicksInner] [optional]
campaign_views List[DashboardChartLinkClicksInner] [optional]

Example

from listmonk.models.dashboard_chart import DashboardChart

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

# convert the object into a dict
dashboard_chart_dict = dashboard_chart_instance.to_dict()
# create an instance of DashboardChart from a dict
dashboard_chart_form_dict = dashboard_chart.from_dict(dashboard_chart_dict)

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