Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.8 KB

File metadata and controls

35 lines (26 loc) · 1.8 KB

Reportsrunnerv3GetChartDataRequestv2

GetChartDataRequestv2 is the argument type used to run api.

Properties

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]

Example

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)

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