Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.43 KB

File metadata and controls

32 lines (23 loc) · 1.43 KB

AccessRegistryCurrentStateResponse

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_response import AccessRegistryCurrentStateResponse

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

# convert the object into a dict
access_registry_current_state_response_dict = access_registry_current_state_response_instance.to_dict()
# create an instance of AccessRegistryCurrentStateResponse from a dict
access_registry_current_state_response_from_dict = AccessRegistryCurrentStateResponse.from_dict(access_registry_current_state_response_dict)

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