You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A field indicating how you would like trait to be displayed
[optional]
Example
fromfireblocks.models.collection_token_metadata_attribute_dtoimportCollectionTokenMetadataAttributeDto# TODO update the JSON string belowjson="{}"# create an instance of CollectionTokenMetadataAttributeDto from a JSON stringcollection_token_metadata_attribute_dto_instance=CollectionTokenMetadataAttributeDto.from_json(json)
# print the JSON string representation of the objectprint(CollectionTokenMetadataAttributeDto.to_json())
# convert the object into a dictcollection_token_metadata_attribute_dto_dict=collection_token_metadata_attribute_dto_instance.to_dict()
# create an instance of CollectionTokenMetadataAttributeDto from a dictcollection_token_metadata_attribute_dto_from_dict=CollectionTokenMetadataAttributeDto.from_dict(collection_token_metadata_attribute_dto_dict)