GetChartDataResponse is the return type of GetChartData API.
| Name | Type | Description | Notes |
|---|---|---|---|
| chart_layout | Reportsv3ChartDisplayLayout | [optional] | |
| data | List[Reportsrunnerv3DataRow] | Chart data. | [optional] |
from ibm_gdsc_sdk_saas.models.reportsrunnerv3_get_chart_data_response import Reportsrunnerv3GetChartDataResponse
# TODO update the JSON string below
json = "{}"
# create an instance of Reportsrunnerv3GetChartDataResponse from a JSON string
reportsrunnerv3_get_chart_data_response_instance = Reportsrunnerv3GetChartDataResponse.from_json(json)
# print the JSON string representation of the object
print(Reportsrunnerv3GetChartDataResponse.to_json())
# convert the object into a dict
reportsrunnerv3_get_chart_data_response_dict = reportsrunnerv3_get_chart_data_response_instance.to_dict()
# create an instance of Reportsrunnerv3GetChartDataResponse from a dict
reportsrunnerv3_get_chart_data_response_from_dict = Reportsrunnerv3GetChartDataResponse.from_dict(reportsrunnerv3_get_chart_data_response_dict)