UpdateReportResponse containes the report id and a schedule flag of the updated report from the UpdateReport() api.
| Name | Type | Description | Notes |
|---|---|---|---|
| is_scheduled | bool | The is_scheduled is a flag says is report scheduled. | [optional] |
| report_id | str | Unique Report ID. | [optional] |
from ibm_gdsc_sdk_saas.models.reportsv3_partial_report_update_response import Reportsv3PartialReportUpdateResponse
# TODO update the JSON string below
json = "{}"
# create an instance of Reportsv3PartialReportUpdateResponse from a JSON string
reportsv3_partial_report_update_response_instance = Reportsv3PartialReportUpdateResponse.from_json(json)
# print the JSON string representation of the object
print(Reportsv3PartialReportUpdateResponse.to_json())
# convert the object into a dict
reportsv3_partial_report_update_response_dict = reportsv3_partial_report_update_response_instance.to_dict()
# create an instance of Reportsv3PartialReportUpdateResponse from a dict
reportsv3_partial_report_update_response_from_dict = Reportsv3PartialReportUpdateResponse.from_dict(reportsv3_partial_report_update_response_dict)