Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.21 KB

File metadata and controls

31 lines (23 loc) · 1.21 KB

DetailedUpgradeStatus

DetailedUpgradeStatus is an UpgradeStatus with additional information.

Properties

Name Type Description Notes
status UpgradeStatus [default to UpgradeStatus.UNSPECIFIED]
last_update_time datetime
error_message str The error message if the status is failed. [optional]

Example

from ri.apiclient.models.detailed_upgrade_status import DetailedUpgradeStatus

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

# convert the object into a dict
detailed_upgrade_status_dict = detailed_upgrade_status_instance.to_dict()
# create an instance of DetailedUpgradeStatus from a dict
detailed_upgrade_status_from_dict = DetailedUpgradeStatus.from_dict(detailed_upgrade_status_dict)

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