Conekta::PayoutOrderRequest
July 21, 2026 ยท View on GitHub
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 | PayoutOrderRequestCustomerInfo | ||
| expires_at | Integer | The expiration time of the payout order in Unix timestamp. | |
| metadata | Hash<String, Object> | The metadata of the payout order. | [optional] |
| payout | Payout | ||
| reason | String | The reason for the payout order. |
Example
require 'conekta'
instance = Conekta::PayoutOrderRequest.new(
allowed_payout_methods: [cashout],
amount: 100,
currency: MXN,
customer_info: null,
expires_at: 1700000000,
metadata: {custom_client_id=12345},
payout: null,
reason: Payout order for the customer
)