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 total number of active addresses in the access registry
Example
fromfireblocks.models.access_registry_summary_responseimportAccessRegistrySummaryResponse# TODO update the JSON string belowjson="{}"# create an instance of AccessRegistrySummaryResponse from a JSON stringaccess_registry_summary_response_instance=AccessRegistrySummaryResponse.from_json(json)
# print the JSON string representation of the objectprint(AccessRegistrySummaryResponse.to_json())
# convert the object into a dictaccess_registry_summary_response_dict=access_registry_summary_response_instance.to_dict()
# create an instance of AccessRegistrySummaryResponse from a dictaccess_registry_summary_response_from_dict=AccessRegistrySummaryResponse.from_dict(access_registry_summary_response_dict)