Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.24 KB

SourceTransferPeerPath.md

File metadata and controls

34 lines (25 loc) · 1.24 KB

SourceTransferPeerPath

The source of the transaction.

Properties

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

Example

from fireblocks.models.source_transfer_peer_path import SourceTransferPeerPath

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

# convert the object into a dict
source_transfer_peer_path_dict = source_transfer_peer_path_instance.to_dict()
# create an instance of SourceTransferPeerPath from a dict
source_transfer_peer_path_from_dict = SourceTransferPeerPath.from_dict(source_transfer_peer_path_dict)

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