Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

PluginSetting

The plugins

Properties

Name Type Description Notes
plugin_name str The pluginName
json_setting str The jsonSetting
is_active bool The plugin can be deactivated. By default, if a setting exists, the plugin is also activated

Example

from touroptimizer_py_client.models.plugin_setting import PluginSetting

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

# convert the object into a dict
plugin_setting_dict = plugin_setting_instance.to_dict()
# create an instance of PluginSetting from a dict
plugin_setting_from_dict = PluginSetting.from_dict(plugin_setting_dict)

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