Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.42 KB

File metadata and controls

33 lines (24 loc) · 1.42 KB

TRLinkDestinationTransferPeerPath

Destination peer path for transaction

Properties

Name Type Description Notes
type str Destination peer type (e.g., ONE_TIME_ADDRESS, VAULT_ACCOUNT)
id str Destination peer ID [optional]
wallet_id str Destination wallet ID [optional]
one_time_address TRLinkOneTimeAddress [optional]

Example

from fireblocks.models.tr_link_destination_transfer_peer_path import TRLinkDestinationTransferPeerPath

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

# convert the object into a dict
tr_link_destination_transfer_peer_path_dict = tr_link_destination_transfer_peer_path_instance.to_dict()
# create an instance of TRLinkDestinationTransferPeerPath from a dict
tr_link_destination_transfer_peer_path_from_dict = TRLinkDestinationTransferPeerPath.from_dict(tr_link_destination_transfer_peer_path_dict)

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