Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.79 KB

File metadata and controls

31 lines (22 loc) · 1.79 KB

TransactionTransferToAddressDestinationAccountOutput

Properties

Name Type Description Notes
address str The destination address. [optional]
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`. [optional]

Example

from cobo_waas2.models.transaction_transfer_to_address_destination_account_output import TransactionTransferToAddressDestinationAccountOutput

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

# convert the object into a dict
transaction_transfer_to_address_destination_account_output_dict = transaction_transfer_to_address_destination_account_output_instance.to_dict()
# create an instance of TransactionTransferToAddressDestinationAccountOutput from a dict
transaction_transfer_to_address_destination_account_output_from_dict = TransactionTransferToAddressDestinationAccountOutput.from_dict(transaction_transfer_to_address_destination_account_output_dict)

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