diff --git a/lib/BillingPortal/Configuration.php b/lib/BillingPortal/Configuration.php
index 7ad1a0398..cb6007796 100644
--- a/lib/BillingPortal/Configuration.php
+++ b/lib/BillingPortal/Configuration.php
@@ -18,6 +18,7 @@
* @property \Stripe\StripeObject $features
* @property bool $is_default Whether the configuration is the default. If true
, this configuration can be managed in the Dashboard and portal sessions will use this configuration unless it is overriden when creating the session.
* @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|\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 int $updated Time at which the object was last updated. Measured in seconds since the Unix epoch.
*/
class Configuration extends \Stripe\ApiResource
diff --git a/lib/Issuing/Card.php b/lib/Issuing/Card.php
index e0ac774e7..31deaf3f0 100644
--- a/lib/Issuing/Card.php
+++ b/lib/Issuing/Card.php
@@ -29,6 +29,7 @@
* @property \Stripe\StripeObject $spending_controls
* @property string $status Whether authorizations can be approved on this card.
* @property string $type The type of the card.
+ * @property null|\Stripe\StripeObject $wallets Information relating to digital wallets (like Apple Pay and Google Pay).
*/
class Card extends \Stripe\ApiResource
{
diff --git a/lib/Service/Terminal/LocationService.php b/lib/Service/Terminal/LocationService.php
index 8adc7a520..5a217bea4 100644
--- a/lib/Service/Terminal/LocationService.php
+++ b/lib/Service/Terminal/LocationService.php
@@ -22,7 +22,9 @@ public function all($params = null, $opts = null)
}
/**
- * Creates a new Location
object.
+ * Creates a new Location
object. For further details, including which
+ * address fields are required in each country, see the Manage locations guide.
*
* @param null|array $params
* @param null|array|\Stripe\Util\RequestOptions $opts