Sha256: 3138bc1b4d1c688466c7a3e33d08319c6cc26cc75635f84d7668615e9597fdf7
Contents?: true
Size: 1022 Bytes
Versions: 3
Compression:
Stored size: 1022 Bytes
Contents
# 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 ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
conekta-6.0.5 | docs/PayoutOrder.md |
conekta-6.0.4 | docs/PayoutOrder.md |
conekta-6.0.3 | docs/PayoutOrder.md |