Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.45 KB

SourceTransferPeerPathResponse.md

File metadata and controls

35 lines (26 loc) · 2.45 KB

SourceTransferPeerPathResponse

Source of the transaction.

Properties

Name Type Description Notes
type TransferPeerPathType
sub_type str In case the type is set to `EXCHANGE_ACCOUNT` or `FIAT_ACCOUNT`, the specific exchange vendor name or fiat vendor name. In case the type is set to `INTERNAL_WALLET` or `EXTERNAL_WALLET`, the subType is set to `Internal` or `External`. [optional]
id str The ID of the peer. You can retrieve the ID of each venue object using the endpoints for listing vault accounts, listing exchange account, listing fiat accounts, listing internal wallets, listing external wallets, listing network connections. For the other types, this parameter is not needed. [optional]
name str The name of the peer. [optional]
wallet_id str [optional]
trading_account str If this transaction is an exchange internal transfer, this field will be populated with the type of that trading account. [optional]

Example

from fireblocks.models.source_transfer_peer_path_response import SourceTransferPeerPathResponse

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

# convert the object into a dict
source_transfer_peer_path_response_dict = source_transfer_peer_path_response_instance.to_dict()
# create an instance of SourceTransferPeerPathResponse from a dict
source_transfer_peer_path_response_from_dict = SourceTransferPeerPathResponse.from_dict(source_transfer_peer_path_response_dict)

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