Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

NotFoundException.md

File metadata and controls

31 lines (22 loc) · 1.05 KB

NotFoundException

Properties

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]

Example

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]