diff --git a/lib/Event.php b/lib/Event.php
index a146bf3a3..b0f7faf83 100644
--- a/lib/Event.php
+++ b/lib/Event.php
@@ -182,6 +182,7 @@ class Event extends ApiResource
const PAYOUT_CREATED = 'payout.created';
const PAYOUT_FAILED = 'payout.failed';
const PAYOUT_PAID = 'payout.paid';
+ const PAYOUT_RECONCILIATION_COMPLETED = 'payout.reconciliation_completed';
const PAYOUT_UPDATED = 'payout.updated';
const PERSON_CREATED = 'person.created';
const PERSON_DELETED = 'person.deleted';
diff --git a/lib/PaymentLink.php b/lib/PaymentLink.php
index d8a1f3f68..316d5494f 100644
--- a/lib/PaymentLink.php
+++ b/lib/PaymentLink.php
@@ -14,8 +14,8 @@
* href="https://stripe.com/docs/api/events/types#event_types-checkout.session.completed">checkout
* session events to track payments through payment links.
*
- * Related guide: Payment Links API
+ * Related guide: Payment Links
+ * API
*
* @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.
diff --git a/lib/PaymentMethod.php b/lib/PaymentMethod.php
index b81ee5a56..b0597a416 100644
--- a/lib/PaymentMethod.php
+++ b/lib/PaymentMethod.php
@@ -30,6 +30,7 @@
* @property null|\Stripe\StripeObject $boleto
* @property null|\Stripe\StripeObject $card
* @property null|\Stripe\StripeObject $card_present
+ * @property null|\Stripe\StripeObject $cashapp
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
* @property null|string|\Stripe\Customer $customer The ID of the Customer to which this PaymentMethod is saved. This will not be set when the PaymentMethod has not been saved to a Customer.
* @property null|\Stripe\StripeObject $customer_balance
diff --git a/lib/Product.php b/lib/Product.php
index 8f8d8ad31..0b75140ce 100644
--- a/lib/Product.php
+++ b/lib/Product.php
@@ -13,9 +13,8 @@
*
* Related guides: Set up
- * a subscription, share a Payment
- * Link, , share a
+ * Payment Link, accept
* payments with Checkout, and more about Products and Prices