Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

FailureOperationResultValue.md

File metadata and controls

31 lines (22 loc) · 1.2 KB

FailureOperationResultValue

The keys will be resource ids or resource type ids.

Properties

Name Type Description Notes
status_code int The statusCode of the operation
error str Error description of what went wrong.

Example

from waylay.services.resources.models.failure_operation_result_value import FailureOperationResultValue

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

# convert the object into a dict
failure_operation_result_value_dict = failure_operation_result_value_instance.to_dict()
# create an instance of FailureOperationResultValue from a dict
failure_operation_result_value_form_dict = failure_operation_result_value.from_dict(failure_operation_result_value_dict)

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