Log

Properties

Name
Type
Description
Notes

triggers

[optional]

log_index

str

transaction_hash

str

address

str

data

str

topic0

str

topic1

str

topic2

str

topic3

str

Example

from moonsdk.models.log import Log

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

# convert the object into a dict
log_dict = log_instance.to_dict()
# create an instance of Log from a dict
log_form_dict = log.from_dict(log_dict)

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

Last updated