Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

TemplateModification.md

File metadata and controls

31 lines (22 loc) · 1.19 KB

TemplateModification

Properties

Name Type Description Notes
operation TemplateModificationOperation
updates List[PluginUpdateSpec]
reload_tasks bool Should all tasks created from the template be reloaded [optional] [default to False]

Example

from waylay.services.rules.models.template_modification import TemplateModification

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

# convert the object into a dict
template_modification_dict = template_modification_instance.to_dict()
# create an instance of TemplateModification from a dict
template_modification_form_dict = template_modification.from_dict(template_modification_dict)

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