diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION
index 86e861958..f135f6e0f 100644
--- a/OPENAPI_VERSION
+++ b/OPENAPI_VERSION
@@ -1 +1 @@
-v385
\ No newline at end of file
+v387
\ No newline at end of file
diff --git a/lib/BillingPortal/Session.php b/lib/BillingPortal/Session.php
index 0f2791b44..d47fe602f 100644
--- a/lib/BillingPortal/Session.php
+++ b/lib/BillingPortal/Session.php
@@ -28,7 +28,7 @@
* @property null|\Stripe\StripeObject $flow Information about a specific flow for the customer to go through. See the docs to learn more about using customer portal deep links and flows.
* @property bool $livemode Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
* @property null|string $locale The IETF language tag of the locale Customer Portal is displayed in. If blank or auto, the customer’s preferred_locales
or browser’s locale is used.
- * @property null|string $on_behalf_of The account for which the session was created on behalf of. When specified, only subscriptions and invoices with this on_behalf_of
account appear in the portal. For more information, see the docs. Use the Accounts API to modify the on_behalf_of
account's branding settings, which the portal displays.
+ * @property null|string $on_behalf_of The account for which the session was created on behalf of. When specified, only subscriptions and invoices with this on_behalf_of
account appear in the portal. For more information, see the docs. Use the Accounts API to modify the on_behalf_of
account's branding settings, which the portal displays.
* @property null|string $return_url The URL to redirect customers to when they click on the portal's link to return to your website.
* @property string $url The short-lived URL of the session that gives customers access to the customer portal.
*/
diff --git a/lib/Charge.php b/lib/Charge.php
index f4aee6804..6bcdc1a46 100644
--- a/lib/Charge.php
+++ b/lib/Charge.php
@@ -39,7 +39,7 @@
* @property null|\Stripe\StripeObject $level3
* @property bool $livemode Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
* @property \Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- * @property null|string|\Stripe\Account $on_behalf_of The account (if any) the charge was made on behalf of without triggering an automatic transfer. See the Connect documentation for details.
+ * @property null|string|\Stripe\Account $on_behalf_of The account (if any) the charge was made on behalf of without triggering an automatic transfer. See the Connect documentation for details.
* @property null|\Stripe\StripeObject $outcome Details about whether the payment was accepted, and why. See understanding declines for details.
* @property bool $paid true
if the charge succeeded, or was successfully authorized for later capture.
* @property null|string|\Stripe\PaymentIntent $payment_intent ID of the PaymentIntent associated with this charge, if one exists.
@@ -60,7 +60,7 @@
* @property string $status The status of the payment is either succeeded
, pending
, or failed
.
* @property null|string|\Stripe\Transfer $transfer ID of the transfer to the destination
account (only applicable if the charge was created using the destination
parameter).
* @property null|\Stripe\StripeObject $transfer_data An optional dictionary including the account to automatically transfer to as part of a destination charge. See the Connect documentation for details.
- * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the Connect documentation for details.
+ * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the Connect documentation for details.
*/
class Charge extends ApiResource
{
diff --git a/lib/GiftCards/Transaction.php b/lib/GiftCards/Transaction.php
index 50605e820..6a67cdf2b 100644
--- a/lib/GiftCards/Transaction.php
+++ b/lib/GiftCards/Transaction.php
@@ -23,7 +23,7 @@
* @property null|string $gift_card The gift card that this transaction occurred on
* @property null|\Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
* @property null|string $status Status of this transaction, one of held
, confirmed
, or canceled
.
- * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the Connect documentation for details.
+ * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the Connect documentation for details.
*/
class Transaction extends \Stripe\ApiResource
{
diff --git a/lib/PaymentIntent.php b/lib/PaymentIntent.php
index 72f4cc873..824595084 100644
--- a/lib/PaymentIntent.php
+++ b/lib/PaymentIntent.php
@@ -42,6 +42,7 @@
* @property \Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. For more information, see the documentation.
* @property null|\Stripe\StripeObject $next_action If present, this property tells you what actions you need to take in order for your customer to fulfill a payment using the provided source.
* @property null|string|\Stripe\Account $on_behalf_of The account (if any) for which the funds of the PaymentIntent are intended. See the PaymentIntents use case for connected accounts for details.
+ * @property null|\Stripe\StripeObject $payment_details
* @property null|string|\Stripe\PaymentMethod $payment_method ID of the payment method used in this PaymentIntent.
* @property null|\Stripe\StripeObject $payment_method_options Payment-method-specific configuration for this PaymentIntent.
* @property string[] $payment_method_types The list of payment method types (e.g. card) that this PaymentIntent is allowed to use.
diff --git a/lib/Transfer.php b/lib/Transfer.php
index f5d5625c0..6682e9e21 100644
--- a/lib/Transfer.php
+++ b/lib/Transfer.php
@@ -14,7 +14,7 @@
* information, read about the
* transfer/payout split.
*
- * Related guide: Creating separate charges and transfers
+ * Related guide: Creating separate charges and transfers
*
* @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.
@@ -32,7 +32,7 @@
* @property bool $reversed Whether the transfer has been fully reversed. If the transfer is only partially reversed, this attribute will still be false.
* @property null|string|\Stripe\Charge $source_transaction ID of the charge or payment that was used to fund the transfer. If null, the transfer was funded from the available balance.
* @property null|string $source_type The source balance this transfer came from. One of card
, fpx
, or bank_account
.
- * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the Connect documentation for details.
+ * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the Connect documentation for details.
*/
class Transfer extends ApiResource
{
diff --git a/lib/TransferReversal.php b/lib/TransferReversal.php
index 9216d46a1..cb0a9e0c6 100644
--- a/lib/TransferReversal.php
+++ b/lib/TransferReversal.php
@@ -13,11 +13,11 @@
* Reversing a transfer that was made for a destination
* charge is allowed only up to the amount of
* the charge. It is possible to reverse a
- * transfer_group
+ * transfer_group
* transfer only if the destination account has enough balance to cover the
* reversal.
*
- * Related guide: Reversing transfers
+ * Related guide: Reversing transfers
*
* @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.