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 string that represents the name of the collection
symbol
str
A string that represents the symbol of the collection
admin_address
str
The EVM address of the user that will be set as the admin user of the collection
display_name
str
A string to display as a name of the collection
[optional]
Example
fromfireblocks.models.collection_deploy_request_dtoimportCollectionDeployRequestDto# TODO update the JSON string belowjson="{}"# create an instance of CollectionDeployRequestDto from a JSON stringcollection_deploy_request_dto_instance=CollectionDeployRequestDto.from_json(json)
# print the JSON string representation of the objectprint(CollectionDeployRequestDto.to_json())
# convert the object into a dictcollection_deploy_request_dto_dict=collection_deploy_request_dto_instance.to_dict()
# create an instance of CollectionDeployRequestDto from a dictcollection_deploy_request_dto_from_dict=CollectionDeployRequestDto.from_dict(collection_deploy_request_dto_dict)