Information about the transaction destination type DepositToWallet. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type. Switch between the tabs to display the properties for different transaction destinations.
| Name | Type | Description | Notes |
|---|---|---|---|
| destination_type | TransactionDestinationType | ||
| wallet_id | str | The wallet ID. | |
| wallet_type | WalletType | ||
| wallet_subtype | WalletSubtype | ||
| trading_account_type | str | The trading account type. | [optional] |
| exchange_id | ExchangeId | [optional] | |
| amount | str | The transfer amount. For example, if you trade 1.5 BTC, then the value is `1.5`. |
from cobo_waas2.models.transaction_deposit_to_wallet_destination import TransactionDepositToWalletDestination
# TODO update the JSON string below
json = "{}"
# create an instance of TransactionDepositToWalletDestination from a JSON string
transaction_deposit_to_wallet_destination_instance = TransactionDepositToWalletDestination.from_json(json)
# print the JSON string representation of the object
print(TransactionDepositToWalletDestination.to_json())
# convert the object into a dict
transaction_deposit_to_wallet_destination_dict = transaction_deposit_to_wallet_destination_instance.to_dict()
# create an instance of TransactionDepositToWalletDestination from a dict
transaction_deposit_to_wallet_destination_from_dict = TransactionDepositToWalletDestination.from_dict(transaction_deposit_to_wallet_destination_dict)