The PluginSettings
| Name | Type | Description | Notes |
|---|---|---|---|
| plugins | List[PluginSetting] | The plugins |
from touroptimizer_py_client.models.plugin_settings import PluginSettings
# TODO update the JSON string below
json = "{}"
# create an instance of PluginSettings from a JSON string
plugin_settings_instance = PluginSettings.from_json(json)
# print the JSON string representation of the object
print(PluginSettings.to_json())
# convert the object into a dict
plugin_settings_dict = plugin_settings_instance.to_dict()
# create an instance of PluginSettings from a dict
plugin_settings_from_dict = PluginSettings.from_dict(plugin_settings_dict)