Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 956 Bytes

File metadata and controls

30 lines (21 loc) · 956 Bytes

PluginSettings

The PluginSettings

Properties

Name Type Description Notes
plugins List[PluginSetting] The plugins

Example

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)

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