Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.01 KB

File metadata and controls

36 lines (27 loc) · 2.01 KB

Reportsrunnerv3GetReportDataCountRequest

GetReportDataCountRequest is the argument get count.

Properties

Name Type Description Notes
date_range Reportsv3DateRange [optional]
model_type Reportsv3ModelType [optional] [default to Reportsv3ModelType.UNDEFINED_MODEL_TYPE]
query_id str Optional: query_id is used to uniquely identify a query. It can be later used to stop the same query. [optional]
report_definition Reportsv3ReportDefinition [optional]
report_id str Optional: the ID of the Report we wish to run (e.g. 000000000000000000000905). [optional]
runtime_parameter_list List[Reportsv3RunTimeParameter] List of runtime parameter if needed. [optional]
time_zone str Optional: time zone. [optional]

Example

from ibm_gdsc_sdk_saas.models.reportsrunnerv3_get_report_data_count_request import Reportsrunnerv3GetReportDataCountRequest

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

# convert the object into a dict
reportsrunnerv3_get_report_data_count_request_dict = reportsrunnerv3_get_report_data_count_request_instance.to_dict()
# create an instance of Reportsrunnerv3GetReportDataCountRequest from a dict
reportsrunnerv3_get_report_data_count_request_from_dict = Reportsrunnerv3GetReportDataCountRequest.from_dict(reportsrunnerv3_get_report_data_count_request_dict)

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