Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.38 KB

File metadata and controls

31 lines (22 loc) · 1.38 KB

Reportsrunnerv3GetChartDataResponse

GetChartDataResponse is the return type of GetChartData API.

Properties

Name Type Description Notes
chart_layout Reportsv3ChartDisplayLayout [optional]
data List[Reportsrunnerv3DataRow] Chart data. [optional]

Example

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)

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