Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.39 KB

File metadata and controls

29 lines (20 loc) · 1.39 KB

WordPressV1PluginsWoocommerceInstalledResource

Properties

Name Type Description Notes
is_installed bool Whether WooCommerce is installed on any WordPress installation of the domain [optional]

Example

from hostinger_api.models.word_press_v1_plugins_woocommerce_installed_resource import WordPressV1PluginsWoocommerceInstalledResource

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

# convert the object into a dict
word_press_v1_plugins_woocommerce_installed_resource_dict = word_press_v1_plugins_woocommerce_installed_resource_instance.to_dict()
# create an instance of WordPressV1PluginsWoocommerceInstalledResource from a dict
word_press_v1_plugins_woocommerce_installed_resource_from_dict = WordPressV1PluginsWoocommerceInstalledResource.from_dict(word_press_v1_plugins_woocommerce_installed_resource_dict)

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