Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.4 KB

File metadata and controls

31 lines (22 loc) · 1.4 KB

Reportsv3PartialReportUpdateResponse

UpdateReportResponse containes the report id and a schedule flag of the updated report from the UpdateReport() api.

Properties

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]

Example

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)

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