Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.77 KB

File metadata and controls

35 lines (26 loc) · 1.77 KB

Reportsrunnerv3GetChartDataRequest

GetChartDataRequest is the argument of GetChartData API.

Properties

Name Type Description Notes
chart_id str Optional: the ID of the chart we wish to get its data. [optional]
chart_settings Reportsv3ChartSettings [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]

Example

from ibm_gdsc_sdk_saas.models.reportsrunnerv3_get_chart_data_request import Reportsrunnerv3GetChartDataRequest

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

# convert the object into a dict
reportsrunnerv3_get_chart_data_request_dict = reportsrunnerv3_get_chart_data_request_instance.to_dict()
# create an instance of Reportsrunnerv3GetChartDataRequest from a dict
reportsrunnerv3_get_chart_data_request_from_dict = Reportsrunnerv3GetChartDataRequest.from_dict(reportsrunnerv3_get_chart_data_request_dict)

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