| Name | Type | Description | Notes |
|---|---|---|---|
| available | bool | Availability of 'Check WordPress Integrity' feature | |
| tasks | IntegrityTasks |
from plesk_wp_toolkit_client.models.integrity import Integrity
# TODO update the JSON string below
json = "{}"
# create an instance of Integrity from a JSON string
integrity_instance = Integrity.from_json(json)
# print the JSON string representation of the object
print(Integrity.to_json())
# convert the object into a dict
integrity_dict = integrity_instance.to_dict()
# create an instance of Integrity from a dict
integrity_from_dict = Integrity.from_dict(integrity_dict)