Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.58 KB

File metadata and controls

34 lines (25 loc) · 1.58 KB

InstallationAutoUpdateWithIdResponse

Properties

Name Type Description Notes
available bool Availability of autoupdates feature
safe_update bool Enable creation of backup during updating
core str Update WordPress core automatically
plugins InstallationPluginsSettingsResponse
themes InstallationThemesSettingsResponse
id float Installation ID

Example

from plesk_wp_toolkit_client.models.installation_auto_update_with_id_response import InstallationAutoUpdateWithIdResponse

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

# convert the object into a dict
installation_auto_update_with_id_response_dict = installation_auto_update_with_id_response_instance.to_dict()
# create an instance of InstallationAutoUpdateWithIdResponse from a dict
installation_auto_update_with_id_response_from_dict = InstallationAutoUpdateWithIdResponse.from_dict(installation_auto_update_with_id_response_dict)

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