| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | The type of destination. Use "BLOCKCHAIN" for blockchain address destinations. | |
| address | BlockchainAddress |
from fireblocks.models.blockchain_destination import BlockchainDestination
# TODO update the JSON string below
json = "{}"
# create an instance of BlockchainDestination from a JSON string
blockchain_destination_instance = BlockchainDestination.from_json(json)
# print the JSON string representation of the object
print(BlockchainDestination.to_json())
# convert the object into a dict
blockchain_destination_dict = blockchain_destination_instance.to_dict()
# create an instance of BlockchainDestination from a dict
blockchain_destination_from_dict = BlockchainDestination.from_dict(blockchain_destination_dict)