Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

ExecutionTrigger.md

File metadata and controls

32 lines (23 loc) · 1.08 KB

ExecutionTrigger

A trigger that always executes on successful execution of the source.

Properties

Name Type Description Notes
source_label str Unique node label
destination_label str Unique node label
invocation_policy int [optional]

Example

from waylay.services.rules.models.execution_trigger import ExecutionTrigger

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

# convert the object into a dict
execution_trigger_dict = execution_trigger_instance.to_dict()
# create an instance of ExecutionTrigger from a dict
execution_trigger_form_dict = execution_trigger.from_dict(execution_trigger_dict)

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