Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 954 Bytes

File metadata and controls

29 lines (20 loc) · 954 Bytes

LinkedTokensCount

Properties

Name Type Description Notes
count float The total count of linked tokens

Example

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]