docs/CreatePayoutRequest.md in velopayments-2.14.90.pre.1 vs docs/CreatePayoutRequest.md in velopayments-2.17.8.beta1
- old
+ new
@@ -2,19 +2,23 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**payor_id** | **String** | |
-**payout_memo** | **String** | | [optional]
+**payor_id** | **String** | Deprecated in v2.16. Any value supplied here will be ignored. | [optional]
+**payout_from_payor_id** | **String** | The id of the payor whose source account(s) will be debited. payoutFromPayorId and payoutToPayorId must be both supplied or both omitted. | [optional]
+**payout_to_payor_id** | **String** | The id of the payor whose payees will be paid. payoutFromPayorId and payoutToPayorId must be both supplied or both omitted. | [optional]
+**payout_memo** | **String** | Text applied to all payment memos unless specified explicitly on a payment. This should be the reference field on the statement seen by the payee (but not via ACH) | [optional]
**payments** | [**Array<PaymentInstruction>**](PaymentInstruction.md) | |
## Code Sample
```ruby
require 'VeloPayments'
instance = VeloPayments::CreatePayoutRequest.new(payor_id: null,
+ payout_from_payor_id: null,
+ payout_to_payor_id: null,
payout_memo: A memo,
payments: null)
```