Information about the transaction destination type Address. 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 | ||
| account_output | TransactionTransferToAddressDestinationAccountOutput | [optional] | |
| utxo_outputs | List[TransactionTransferToAddressDestinationUtxoOutputsInner] | [optional] | |
| change_address | str | The address used to receive the remaining funds or change from the transaction. | [optional] |
| force_internal | bool | Whether the transaction request must be executed as a Cobo Loop transfer. - `true`: The transaction request must be executed as a Cobo Loop transfer. - `false`: The transaction request may not be executed as a Cobo Loop transfer. If both `force_internal` and `force_external` are set to `false`, the system uses Cobo Loop by default if possible; otherwise, it proceeds with an on-chain transfer. | [optional] |
| force_external | bool | Whether the transaction request must not be executed as a Cobo Loop transfer. - `true`: The transaction request must not be executed as a Cobo Loop transfer. - `false`: The transaction request can be executed as a Cobo Loop transfer. If both `force_internal` and `force_external` are set to `false`, the system uses Cobo Loop by default if possible; otherwise, it proceeds with an on-chain transfer. | [optional] |
from cobo_waas2.models.transaction_transfer_to_address_destination import TransactionTransferToAddressDestination
# TODO update the JSON string below
json = "{}"
# create an instance of TransactionTransferToAddressDestination from a JSON string
transaction_transfer_to_address_destination_instance = TransactionTransferToAddressDestination.from_json(json)
# print the JSON string representation of the object
print(TransactionTransferToAddressDestination.to_json())
# convert the object into a dict
transaction_transfer_to_address_destination_dict = transaction_transfer_to_address_destination_instance.to_dict()
# create an instance of TransactionTransferToAddressDestination from a dict
transaction_transfer_to_address_destination_from_dict = TransactionTransferToAddressDestination.from_dict(transaction_transfer_to_address_destination_dict)