| Name |
Type |
Description |
Notes |
| count |
float |
The total count of linked tokens |
|
from fireblocks.models.linked_tokens_count import LinkedTokensCount
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedTokensCount from a JSON string
linked_tokens_count_instance = LinkedTokensCount.from_json(json)
# print the JSON string representation of the object
print(LinkedTokensCount.to_json())
# convert the object into a dict
linked_tokens_count_dict = linked_tokens_count_instance.to_dict()
# create an instance of LinkedTokensCount from a dict
linked_tokens_count_from_dict = LinkedTokensCount.from_dict(linked_tokens_count_dict)
[Back to Model list] [Back to API list] [Back to README]