Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

ListOwnedCollectionsResponse.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

ListOwnedCollectionsResponse

Properties

Name Type Description Notes
paging Paging [optional]
data List[CollectionOwnershipResponse] [optional]

Example

from fireblocks.models.list_owned_collections_response import ListOwnedCollectionsResponse

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

# convert the object into a dict
list_owned_collections_response_dict = list_owned_collections_response_instance.to_dict()
# create an instance of ListOwnedCollectionsResponse from a dict
list_owned_collections_response_from_dict = ListOwnedCollectionsResponse.from_dict(list_owned_collections_response_dict)

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