Information about the blockchain transaction.
| Name | Type | Description | Notes |
|---|---|---|---|
| tx_hash | str | The hash of the transaction | [optional] |
| origin | str | The origin address of the transaction | [optional] |
| destination | str | The destination address of the transaction | [optional] |
from fireblocks.models.travel_rule_transaction_blockchain_info import TravelRuleTransactionBlockchainInfo
# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleTransactionBlockchainInfo from a JSON string
travel_rule_transaction_blockchain_info_instance = TravelRuleTransactionBlockchainInfo.from_json(json)
# print the JSON string representation of the object
print(TravelRuleTransactionBlockchainInfo.to_json())
# convert the object into a dict
travel_rule_transaction_blockchain_info_dict = travel_rule_transaction_blockchain_info_instance.to_dict()
# create an instance of TravelRuleTransactionBlockchainInfo from a dict
travel_rule_transaction_blockchain_info_from_dict = TravelRuleTransactionBlockchainInfo.from_dict(travel_rule_transaction_blockchain_info_dict)