Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

DeployedContractNotFoundError

Properties

Name Type Description Notes
message str Not Found error message
code float Error code

Example

from fireblocks.models.deployed_contract_not_found_error import DeployedContractNotFoundError

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

# convert the object into a dict
deployed_contract_not_found_error_dict = deployed_contract_not_found_error_instance.to_dict()
# create an instance of DeployedContractNotFoundError from a dict
deployed_contract_not_found_error_from_dict = DeployedContractNotFoundError.from_dict(deployed_contract_not_found_error_dict)

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