Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

TRLinkTxnInfo

Properties

Name Type Description Notes
originator_wallet_address str Originator's blockchain wallet address
beneficiary_wallet_address str Beneficiary's blockchain wallet address
tx_hash str Blockchain transaction hash

Example

from fireblocks.models.tr_link_txn_info import TRLinkTxnInfo

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

# convert the object into a dict
tr_link_txn_info_dict = tr_link_txn_info_instance.to_dict()
# create an instance of TRLinkTxnInfo from a dict
tr_link_txn_info_from_dict = TRLinkTxnInfo.from_dict(tr_link_txn_info_dict)

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