Skip to content

Commit

Permalink
Update generated code (#2780)
Browse files Browse the repository at this point in the history
* Update generated code for v599

* Update generated code for v600

* Update generated code for v601

* Update generated code for v602

---------

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] authored Oct 16, 2023
1 parent c046b82 commit ba47d12
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 9 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v596
v602
10 changes: 10 additions & 0 deletions src/Stripe.net/Constants/Events.cs
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,16 @@ public static class Events
/// </summary>
public const string IssuingDisputeUpdated = "issuing_dispute.updated";

/// <summary>
/// Occurs whenever an issuing digital wallet token is created.
/// </summary>
public const string IssuingTokenCreated = "issuing_token.created";

/// <summary>
/// Occurs whenever an issuing digital wallet token is updated.
/// </summary>
public const string IssuingTokenUpdated = "issuing_token.updated";

/// <summary>
/// Occurs whenever an issuing transaction is created.
/// </summary>
Expand Down
11 changes: 8 additions & 3 deletions src/Stripe.net/Entities/Customers/Customer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,19 @@ public IPaymentSource DefaultSource
public bool? Deleted { get; set; }

/// <summary>
/// If Stripe bills the customer's latest invoice by automatically charging and the latest
/// charge fails, it sets <c>delinquent`` to </c>true<c>. If Stripe bills the invoice by
/// sending it, and the invoice isn't paid by the due date, it also sets `delinquent</c> 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 <c>invoice.due_date</c> will set this field to
/// <c>true</c>.
///
/// If an invoice becomes uncollectible by <a
/// href="https://stripe.com/docs/billing/automatic-collection">dunning</a>,
/// <c>delinquent</c> doesn't reset to <c>false</c>.
///
/// If you care whether the customer has paid their most recent subscription invoice, use
/// <c>subscription.status</c> 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 <c>false</c>.
/// </summary>
[JsonProperty("delinquent")]
public bool? Delinquent { get; set; }
Expand Down
3 changes: 2 additions & 1 deletion src/Stripe.net/Entities/Events/Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ public class Event : StripeEntity<Event>, IHasId, IHasObject
/// <c>issuing_cardholder.created</c>, <c>issuing_cardholder.updated</c>,
/// <c>issuing_dispute.closed</c>, <c>issuing_dispute.created</c>,
/// <c>issuing_dispute.funds_reinstated</c>, <c>issuing_dispute.submitted</c>,
/// <c>issuing_dispute.updated</c>, <c>issuing_transaction.created</c>,
/// <c>issuing_dispute.updated</c>, <c>issuing_token.created</c>,
/// <c>issuing_token.updated</c>, <c>issuing_transaction.created</c>,
/// <c>issuing_transaction.updated</c>, <c>mandate.updated</c>,
/// <c>payment_intent.amount_capturable_updated</c>, <c>payment_intent.canceled</c>,
/// <c>payment_intent.created</c>, <c>payment_intent.partially_funded</c>,
Expand Down
5 changes: 3 additions & 2 deletions src/Stripe.net/Entities/Issuing/Tokens/Token.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ namespace Stripe.Issuing

/// <summary>
/// An issuing token object is created when an issued card is added to a digital wallet. As
/// a <a href="https://stripe.com/docs/issuing">card issuer</a>, you can view and manage
/// these tokens through Stripe.
/// a <a href="https://stripe.com/docs/issuing">card issuer</a>, you can <a
/// href="https://stripe.com/docs/issuing/controls/token-management">view and manage these
/// tokens</a> through Stripe.
/// </summary>
public class Token : StripeEntity<Token>, IHasId, IHasObject
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ namespace Stripe
/// Related guides: - <a
/// href="https://stripe.com/docs/connect/payment-method-configurations">Payment Method
/// Configurations API</a> - <a
/// href="https://stripe.com/docs/payments/multiple-payment-method-configs">Multiple payment
/// method configurations on dynamic payment methods</a> - <a
/// href="https://stripe.com/docs/payments/multiple-payment-method-configs">Multiple
/// configurations on dynamic payment methods</a> - <a
/// href="https://stripe.com/docs/connect/multiple-payment-method-configurations">Multiple
/// configurations for your Connect accounts</a>.
/// </summary>
Expand Down

0 comments on commit ba47d12

Please sign in to comment.