Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

ErrorResponse

The response of a failed request.

Properties

Name Type Description Notes
error_code int The error code. Refer to Error codes and status codes for more details.
error_message str The error description.
error_id str The error log ID. You can provide the error ID when submitting a ticket to help Cobo to locate the issue.

Example

from cobo_waas2.models.error_response import ErrorResponse

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

# convert the object into a dict
error_response_dict = error_response_instance.to_dict()
# create an instance of ErrorResponse from a dict
error_response_from_dict = ErrorResponse.from_dict(error_response_dict)

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