Conekta::PayoutOrder
April 29, 2024 ยท 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 | CustomerInfoJustCustomerId | ||
| 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::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
)