Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.56 KB

File metadata and controls

35 lines (26 loc) · 1.56 KB

AddressRegistryLegalEntity

Legal entity details for a blockchain address.

Properties

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]
email str Travel Rule contact email when available.

Example

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)

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