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

# ConveyorFinanceControllerResponse

## Properties

| Name        | Type                                                               | Description | Notes       |
| ----------- | ------------------------------------------------------------------ | ----------- | ----------- |
| **input**   | [**InputBody**](/sdks/python/inputbody.md)                         |             | \[optional] |
| **convey**  | [**TransactionResponse**](/sdks/python/transactionresponse.md)     |             | \[optional] |
| **data**    | [**TransactionData**](/sdks/python/transactiondata.md)             |             | \[optional] |
| **tx**      | [**TransactionResponseTx**](/sdks/python/transactionresponsetx.md) |             | \[optional] |
| **signed**  | [**Transaction**](/sdks/python/transaction.md)                     |             | \[optional] |
| **success** | **bool**                                                           |             |             |
| **message** | **str**                                                            |             |             |

## Example

```python
from moonsdk.models.conveyor_finance_controller_response import ConveyorFinanceControllerResponse

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

# convert the object into a dict
conveyor_finance_controller_response_dict = conveyor_finance_controller_response_instance.to_dict()
# create an instance of ConveyorFinanceControllerResponse from a dict
conveyor_finance_controller_response_form_dict = conveyor_finance_controller_response.from_dict(conveyor_finance_controller_response_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)
