Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.49 KB

File metadata and controls

31 lines (22 loc) · 1.49 KB

CosmosContractCallDestination

The information about the transaction destination. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type.

Properties

Name Type Description Notes
destination_type ContractCallDestinationType
cosmos_messages List[CosmosContractCallMessage]

Example

from cobo_waas2.models.cosmos_contract_call_destination import CosmosContractCallDestination

# TODO update the JSON string below
json = "{}"
# create an instance of CosmosContractCallDestination from a JSON string
cosmos_contract_call_destination_instance = CosmosContractCallDestination.from_json(json)
# print the JSON string representation of the object
print(CosmosContractCallDestination.to_json())

# convert the object into a dict
cosmos_contract_call_destination_dict = cosmos_contract_call_destination_instance.to_dict()
# create an instance of CosmosContractCallDestination from a dict
cosmos_contract_call_destination_from_dict = CosmosContractCallDestination.from_dict(cosmos_contract_call_destination_dict)

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