Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.36 KB

File metadata and controls

29 lines (20 loc) · 1.36 KB

WordPressV1PluginsUpdateHostingerPluginRequest

Properties

Name Type Description Notes
slug str Slug of the Hostinger plugin to update to its latest version.

Example

from hostinger_api.models.word_press_v1_plugins_update_hostinger_plugin_request import WordPressV1PluginsUpdateHostingerPluginRequest

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

# convert the object into a dict
word_press_v1_plugins_update_hostinger_plugin_request_dict = word_press_v1_plugins_update_hostinger_plugin_request_instance.to_dict()
# create an instance of WordPressV1PluginsUpdateHostingerPluginRequest from a dict
word_press_v1_plugins_update_hostinger_plugin_request_from_dict = WordPressV1PluginsUpdateHostingerPluginRequest.from_dict(word_press_v1_plugins_update_hostinger_plugin_request_dict)

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