The information about the destination BTC_BIP_137_Signature. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type.
| Name | Type | Description | Notes |
|---|---|---|---|
| destination_type | MessageSignDestinationType | ||
| message_bip137 | str | Message to be signed, in hexadecimal format. |
from cobo_waas2.models.btcbip137_message_sign_destination import BTCBIP137MessageSignDestination
# TODO update the JSON string below
json = "{}"
# create an instance of BTCBIP137MessageSignDestination from a JSON string
btcbip137_message_sign_destination_instance = BTCBIP137MessageSignDestination.from_json(json)
# print the JSON string representation of the object
print(BTCBIP137MessageSignDestination.to_json())
# convert the object into a dict
btcbip137_message_sign_destination_dict = btcbip137_message_sign_destination_instance.to_dict()
# create an instance of BTCBIP137MessageSignDestination from a dict
btcbip137_message_sign_destination_from_dict = BTCBIP137MessageSignDestination.from_dict(btcbip137_message_sign_destination_dict)