Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.41 KB

File metadata and controls

31 lines (22 loc) · 1.41 KB

Reportsrunnerv3GetChartDataResponsev2

GetChartDataResponsev2 is the return type of GetChartDatav2 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_responsev2 import Reportsrunnerv3GetChartDataResponsev2

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

# convert the object into a dict
reportsrunnerv3_get_chart_data_responsev2_dict = reportsrunnerv3_get_chart_data_responsev2_instance.to_dict()
# create an instance of Reportsrunnerv3GetChartDataResponsev2 from a dict
reportsrunnerv3_get_chart_data_responsev2_from_dict = Reportsrunnerv3GetChartDataResponsev2.from_dict(reportsrunnerv3_get_chart_data_responsev2_dict)

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