Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.38 KB

DestinationTransferPeerPath.md

File metadata and controls

35 lines (26 loc) · 1.38 KB

DestinationTransferPeerPath

The destination of the transaction.

Properties

Name Type Description Notes
type TransferPeerPathType
sub_type TransferPeerPathSubType [optional]
id str [optional]
name str [optional]
wallet_id str [optional]
one_time_address OneTimeAddress [optional]

Example

from fireblocks.models.destination_transfer_peer_path import DestinationTransferPeerPath

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

# convert the object into a dict
destination_transfer_peer_path_dict = destination_transfer_peer_path_instance.to_dict()
# create an instance of DestinationTransferPeerPath from a dict
destination_transfer_peer_path_from_dict = DestinationTransferPeerPath.from_dict(destination_transfer_peer_path_dict)

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