Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.57 KB

File metadata and controls

30 lines (21 loc) · 1.57 KB

TransactionTransferToAddressDestinationUtxoOutputsInner

Properties

Name Type Description Notes
address str The destination address. [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_utxo_outputs_inner import TransactionTransferToAddressDestinationUtxoOutputsInner

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

# convert the object into a dict
transaction_transfer_to_address_destination_utxo_outputs_inner_dict = transaction_transfer_to_address_destination_utxo_outputs_inner_instance.to_dict()
# create an instance of TransactionTransferToAddressDestinationUtxoOutputsInner from a dict
transaction_transfer_to_address_destination_utxo_outputs_inner_from_dict = TransactionTransferToAddressDestinationUtxoOutputsInner.from_dict(transaction_transfer_to_address_destination_utxo_outputs_inner_dict)

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