Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

GetOwnershipTokensResponse.md

File metadata and controls

30 lines (21 loc) · 1.13 KB

GetOwnershipTokensResponse

Properties

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

Example

from fireblocks.models.get_ownership_tokens_response import GetOwnershipTokensResponse

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

# convert the object into a dict
get_ownership_tokens_response_dict = get_ownership_tokens_response_instance.to_dict()
# create an instance of GetOwnershipTokensResponse from a dict
get_ownership_tokens_response_from_dict = GetOwnershipTokensResponse.from_dict(get_ownership_tokens_response_dict)

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