Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

File metadata and controls

31 lines (22 loc) · 1.26 KB

AddressRegistryError

Error body for address registry operations (4xx and 5xx).

Properties

Name Type Description Notes
code int Application error code when present. Typical values include 2140 (403 — workspace not opted in to the address registry) and 2142 (404 — not found). Other codes may appear, including on server errors. [optional]
message str Human-readable error message

Example

from fireblocks.models.address_registry_error import AddressRegistryError

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

# convert the object into a dict
address_registry_error_dict = address_registry_error_instance.to_dict()
# create an instance of AddressRegistryError from a dict
address_registry_error_from_dict = AddressRegistryError.from_dict(address_registry_error_dict)

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