Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

File metadata and controls

31 lines (22 loc) · 1.3 KB

RestoreInProgressSites

Properties

Name Type Description Notes
id str The restore process's unique ID. * `null` is the only possible value. * We have not implemented this return. [optional]
site str The WordPress site's URL without the protocol prefix. [optional]
type str The active process type. * `restore` is the only possible value. [optional]

Example

from clientapi_cpanel.models.restore_in_progress_sites import RestoreInProgressSites

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

# convert the object into a dict
restore_in_progress_sites_dict = restore_in_progress_sites_instance.to_dict()
# create an instance of RestoreInProgressSites from a dict
restore_in_progress_sites_from_dict = RestoreInProgressSites.from_dict(restore_in_progress_sites_dict)

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