RunReportResponse is the return type of the RunReportByID(), RunImmediateReport() and Transpose() apis.
| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[Reportsv3ReportResult] | Report data. | [optional] |
| facets | List[Reportsv3FilterHeaders] | Facets. | [optional] |
| report_layout | Reportsv3ReportDisplayLayout | [optional] | |
| total_number_of_rows | int | Total Rows Count. | [optional] |
from ibm_gdsc_sdk_saas.models.reportsv3_run_report_response import Reportsv3RunReportResponse
# TODO update the JSON string below
json = "{}"
# create an instance of Reportsv3RunReportResponse from a JSON string
reportsv3_run_report_response_instance = Reportsv3RunReportResponse.from_json(json)
# print the JSON string representation of the object
print(Reportsv3RunReportResponse.to_json())
# convert the object into a dict
reportsv3_run_report_response_dict = reportsv3_run_report_response_instance.to_dict()
# create an instance of Reportsv3RunReportResponse from a dict
reportsv3_run_report_response_from_dict = Reportsv3RunReportResponse.from_dict(reportsv3_run_report_response_dict)