Name |
Type |
Description |
Notes |
status_code |
int |
HTTP status code |
[optional] |
message |
str |
Error message |
[optional] |
error |
str |
Short description of the HTTP error |
[optional] |
from fireblocks.models.not_found_exception import NotFoundException
# TODO update the JSON string below
json = "{}"
# create an instance of NotFoundException from a JSON string
not_found_exception_instance = NotFoundException.from_json(json)
# print the JSON string representation of the object
print(NotFoundException.to_json())
# convert the object into a dict
not_found_exception_dict = not_found_exception_instance.to_dict()
# create an instance of NotFoundException from a dict
not_found_exception_from_dict = NotFoundException.from_dict(not_found_exception_dict)
[Back to Model list] [Back to API list] [Back to README]