Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.57 KB

CollectionDeployRequestDto.md

File metadata and controls

35 lines (26 loc) · 1.57 KB

CollectionDeployRequestDto

Properties

Name Type Description Notes
base_asset_id str The blockchain base assetId
vault_account_id str The id of the vault account that initiated the request to issue the token
type CollectionType
name str 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

from fireblocks.models.collection_deploy_request_dto import CollectionDeployRequestDto

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

# convert the object into a dict
collection_deploy_request_dto_dict = collection_deploy_request_dto_instance.to_dict()
# create an instance of CollectionDeployRequestDto from a dict
collection_deploy_request_dto_from_dict = CollectionDeployRequestDto.from_dict(collection_deploy_request_dto_dict)

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