Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

TokenCollectionResponse.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

TokenCollectionResponse

Properties

Name Type Description Notes
id str
name str [optional]
symbol str [optional]

Example

from fireblocks.models.token_collection_response import TokenCollectionResponse

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

# convert the object into a dict
token_collection_response_dict = token_collection_response_instance.to_dict()
# create an instance of TokenCollectionResponse from a dict
token_collection_response_from_dict = TokenCollectionResponse.from_dict(token_collection_response_dict)

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