You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flag indicating if the actuator was Successfully Executed
[optional]
error
str
error message in case of failure
[optional]
data
object
[optional]
log
List[object]
[optional]
Example
fromwaylay.services.rules.models.transformer_execution_resultimportTransformerExecutionResult# TODO update the JSON string belowjson="{}"# create an instance of TransformerExecutionResult from a JSON stringtransformer_execution_result_instance=TransformerExecutionResult.from_json(json)
# print the JSON string representation of the objectprintTransformerExecutionResult.to_json()
# convert the object into a dicttransformer_execution_result_dict=transformer_execution_result_instance.to_dict()
# create an instance of TransformerExecutionResult from a dicttransformer_execution_result_form_dict=transformer_execution_result.from_dict(transformer_execution_result_dict)