diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION
index e6c86cecd6..d42b919187 100644
--- a/OPENAPI_VERSION
+++ b/OPENAPI_VERSION
@@ -1 +1 @@
-v596
\ No newline at end of file
+v602
\ No newline at end of file
diff --git a/src/Stripe.net/Constants/Events.cs b/src/Stripe.net/Constants/Events.cs
index 5aa9c54613..f8fdd6dee6 100644
--- a/src/Stripe.net/Constants/Events.cs
+++ b/src/Stripe.net/Constants/Events.cs
@@ -545,6 +545,16 @@ public static class Events
///
public const string IssuingDisputeUpdated = "issuing_dispute.updated";
+ ///
+ /// Occurs whenever an issuing digital wallet token is created.
+ ///
+ public const string IssuingTokenCreated = "issuing_token.created";
+
+ ///
+ /// Occurs whenever an issuing digital wallet token is updated.
+ ///
+ public const string IssuingTokenUpdated = "issuing_token.updated";
+
///
/// Occurs whenever an issuing transaction is created.
///
diff --git a/src/Stripe.net/Entities/Customers/Customer.cs b/src/Stripe.net/Entities/Customers/Customer.cs
index 7914a72005..5640f8b551 100644
--- a/src/Stripe.net/Entities/Customers/Customer.cs
+++ b/src/Stripe.net/Entities/Customers/Customer.cs
@@ -112,14 +112,19 @@ public IPaymentSource DefaultSource
public bool? Deleted { get; set; }
///
- /// If Stripe bills the customer's latest invoice by automatically charging and the latest
- /// charge fails, it sets delinquent`` to true. If Stripe bills the invoice by
- /// sending it, and the invoice isn't paid by the due date, it also sets `delinquent to
+ /// Tracks the most recent state change on any invoice belonging to the customer. Paying an
+ /// invoice or marking it uncollectible via the API will set this field to false. An
+ /// automatic payment failure or passing the invoice.due_date will set this field to
/// true.
///
/// If an invoice becomes uncollectible by dunning,
/// delinquent doesn't reset to false.
+ ///
+ /// If you care whether the customer has paid their most recent subscription invoice, use
+ /// subscription.status instead. Paying or marking uncollectible any customer invoice
+ /// regardless of whether it is the latest invoice for a subscription will always set this
+ /// field to false.
///
[JsonProperty("delinquent")]
public bool? Delinquent { get; set; }
diff --git a/src/Stripe.net/Entities/Events/Event.cs b/src/Stripe.net/Entities/Events/Event.cs
index 872aab58f8..8057504221 100644
--- a/src/Stripe.net/Entities/Events/Event.cs
+++ b/src/Stripe.net/Entities/Events/Event.cs
@@ -147,7 +147,8 @@ public class Event : StripeEntity, IHasId, IHasObject
/// issuing_cardholder.created, issuing_cardholder.updated,
/// issuing_dispute.closed, issuing_dispute.created,
/// issuing_dispute.funds_reinstated, issuing_dispute.submitted,
- /// issuing_dispute.updated, issuing_transaction.created,
+ /// issuing_dispute.updated, issuing_token.created,
+ /// issuing_token.updated, issuing_transaction.created,
/// issuing_transaction.updated, mandate.updated,
/// payment_intent.amount_capturable_updated, payment_intent.canceled,
/// payment_intent.created, payment_intent.partially_funded,
diff --git a/src/Stripe.net/Entities/Issuing/Tokens/Token.cs b/src/Stripe.net/Entities/Issuing/Tokens/Token.cs
index 2e2884ff6a..0a526b81e8 100644
--- a/src/Stripe.net/Entities/Issuing/Tokens/Token.cs
+++ b/src/Stripe.net/Entities/Issuing/Tokens/Token.cs
@@ -7,8 +7,9 @@ namespace Stripe.Issuing
///
/// An issuing token object is created when an issued card is added to a digital wallet. As
- /// a card issuer, you can view and manage
- /// these tokens through Stripe.
+ /// a card issuer, you can view and manage these
+ /// tokens through Stripe.
///
public class Token : StripeEntity, IHasId, IHasObject
{
diff --git a/src/Stripe.net/Entities/PaymentMethodConfigurations/PaymentMethodConfiguration.cs b/src/Stripe.net/Entities/PaymentMethodConfigurations/PaymentMethodConfiguration.cs
index 824ae8dacd..08111b8730 100644
--- a/src/Stripe.net/Entities/PaymentMethodConfigurations/PaymentMethodConfiguration.cs
+++ b/src/Stripe.net/Entities/PaymentMethodConfigurations/PaymentMethodConfiguration.cs
@@ -28,8 +28,8 @@ namespace Stripe
/// Related guides: - Payment Method
/// Configurations API - Multiple payment
- /// method configurations on dynamic payment methods - Multiple
+ /// configurations on dynamic payment methods - Multiple
/// configurations for your Connect accounts.
///