Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.07 KB

File metadata and controls

38 lines (29 loc) · 2.07 KB

WordPressV1PluginsAvailablePluginResource

Properties

Name Type Description Notes
slug str Plugin slug used when installing the plugin [optional]
title str Human readable plugin name [optional]
description str Short plugin description [optional]
onboarding_description_slug str Translation slug for the onboarding description [optional]
recommended_description_slug str Translation slug for the recommended description [optional]
link str Link to the plugin page on WordPress.org [optional]
version str Latest available plugin version [optional]
required_wordpress_version str Minimum WordPress version required by the plugin [optional]
required_php_version str Minimum PHP version required by the plugin [optional]
is_plan_upgrade_needed bool Whether a hosting plan upgrade is required to use the plugin [optional]

Example

from hostinger_api.models.word_press_v1_plugins_available_plugin_resource import WordPressV1PluginsAvailablePluginResource

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

# convert the object into a dict
word_press_v1_plugins_available_plugin_resource_dict = word_press_v1_plugins_available_plugin_resource_instance.to_dict()
# create an instance of WordPressV1PluginsAvailablePluginResource from a dict
word_press_v1_plugins_available_plugin_resource_from_dict = WordPressV1PluginsAvailablePluginResource.from_dict(word_press_v1_plugins_available_plugin_resource_dict)

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