Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1019 Bytes

File metadata and controls

30 lines (21 loc) · 1019 Bytes

CacheCleanerRequest

Properties

Name Type Description Notes
installations_ids List[int]
tags List[str] [optional]

Example

from plesk_wp_toolkit_client.models.cache_cleaner_request import CacheCleanerRequest

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

# convert the object into a dict
cache_cleaner_request_dict = cache_cleaner_request_instance.to_dict()
# create an instance of CacheCleanerRequest from a dict
cache_cleaner_request_from_dict = CacheCleanerRequest.from_dict(cache_cleaner_request_dict)

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