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 @@
2025-08-27.basil
2025-09-30.clover
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1932
v1968
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// File generated from our OpenAPI spec
namespace Stripe
{
using System.Collections.Generic;
using Newtonsoft.Json;
#if NET6_0_OR_GREATER
using STJS = System.Text.Json.Serialization;
Expand Down Expand Up @@ -107,7 +108,7 @@ public class PaymentIntentNextAction : StripeEntity<PaymentIntentNextAction>
#if NET6_0_OR_GREATER
[STJS.JsonPropertyName("use_stripe_sdk")]
#endif
public PaymentIntentNextActionUseStripeSdk UseStripeSdk { get; set; }
public Dictionary<string, object> UseStripeSdk { get; set; }

[JsonProperty("verify_with_microdeposits")]
#if NET6_0_OR_GREATER
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// File generated from our OpenAPI spec
namespace Stripe
{
using System.Collections.Generic;
using Newtonsoft.Json;
#if NET6_0_OR_GREATER
using STJS = System.Text.Json.Serialization;
Expand Down Expand Up @@ -41,7 +42,7 @@ public class SetupIntentNextAction : StripeEntity<SetupIntentNextAction>
#if NET6_0_OR_GREATER
[STJS.JsonPropertyName("use_stripe_sdk")]
#endif
public SetupIntentNextActionUseStripeSdk UseStripeSdk { get; set; }
public Dictionary<string, object> UseStripeSdk { get; set; }

[JsonProperty("verify_with_microdeposits")]
#if NET6_0_OR_GREATER
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion src/StripeTests/Services/GeneratedExamplesTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3911,7 +3911,6 @@ public void TestSubscriptionSchedulesPost()
Quantity = 1,
},
},
Iterations = 12,
},
},
};
Expand Down
Loading