Error body for address registry operations (4xx and 5xx).
| 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 |
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)