Name | Type | Description | Notes |
---|---|---|---|
link_clicks | List[DashboardChartLinkClicksInner] | [optional] | |
campaign_views | List[DashboardChartLinkClicksInner] | [optional] |
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)