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
Plugin slugs to install. Use GET /api/hosting/v1/wordpress/plugins to discover available slugs.
Example
fromhostinger_api.models.word_press_v1_plugins_install_plugins_requestimportWordPressV1PluginsInstallPluginsRequest# TODO update the JSON string belowjson="{}"# create an instance of WordPressV1PluginsInstallPluginsRequest from a JSON stringword_press_v1_plugins_install_plugins_request_instance=WordPressV1PluginsInstallPluginsRequest.from_json(json)
# print the JSON string representation of the objectprint(WordPressV1PluginsInstallPluginsRequest.to_json())
# convert the object into a dictword_press_v1_plugins_install_plugins_request_dict=word_press_v1_plugins_install_plugins_request_instance.to_dict()
# create an instance of WordPressV1PluginsInstallPluginsRequest from a dictword_press_v1_plugins_install_plugins_request_from_dict=WordPressV1PluginsInstallPluginsRequest.from_dict(word_press_v1_plugins_install_plugins_request_dict)