Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1022 Bytes

PayoutOrder.md

File metadata and controls

30 lines (24 loc) · 1022 Bytes

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
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: [&quot;cashout&quot;],
  amount: 100,
  currency: MXN,
  customer_info: null,
  metadata: {&quot;custom_client_id&quot;:&quot;12345&quot;},
  payout: null,
  reason: Payout order for the customer
)