Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.39 KB

TemplateRunInvocation.md

File metadata and controls

33 lines (24 loc) · 1.39 KB

TemplateRunInvocation

Properties

Name Type Description Notes
task_id str Unique task identifier
invocation_id str Unique invocation identifier
sensors Dict[str, TemplateRunSensorResult] The execution result for each of the sensors of the template
actuators Dict[str, TemplateRunActuatorResult] The execution result for each of the actuators of the template
log List[LogsInner]

Example

from waylay.services.rules.models.template_run_invocation import TemplateRunInvocation

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

# convert the object into a dict
template_run_invocation_dict = template_run_invocation_instance.to_dict()
# create an instance of TemplateRunInvocation from a dict
template_run_invocation_form_dict = template_run_invocation.from_dict(template_run_invocation_dict)

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