Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.45 KB

OperationResultObjectResults.md

File metadata and controls

31 lines (22 loc) · 1.45 KB

OperationResultObjectResults

Operation results

Properties

Name Type Description Notes
success Dict[str, SuccessOperationResultValue] Object containing the successful operation results. The keys will be resource ids or resource type ids.
failure Dict[str, FailureOperationResultValue] Object containing the unsuccessful operation results. The keys will be resource ids or resource type ids.

Example

from waylay.services.resources.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]