You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ignore broken installations (by default request fails on them)
[optional]
skip_infected_installations
bool
Ignore quarantined installations (by default request fails on them)
[optional]
skip_unsupported_installations
bool
Ignore unsupported installations (by default request fails on them)
[optional]
Example
fromplesk_wp_toolkit_client.models.refresh_available_updates_requestimportRefreshAvailableUpdatesRequest# TODO update the JSON string belowjson="{}"# create an instance of RefreshAvailableUpdatesRequest from a JSON stringrefresh_available_updates_request_instance=RefreshAvailableUpdatesRequest.from_json(json)
# print the JSON string representation of the objectprint(RefreshAvailableUpdatesRequest.to_json())
# convert the object into a dictrefresh_available_updates_request_dict=refresh_available_updates_request_instance.to_dict()
# create an instance of RefreshAvailableUpdatesRequest from a dictrefresh_available_updates_request_from_dict=RefreshAvailableUpdatesRequest.from_dict(refresh_available_updates_request_dict)