The information about the destination BTC_BIP_322_Signature. 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 | ||
| message_bip322 | str | Message to be signed, in hexadecimal format. |
from cobo_waas2.models.transaction_bip322_destination import TransactionBIP322Destination
# TODO update the JSON string below
json = "{}"
# create an instance of TransactionBIP322Destination from a JSON string
transaction_bip322_destination_instance = TransactionBIP322Destination.from_json(json)
# print the JSON string representation of the object
print(TransactionBIP322Destination.to_json())
# convert the object into a dict
transaction_bip322_destination_dict = transaction_bip322_destination_instance.to_dict()
# create an instance of TransactionBIP322Destination from a dict
transaction_bip322_destination_from_dict = TransactionBIP322Destination.from_dict(transaction_bip322_destination_dict)