Sha256: 3cdb01649bdd168fc12fd4f6b0183ff338c04f208aa925a3c62df0089f3d56ac
Contents?: true
Size: 1.78 KB
Versions: 3
Compression:
Stored size: 1.78 KB
Contents
# Conekta::PayoutOrderResponse ## 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. | | | **created_at** | **Integer** | The creation date of the payout order. | | | **currency** | **String** | The currency in which the payout order is made. | [default to 'MXN'] | | **customer_info** | [**PayoutOrderResponseCustomerInfo**](PayoutOrderResponseCustomerInfo.md) | | | | **expires_at** | **Integer** | The expiration date of the payout order. | [optional] | | **id** | **String** | The id of the payout order. | | | **livemode** | **Boolean** | The live mode of the payout order. | | | **object** | **String** | The object of the payout order. | | | **metadata** | **Hash<String, Object>** | The metadata of the payout order. | [optional] | | **payouts** | [**Array<PayoutOrderPayoutsItem>**](PayoutOrderPayoutsItem.md) | The payout information of the payout order. | | | **reason** | **String** | The reason for the payout order. | | | **status** | **String** | The status of the payout order. | [optional] | | **updated_at** | **Integer** | The update date of the payout order. | | ## Example ```ruby require 'conekta' instance = Conekta::PayoutOrderResponse.new( allowed_payout_methods: ["cashout"], amount: 100, created_at: 1677626837, currency: MXN, customer_info: null, expires_at: 1677626837, id: f2654d66-d740-457a-9a8c-f96b5196f44e, livemode: true, object: payout_order, metadata: {"custom_client_id":"12345"}, payouts: null, reason: Payout order for the customer, status: open, updated_at: 1677626837 ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
conekta-6.0.5 | docs/PayoutOrderResponse.md |
conekta-6.0.4 | docs/PayoutOrderResponse.md |
conekta-6.0.3 | docs/PayoutOrderResponse.md |