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

# TransactionResponseInfo

## Properties

| Name                      | Type    | Description | Notes |
| ------------------------- | ------- | ----------- | ----- |
| **conveyor\_gas**         | **str** |             |       |
| **affiliate\_gas**        | **str** |             |       |
| **affiliate\_aggregator** | **str** |             |       |
| **amount\_out**           | **str** |             |       |
| **amount\_out\_min**      | **str** |             |       |

## Example

```python
from moonsdk.models.transaction_response_info import TransactionResponseInfo

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

# convert the object into a dict
transaction_response_info_dict = transaction_response_info_instance.to_dict()
# create an instance of TransactionResponseInfo from a dict
transaction_response_info_form_dict = transaction_response_info.from_dict(transaction_response_info_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)
