Skip to content
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 API_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0822236fb875490aa7ccc7b66dbb52f8965ee062
ee56c4b73d856e48409065f8d7e7c82c2e805c38
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ This release changes the pinned API version to `2025-10-29.preview`.
* Add support for thin events `V2MoneyManagementRecipientVerificationCreatedEvent` and `V2MoneyManagementRecipientVerificationUpdatedEvent` with related object `V2.MoneyManagement.RecipientVerification`
* [#3188](https://github.com/stripe/stripe-dotnet/pull/3188) ParseThinEvent__Experimental is no longer needed
* ⚠️ Remove the `StripeClient. ParseThinEvent__Experimental` and `PushedEvent` classes. They've been replaced with `StripeClient.ParseEventNotification` and the *`EventNotification` classes respectively.

## 49.2.0 - 2025-11-05
* [#3244](https://github.com/stripe/stripe-dotnet/pull/3244) Update generated code
* Add support for `CaptureMethod` on `PaymentIntent.PaymentMethodOptions.CardPresent` and `PaymentIntentPaymentMethodOptionsCardPresentOptions`
Expand Down Expand Up @@ -5313,3 +5313,4 @@ List of backwards incompatible changes:
* [#1019](https://github.com/stripe/stripe-dotnet#1019) Add `StripeChargeCaptureOptions` and use it for charge capture
* [#1022](https://github.com/stripe/stripe-dotnet#1022) Add support for SKUs
* [#1025](https://github.com/stripe/stripe-dotnet#1025) Add `Discountable` for `StripeInvoiceLineItem`

1 change: 1 addition & 0 deletions CODEGEN_VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ee56c4b73d856e48409065f8d7e7c82c2e805c38
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2148
v2148
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class PaymentIntentAmountDetails : StripeEntity<PaymentIntentAmountDetail

/// <summary>
/// A list of line items, each containing information about a product in the PaymentIntent.
/// There is a maximum of 100 line items.
/// There is a maximum of 200 line items.
/// </summary>
[JsonProperty("line_items")]
#if NET6_0_OR_GREATER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class PaymentIntentAmountDetailsOptions : INestedOptions

/// <summary>
/// A list of line items, each containing information about a product in the PaymentIntent.
/// There is a maximum of 100 line items.
/// There is a maximum of 200 line items.
/// </summary>
[JsonProperty("line_items")]
#if NET6_0_OR_GREATER
Expand Down
Loading