Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.43 KB

CollectionTokenMetadataDto.md

File metadata and controls

34 lines (25 loc) · 1.43 KB

CollectionTokenMetadataDto

Properties

Name Type Description Notes
name str Token's name
description str Token's description
image str Token's image URL [optional]
animation_url str Token's animation URL [optional]
external_url str Token's external URL [optional]
attributes List[CollectionTokenMetadataAttributeDto] Token's metadata attributes [optional]

Example

from fireblocks.models.collection_token_metadata_dto import CollectionTokenMetadataDto

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

# convert the object into a dict
collection_token_metadata_dto_dict = collection_token_metadata_dto_instance.to_dict()
# create an instance of CollectionTokenMetadataDto from a dict
collection_token_metadata_dto_from_dict = CollectionTokenMetadataDto.from_dict(collection_token_metadata_dto_dict)

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