Skip to content

Files

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

PluginUpdateSpecFromVersion.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

PluginUpdateSpecFromVersion

plugin version selection to upgrade

Properties

Name Type Description Notes

Example

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)

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