The configuration settings for the web plugin instance.
| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | Controls whether the web plugin is active and operational. | [optional] |
| settings | str | The JSON-formatted configuration settings for the web plugin. |
from docspace_api_sdk.models.web_plugin_requests import WebPluginRequests
# TODO update the JSON string below
json = "{}"
# create an instance of WebPluginRequests from a JSON string
web_plugin_requests_instance = WebPluginRequests.from_json(json)
# print the JSON string representation of the object
print(WebPluginRequests.to_json())
# convert the object into a dict
web_plugin_requests_dict = web_plugin_requests_instance.to_dict()
# create an instance of WebPluginRequests from a dict
web_plugin_requests_from_dict = WebPluginRequests.from_dict(web_plugin_requests_dict)