Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 939 Bytes

File metadata and controls

30 lines (21 loc) · 939 Bytes

Integrity

Properties

Name Type Description Notes
available bool Availability of 'Check WordPress Integrity' feature
tasks IntegrityTasks

Example

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)

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