You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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`.
Example
fromcobo_waas2.models.address_transfer_destination_account_outputimportAddressTransferDestinationAccountOutput# TODO update the JSON string belowjson="{}"# create an instance of AddressTransferDestinationAccountOutput from a JSON stringaddress_transfer_destination_account_output_instance=AddressTransferDestinationAccountOutput.from_json(json)
# print the JSON string representation of the objectprint(AddressTransferDestinationAccountOutput.to_json())
# convert the object into a dictaddress_transfer_destination_account_output_dict=address_transfer_destination_account_output_instance.to_dict()
# create an instance of AddressTransferDestinationAccountOutput from a dictaddress_transfer_destination_account_output_from_dict=AddressTransferDestinationAccountOutput.from_dict(address_transfer_destination_account_output_dict)