Information about the transaction destination type COSMOS_Contract. 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 | ||
| cosmos_messages | List[TransactionCosmosMessage] |
from cobo_waas2.models.transaction_cosmos_contract_destination import TransactionCosmosContractDestination
# TODO update the JSON string below
json = "{}"
# create an instance of TransactionCosmosContractDestination from a JSON string
transaction_cosmos_contract_destination_instance = TransactionCosmosContractDestination.from_json(json)
# print the JSON string representation of the object
print(TransactionCosmosContractDestination.to_json())
# convert the object into a dict
transaction_cosmos_contract_destination_dict = transaction_cosmos_contract_destination_instance.to_dict()
# create an instance of TransactionCosmosContractDestination from a dict
transaction_cosmos_contract_destination_from_dict = TransactionCosmosContractDestination.from_dict(transaction_cosmos_contract_destination_dict)