Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

BlockchainDestination

Properties

Name Type Description Notes
type str The type of destination. Use "BLOCKCHAIN" for blockchain address destinations.
address BlockchainAddress

Example

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)

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