Legal entity details for a blockchain address.
| Name | Type | Description | Notes |
|---|---|---|---|
| verified | bool | Whether the entity was resolved from verified public registry data (e.g. LEI sources). | |
| entity_name | str | Legal entity display name. | |
| jurisdiction | str | Jurisdiction (e.g. ISO 3166-1 alpha-2 country code). | |
| lei | str | Legal Entity Identifier when available; may be empty when unverified. | |
| travel_rule_providers | List[AddressRegistryTravelRuleProvider] | ||
| str | Travel Rule contact email when available. |
from fireblocks.models.address_registry_legal_entity import AddressRegistryLegalEntity
# TODO update the JSON string below
json = "{}"
# create an instance of AddressRegistryLegalEntity from a JSON string
address_registry_legal_entity_instance = AddressRegistryLegalEntity.from_json(json)
# print the JSON string representation of the object
print(AddressRegistryLegalEntity.to_json())
# convert the object into a dict
address_registry_legal_entity_dict = address_registry_legal_entity_instance.to_dict()
# create an instance of AddressRegistryLegalEntity from a dict
address_registry_legal_entity_from_dict = AddressRegistryLegalEntity.from_dict(address_registry_legal_entity_dict)