Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.36 KB

CollectionOwnershipResponse.md

File metadata and controls

34 lines (25 loc) · 1.36 KB

CollectionOwnershipResponse

Properties

Name Type Description Notes
id str Fireblocks collection id
name str Collection name [optional]
symbol str Collection symbol [optional]
standard str Collection contract standard [optional]
blockchain_descriptor str Collection's blockchain
contract_address str Collection contract standard [optional]

Example

from fireblocks.models.collection_ownership_response import CollectionOwnershipResponse

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

# convert the object into a dict
collection_ownership_response_dict = collection_ownership_response_instance.to_dict()
# create an instance of CollectionOwnershipResponse from a dict
collection_ownership_response_from_dict = CollectionOwnershipResponse.from_dict(collection_ownership_response_dict)

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