Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.38 KB

File metadata and controls

32 lines (23 loc) · 1.38 KB

TravelRuleTransactionBlockchainInfo

Information about the blockchain transaction.

Properties

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]

Example

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)

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