Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

SuccessOperationResultValue.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

SuccessOperationResultValue

The keys will be task ids.

Properties

Name Type Description Notes
status_code int The statusCode of the operation

Example

from waylay.services.rules.models.success_operation_result_value import SuccessOperationResultValue

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

# convert the object into a dict
success_operation_result_value_dict = success_operation_result_value_instance.to_dict()
# create an instance of SuccessOperationResultValue from a dict
success_operation_result_value_form_dict = success_operation_result_value.from_dict(success_operation_result_value_dict)

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