> 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/transaction.md).

# Transaction

## Properties

| Name                    | Type                                                                 | Description | Notes       |
| ----------------------- | -------------------------------------------------------------------- | ----------- | ----------- |
| **transaction\_hash**   | **str**                                                              |             | \[optional] |
| **signed\_transaction** | **str**                                                              |             | \[optional] |
| **raw\_transaction**    | **str**                                                              |             | \[optional] |
| **data**                | **str**                                                              |             | \[optional] |
| **transactions**        | [**List\[TransactionData\]**](/sdks/python/transactiondata.md)       |             | \[optional] |
| **moon\_scan\_url**     | **str**                                                              |             | \[optional] |
| **signature**           | **str**                                                              |             | \[optional] |
| **transaction**         | [**Tx**](/sdks/python/tx.md)                                         |             | \[optional] |
| **user\_ops**           | [**List\[TransactionRequest\]**](/sdks/python/transactionrequest.md) |             | \[optional] |
| **userop\_transaction** | **str**                                                              |             | \[optional] |

## Example

```python
from moonsdk.models.transaction import Transaction

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

# convert the object into a dict
transaction_dict = transaction_instance.to_dict()
# create an instance of Transaction from a dict
transaction_form_dict = transaction.from_dict(transaction_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)
