# ConveyorFinanceControllerResponse

## Properties

| Name        | Type                                                                                   | Description | Notes       |
| ----------- | -------------------------------------------------------------------------------------- | ----------- | ----------- |
| **input**   | [**InputBody**](https://docs.usemoon.ai/sdks/python/inputbody)                         |             | \[optional] |
| **convey**  | [**TransactionResponse**](https://docs.usemoon.ai/sdks/python/transactionresponse)     |             | \[optional] |
| **data**    | [**TransactionData**](https://docs.usemoon.ai/sdks/python/transactiondata)             |             | \[optional] |
| **tx**      | [**TransactionResponseTx**](https://docs.usemoon.ai/sdks/python/transactionresponsetx) |             | \[optional] |
| **signed**  | [**Transaction**](https://docs.usemoon.ai/sdks/python/transaction)                     |             | \[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\]](https://docs.usemoon.ai/sdks/python/..#documentation-for-models) [\[Back to API list\]](https://docs.usemoon.ai/sdks/python/..#documentation-for-api-endpoints) [\[Back to README\]](https://docs.usemoon.ai/sdks/python)
