Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1022 Bytes

File metadata and controls

29 lines (21 loc) · 1022 Bytes

PluginsConfig

The configuration settings to connect the special add-ons.

Properties

Name Type Description Notes
plugins_data List[str] The array of absolute URLs to the plugin configuration files. [optional] [readonly]

Example

from docspace_api_sdk.models.plugins_config import PluginsConfig

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

# convert the object into a dict
plugins_config_dict = plugins_config_instance.to_dict()
# create an instance of PluginsConfig from a dict
plugins_config_from_dict = PluginsConfig.from_dict(plugins_config_dict)

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