Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated code #2780

Merged
merged 4 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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