# Conekta::PayoutOrder ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **allowed_payout_methods** | **Array<String>** | The payout methods that are allowed for the payout order. | | | **amount** | **Integer** | The amount of the payout order. | | | **currency** | **String** | The currency in which the payout order is made. | [default to 'MXN'] | | **customer_info** | [**CustomerInfoJustCustomerId**](CustomerInfoJustCustomerId.md) | | | | **metadata** | **Hash<String, Object>** | The metadata of the payout order. | [optional] | | **payout** | [**Payout**](Payout.md) | | | | **reason** | **String** | The reason for the payout order. | | ## Example ```ruby require 'conekta' instance = Conekta::PayoutOrder.new( allowed_payout_methods: ["cashout"], amount: 100, currency: MXN, customer_info: null, metadata: {"custom_client_id":"12345"}, payout: null, reason: Payout order for the customer ) ```