Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.45 KB

File metadata and controls

32 lines (23 loc) · 1.45 KB

AccessRegistryCurrentStateResponse2

Properties

Name Type Description Notes
data List[AccessRegistryAddressItem] Array of active addresses in the access registry
next str Cursor for next page [optional]
prev str Cursor for previous page [optional]
total float Total count of active addresses in the access registry [optional]

Example

from fireblocks.models.access_registry_current_state_response2 import AccessRegistryCurrentStateResponse2

# TODO update the JSON string below
json = "{}"
# create an instance of AccessRegistryCurrentStateResponse2 from a JSON string
access_registry_current_state_response2_instance = AccessRegistryCurrentStateResponse2.from_json(json)
# print the JSON string representation of the object
print(AccessRegistryCurrentStateResponse2.to_json())

# convert the object into a dict
access_registry_current_state_response2_dict = access_registry_current_state_response2_instance.to_dict()
# create an instance of AccessRegistryCurrentStateResponse2 from a dict
access_registry_current_state_response2_from_dict = AccessRegistryCurrentStateResponse2.from_dict(access_registry_current_state_response2_dict)

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