You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The date when the address was added to the access registry
Example
fromfireblocks.models.access_registry_address_itemimportAccessRegistryAddressItem# TODO update the JSON string belowjson="{}"# create an instance of AccessRegistryAddressItem from a JSON stringaccess_registry_address_item_instance=AccessRegistryAddressItem.from_json(json)
# print the JSON string representation of the objectprint(AccessRegistryAddressItem.to_json())
# convert the object into a dictaccess_registry_address_item_dict=access_registry_address_item_instance.to_dict()
# create an instance of AccessRegistryAddressItem from a dictaccess_registry_address_item_from_dict=AccessRegistryAddressItem.from_dict(access_registry_address_item_dict)