Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.35 KB

File metadata and controls

37 lines (28 loc) · 2.35 KB

TransactionDepositToAddressDestination

Information about the transaction destination type DepositToAddress. 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.

Properties

Name Type Description Notes
destination_type TransactionDestinationType
wallet_id str The wallet ID.
wallet_type WalletType
wallet_subtype WalletSubtype [optional]
address str The destination address.
memo str The memo that identifies a transaction in order to credit the correct account. For transfers out of Cobo Portal, it is highly recommended to include a memo for the chains such as XRP, EOS, XLM, IOST, BNB_BNB, ATOM, LUNA, and TON. [optional]
amount str The transfer amount. For example, if you trade 1.5 BTC, then the value is `1.5`.
tx_info TransactionDepositToAddressDestinationTxInfo [optional]

Example

from cobo_waas2.models.transaction_deposit_to_address_destination import TransactionDepositToAddressDestination

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

# convert the object into a dict
transaction_deposit_to_address_destination_dict = transaction_deposit_to_address_destination_instance.to_dict()
# create an instance of TransactionDepositToAddressDestination from a dict
transaction_deposit_to_address_destination_from_dict = TransactionDepositToAddressDestination.from_dict(transaction_deposit_to_address_destination_dict)

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