plugin version selection to upgrade
Name | Type | Description | Notes |
---|
from waylay.services.rules.models.plugin_update_spec_from_version import PluginUpdateSpecFromVersion
# TODO update the JSON string below
json = "{}"
# create an instance of PluginUpdateSpecFromVersion from a JSON string
plugin_update_spec_from_version_instance = PluginUpdateSpecFromVersion.from_json(json)
# print the JSON string representation of the object
print PluginUpdateSpecFromVersion.to_json()
# convert the object into a dict
plugin_update_spec_from_version_dict = plugin_update_spec_from_version_instance.to_dict()
# create an instance of PluginUpdateSpecFromVersion from a dict
plugin_update_spec_from_version_form_dict = plugin_update_spec_from_version.from_dict(plugin_update_spec_from_version_dict)