Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

AssetNotFoundErrorResponse.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

AssetNotFoundErrorResponse

Properties

Name Type Description Notes
message str Not found error code
code str Error code

Example

from fireblocks.models.asset_not_found_error_response import AssetNotFoundErrorResponse

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

# convert the object into a dict
asset_not_found_error_response_dict = asset_not_found_error_response_instance.to_dict()
# create an instance of AssetNotFoundErrorResponse from a dict
asset_not_found_error_response_from_dict = AssetNotFoundErrorResponse.from_dict(asset_not_found_error_response_dict)

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