Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 960 Bytes

ErrorResponseError.md

File metadata and controls

30 lines (21 loc) · 960 Bytes

ErrorResponseError

Properties

Name Type Description Notes
type str
message str

Example

from fireblocks.models.error_response_error import ErrorResponseError

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

# convert the object into a dict
error_response_error_dict = error_response_error_instance.to_dict()
# create an instance of ErrorResponseError from a dict
error_response_error_from_dict = ErrorResponseError.from_dict(error_response_error_dict)

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