Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

CosmosContractCallMessage

The information about the Cosmos message.

Properties

Name Type Description Notes
type_url str The type URL of the Cosmos message.
message str The Base64-encoded Cosmos message.

Example

from cobo_waas2.models.cosmos_contract_call_message import CosmosContractCallMessage

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

# convert the object into a dict
cosmos_contract_call_message_dict = cosmos_contract_call_message_instance.to_dict()
# create an instance of CosmosContractCallMessage from a dict
cosmos_contract_call_message_from_dict = CosmosContractCallMessage.from_dict(cosmos_contract_call_message_dict)

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