Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.46 KB

File metadata and controls

35 lines (26 loc) · 1.46 KB

InstallationUpdates

Properties

Name Type Description Notes
applicable bool Updates might be disabled by the server administrator
auto_updates_available bool Autoupdates availability status
available_version str Version of available update
amount_of_plugins_with_updates int Number of plugins with available updates
amount_of_themes_with_updates int Number of themes with available updates
smart InstallationSmartUpdates
php InstallationSmartPhpUpdates

Example

from plesk_wp_toolkit_client.models.installation_updates import InstallationUpdates

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

# convert the object into a dict
installation_updates_dict = installation_updates_instance.to_dict()
# create an instance of InstallationUpdates from a dict
installation_updates_from_dict = InstallationUpdates.from_dict(installation_updates_dict)

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