The source of the transaction.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | TransferPeerPathType | ||
| sub_type | TransferPeerPathSubType | [optional] | |
| id | str | [optional] | |
| name | str | [optional] | |
| wallet_id | str | [optional] | |
| is_collateral | bool | indicate if the source is collateral account | [optional] |
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)