The status of the last backup restoration.
Name | Type | Description | Notes |
---|---|---|---|
error | str | Where the system encountered an error during the last backup restoration. * The error message from the restoration log database. * `null` - No occur occurred. | [optional] |
have_outcome | int | Whether the restoration log shows a successful attempt previously occurred, successfully or unsuccessfully. * `1` - Restoration attempt occurred. * `0` - No restoration attempt occurred. | [optional] |
site | str | The WordPress site's URL without the protocol prefix. | [optional] |
status | str | The previous restoration attempt's result. * `success` - Successful restoration. * `error` - The attempted restoration resulted in an error. * `terminated` - The system stopped the restoration process. * `timeout` - The restoration process exceeded the allowed time limit. * `low-disk` - The server's disk space was insufficient to complete the restoration. * `low-quota` - The cPanel account's quota was insufficient to complete the restoration. | [optional] |
from clientapi_cpanel.models.restore_not_in_progress_last_outcome import RestoreNotInProgressLastOutcome
# TODO update the JSON string below
json = "{}"
# create an instance of RestoreNotInProgressLastOutcome from a JSON string
restore_not_in_progress_last_outcome_instance = RestoreNotInProgressLastOutcome.from_json(json)
# print the JSON string representation of the object
print(RestoreNotInProgressLastOutcome.to_json())
# convert the object into a dict
restore_not_in_progress_last_outcome_dict = restore_not_in_progress_last_outcome_instance.to_dict()
# create an instance of RestoreNotInProgressLastOutcome from a dict
restore_not_in_progress_last_outcome_from_dict = RestoreNotInProgressLastOutcome.from_dict(restore_not_in_progress_last_outcome_dict)