Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.68 KB

File metadata and controls

31 lines (22 loc) · 1.68 KB

TransactionCosmosContractDestination

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.

Properties

Name Type Description Notes
destination_type TransactionDestinationType
cosmos_messages List[TransactionCosmosMessage]

Example

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)

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