Bump stripe-php from 19.0.0 to 19.4.1

This commit is contained in:
johnnyq
2026-03-07 17:19:48 -05:00
parent 11ba077726
commit 526fa1aff5
228 changed files with 3494 additions and 1049 deletions

View File

@@ -5,7 +5,7 @@
namespace Stripe;
/**
* <a href="https://stripe.com/docs/connect">Stripe Connect</a> platforms can reverse transfers made to a
* <a href="https://docs.stripe.com/connect">Stripe Connect</a> platforms can reverse transfers made to a
* connected account, either entirely or partially, and can also specify whether
* to refund any related application fees. Transfer reversals add to the
* platform's balance and subtract from the destination account's balance.
@@ -13,11 +13,11 @@ namespace Stripe;
* Reversing a transfer that was made for a <a href="/docs/connect/destination-charges">destination
* charge</a> is allowed only up to the amount of
* the charge. It is possible to reverse a
* <a href="https://stripe.com/docs/connect/separate-charges-and-transfers#transfer-options">transfer_group</a>
* <a href="https://docs.stripe.com/connect/separate-charges-and-transfers#transfer-options">transfer_group</a>
* transfer only if the destination account has enough balance to cover the
* reversal.
*
* Related guide: <a href="https://stripe.com/docs/connect/separate-charges-and-transfers#reverse-transfers">Reverse transfers</a>
* Related guide: <a href="https://docs.stripe.com/connect/separate-charges-and-transfers#reverse-transfers">Reverse transfers</a>
*
* @property string $id Unique identifier for the object.
* @property string $object String representing the object's type. Objects of the same type share the same value.
@@ -26,7 +26,7 @@ namespace Stripe;
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
* @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
* @property null|Refund|string $destination_payment_refund Linked payment refund for the transfer reversal.
* @property null|StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
* @property null|StripeObject $metadata Set of <a href="https://docs.stripe.com/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
* @property null|Refund|string $source_refund ID of the refund responsible for the transfer reversal.
* @property string|Transfer $transfer ID of the transfer that was reversed.
*/