diff --git a/lib/Checkout/Session.php b/lib/Checkout/Session.php
index 02a82589c..08bd4d6f7 100644
--- a/lib/Checkout/Session.php
+++ b/lib/Checkout/Session.php
@@ -48,6 +48,7 @@
* @property null|\Stripe\StripeObject $payment_method_options Payment-method-specific configuration for the PaymentIntent or SetupIntent of this CheckoutSession.
* @property string[] $payment_method_types A list of the types of payment methods (e.g. card) this Checkout Session is allowed to accept.
* @property string $payment_status The payment status of the Checkout Session, one of paid
, unpaid
, or no_payment_required
. You can use this value to decide when to fulfill your customer's order.
+ * @property \Stripe\StripeObject $phone_number_collection
* @property null|string $recovered_from The ID of the original expired Checkout Session that triggered the recovery flow.
* @property null|string|\Stripe\SetupIntent $setup_intent The ID of the SetupIntent for Checkout Sessions in setup
mode.
* @property null|\Stripe\StripeObject $shipping Shipping information for this Checkout Session.
diff --git a/lib/Radar/ValueList.php b/lib/Radar/ValueList.php
index bcbef74cd..ad374325d 100644
--- a/lib/Radar/ValueList.php
+++ b/lib/Radar/ValueList.php
@@ -17,7 +17,7 @@
* @property string $alias The name of the value list for use in rules.
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
* @property string $created_by The name or email address of the user who created this value list.
- * @property string $item_type The type of items in the value list. One of card_fingerprint
, card_bin
, email
, ip_address
, country
, string
, or case_sensitive_string
.
+ * @property string $item_type The type of items in the value list. One of card_fingerprint
, card_bin
, email
, ip_address
, country
, string
, case_sensitive_string
, or customer_id
.
* @property \Stripe\Collection $list_items List of items contained within this value list.
* @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.
diff --git a/lib/Terminal/Reader.php b/lib/Terminal/Reader.php
index 44fe035db..bd578ea26 100644
--- a/lib/Terminal/Reader.php
+++ b/lib/Terminal/Reader.php
@@ -14,7 +14,7 @@
* @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.
* @property null|string $device_sw_version The current software version of the reader.
- * @property string $device_type Type of reader, one of bbpos_chipper2x
or verifone_P400
.
+ * @property string $device_type Type of reader, one of bbpos_chipper2x
, bbpos_wisepos_e
, or verifone_P400
.
* @property null|string $ip_address The local IP address of the reader.
* @property string $label Custom label given to the reader for easier identification.
* @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.