diff --git a/lib/Charge.php b/lib/Charge.php
index 0737d20ad..d4f209541 100644
--- a/lib/Charge.php
+++ b/lib/Charge.php
@@ -32,6 +32,7 @@
* @property null|string|\Stripe\Account $destination ID of an existing, connected Stripe account to transfer funds to if transfer_data
was specified in the charge request.
* @property null|string|\Stripe\Dispute $dispute Details about the dispute if the charge has been disputed.
* @property bool $disputed Whether the charge has been disputed.
+ * @property null|string|\Stripe\BalanceTransaction $failure_balance_transaction ID of the balance transaction that describes the reversal of the balance on your account due to payment failure.
* @property null|string $failure_code Error code explaining reason for charge failure if available (see the errors section for a list of codes).
* @property null|string $failure_message Message to user further explaining reason for charge failure if available.
* @property null|\Stripe\StripeObject $fraud_details Information on fraud assessments for the charge.
diff --git a/lib/PaymentMethod.php b/lib/PaymentMethod.php
index fac09ec8a..36384dabb 100644
--- a/lib/PaymentMethod.php
+++ b/lib/PaymentMethod.php
@@ -42,9 +42,11 @@
* @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 \Stripe\StripeObject $oxxo
* @property \Stripe\StripeObject $p24
+ * @property \Stripe\StripeObject $paynow
* @property \Stripe\StripeObject $sepa_debit
* @property \Stripe\StripeObject $sofort
* @property string $type The type of the PaymentMethod. An additional hash is included on the PaymentMethod with a name matching this value. It contains additional information specific to the PaymentMethod type.
+ * @property \Stripe\StripeObject $us_bank_account
* @property \Stripe\StripeObject $wechat_pay
*/
class PaymentMethod extends ApiResource