Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

AllowlistResponse

Properties

Name Type Description Notes
data List[AllowlistEntry] Array of allowlist entries
metadata AllowlistMetadata [optional]
total int Total number of allowlist entries
next str Cursor for the next page of results, if available [optional]

Example

from fireblocks.models.allowlist_response import AllowlistResponse

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

# convert the object into a dict
allowlist_response_dict = allowlist_response_instance.to_dict()
# create an instance of AllowlistResponse from a dict
allowlist_response_from_dict = AllowlistResponse.from_dict(allowlist_response_dict)

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