> For the complete documentation index, see [llms.txt](https://docs.usemoon.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.usemoon.ai/sdks/python/log.md).

# Log

## Properties

| Name                  | Type                                                       | Description | Notes       |
| --------------------- | ---------------------------------------------------------- | ----------- | ----------- |
| **triggers**          | [**List\[TriggerOutput\]**](/sdks/python/triggeroutput.md) |             | \[optional] |
| **log\_index**        | **str**                                                    |             |             |
| **transaction\_hash** | **str**                                                    |             |             |
| **address**           | **str**                                                    |             |             |
| **data**              | **str**                                                    |             |             |
| **topic0**            | **str**                                                    |             |             |
| **topic1**            | **str**                                                    |             |             |
| **topic2**            | **str**                                                    |             |             |
| **topic3**            | **str**                                                    |             |             |

## Example

```python
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\]](/sdks/python.md#documentation-for-models) [\[Back to API list\]](/sdks/python.md#documentation-for-api-endpoints) [\[Back to README\]](/sdks/python.md)
