GetChartDataRequestv2 is the argument type used to run api.
| Name | Type | Description | Notes |
|---|---|---|---|
| chart_id | str | Optional: the ID of the chart we wish to get its data. | [optional] |
| chart_settings | Reportsv3ChartSettingsv2 | [optional] | |
| model_type | Reportsv3ModelType | [optional] [default to Reportsv3ModelType.UNDEFINED_MODEL_TYPE] | |
| report_definition | Reportsv3ReportDefinition | [optional] | |
| runtime_parameter_list | List[Reportsv3RunTimeParameter] | Runtime parameters. | [optional] |
| time_zone | str | Optional: time zone. | [optional] |
from ibm_gdsc_sdk_saas.models.reportsrunnerv3_get_chart_data_requestv2 import Reportsrunnerv3GetChartDataRequestv2
# TODO update the JSON string below
json = "{}"
# create an instance of Reportsrunnerv3GetChartDataRequestv2 from a JSON string
reportsrunnerv3_get_chart_data_requestv2_instance = Reportsrunnerv3GetChartDataRequestv2.from_json(json)
# print the JSON string representation of the object
print(Reportsrunnerv3GetChartDataRequestv2.to_json())
# convert the object into a dict
reportsrunnerv3_get_chart_data_requestv2_dict = reportsrunnerv3_get_chart_data_requestv2_instance.to_dict()
# create an instance of Reportsrunnerv3GetChartDataRequestv2 from a dict
reportsrunnerv3_get_chart_data_requestv2_from_dict = Reportsrunnerv3GetChartDataRequestv2.from_dict(reportsrunnerv3_get_chart_data_requestv2_dict)