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
Total count of active addresses in the access registry
[optional]
Example
fromfireblocks.models.access_registry_current_state_responseimportAccessRegistryCurrentStateResponse# TODO update the JSON string belowjson="{}"# create an instance of AccessRegistryCurrentStateResponse from a JSON stringaccess_registry_current_state_response_instance=AccessRegistryCurrentStateResponse.from_json(json)
# print the JSON string representation of the objectprint(AccessRegistryCurrentStateResponse.to_json())
# convert the object into a dictaccess_registry_current_state_response_dict=access_registry_current_state_response_instance.to_dict()
# create an instance of AccessRegistryCurrentStateResponse from a dictaccess_registry_current_state_response_from_dict=AccessRegistryCurrentStateResponse.from_dict(access_registry_current_state_response_dict)