Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.64 KB

DestinationTransferPeerPathResponse.md

File metadata and controls

35 lines (26 loc) · 2.64 KB

DestinationTransferPeerPathResponse

Destination of the transaction. Note: In case the transaction is sent to multiple destinations, the destinations parameter is be used instead of this.

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.destination_transfer_peer_path_response import DestinationTransferPeerPathResponse

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

# convert the object into a dict
destination_transfer_peer_path_response_dict = destination_transfer_peer_path_response_instance.to_dict()
# create an instance of DestinationTransferPeerPathResponse from a dict
destination_transfer_peer_path_response_from_dict = DestinationTransferPeerPathResponse.from_dict(destination_transfer_peer_path_response_dict)

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