Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

InstallationStatus

Properties

Name Type Description Notes
alive bool Installation is alive
infected bool Installation is quarantined
unsupported bool Installation is unsupported
multisite bool Multisite status

Example

from plesk_wp_toolkit_client.models.installation_status import InstallationStatus

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

# convert the object into a dict
installation_status_dict = installation_status_instance.to_dict()
# create an instance of InstallationStatus from a dict
installation_status_from_dict = InstallationStatus.from_dict(installation_status_dict)

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