Name | Type | Description | Notes |
---|---|---|---|
success | Dict[str, SuccessOperationResultValue] | Object containing the successful operation results. The keys will be task ids. | |
failure | Dict[str, FailureOperationResultValue] | Object containing the unsuccessful operation results. The keys will be tasks ids. |
from waylay.services.rules.models.operation_result_object_results import OperationResultObjectResults
# TODO update the JSON string below
json = "{}"
# create an instance of OperationResultObjectResults from a JSON string
operation_result_object_results_instance = OperationResultObjectResults.from_json(json)
# print the JSON string representation of the object
print OperationResultObjectResults.to_json()
# convert the object into a dict
operation_result_object_results_dict = operation_result_object_results_instance.to_dict()
# create an instance of OperationResultObjectResults from a dict
operation_result_object_results_form_dict = operation_result_object_results.from_dict(operation_result_object_results_dict)