Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.38 KB

OperationResultObjectResults.md

File metadata and controls

30 lines (21 loc) · 1.38 KB

OperationResultObjectResults

Properties

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.

Example

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)

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