diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index bfb4a2e0ea..f0bb0d526f 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v2026 \ No newline at end of file +v2028 \ No newline at end of file diff --git a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponents.cs b/src/Stripe.net/Entities/AccountSessions/AccountSessionComponents.cs index b5f2d31060..8b15a95c32 100644 --- a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponents.cs +++ b/src/Stripe.net/Entities/AccountSessions/AccountSessionComponents.cs @@ -20,12 +20,6 @@ public class AccountSessionComponents : StripeEntity #endif public AccountSessionComponentsAccountOnboarding AccountOnboarding { get; set; } - [JsonProperty("balance_report")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("balance_report")] -#endif - public AccountSessionComponentsBalanceReport BalanceReport { get; set; } - [JsonProperty("balances")] #if NET6_0_OR_GREATER [STJS.JsonPropertyName("balances")] @@ -104,12 +98,6 @@ public class AccountSessionComponents : StripeEntity #endif public AccountSessionComponentsPayoutDetails PayoutDetails { get; set; } - [JsonProperty("payout_reconciliation_report")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("payout_reconciliation_report")] -#endif - public AccountSessionComponentsPayoutReconciliationReport PayoutReconciliationReport { get; set; } - [JsonProperty("payouts")] #if NET6_0_OR_GREATER [STJS.JsonPropertyName("payouts")] diff --git a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsBalanceReport.cs b/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsBalanceReport.cs deleted file mode 100644 index dfd3cefb3a..0000000000 --- a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsBalanceReport.cs +++ /dev/null @@ -1,26 +0,0 @@ -// File generated from our OpenAPI spec -namespace Stripe -{ - using Newtonsoft.Json; -#if NET6_0_OR_GREATER - using STJS = System.Text.Json.Serialization; -#endif - - public class AccountSessionComponentsBalanceReport : StripeEntity - { - /// - /// Whether the embedded component is enabled. - /// - [JsonProperty("enabled")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("enabled")] -#endif - public bool Enabled { get; set; } - - [JsonProperty("features")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("features")] -#endif - public AccountSessionComponentsBalanceReportFeatures Features { get; set; } - } -} diff --git a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsBalanceReportFeatures.cs b/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsBalanceReportFeatures.cs deleted file mode 100644 index 1ace6d88aa..0000000000 --- a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsBalanceReportFeatures.cs +++ /dev/null @@ -1,7 +0,0 @@ -// File generated from our OpenAPI spec -namespace Stripe -{ - public class AccountSessionComponentsBalanceReportFeatures : StripeEntity - { - } -} diff --git a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsPayoutReconciliationReport.cs b/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsPayoutReconciliationReport.cs deleted file mode 100644 index 260ba59a52..0000000000 --- a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsPayoutReconciliationReport.cs +++ /dev/null @@ -1,26 +0,0 @@ -// File generated from our OpenAPI spec -namespace Stripe -{ - using Newtonsoft.Json; -#if NET6_0_OR_GREATER - using STJS = System.Text.Json.Serialization; -#endif - - public class AccountSessionComponentsPayoutReconciliationReport : StripeEntity - { - /// - /// Whether the embedded component is enabled. - /// - [JsonProperty("enabled")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("enabled")] -#endif - public bool Enabled { get; set; } - - [JsonProperty("features")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("features")] -#endif - public AccountSessionComponentsPayoutReconciliationReportFeatures Features { get; set; } - } -} diff --git a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsPayoutReconciliationReportFeatures.cs b/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsPayoutReconciliationReportFeatures.cs deleted file mode 100644 index d179a39aac..0000000000 --- a/src/Stripe.net/Entities/AccountSessions/AccountSessionComponentsPayoutReconciliationReportFeatures.cs +++ /dev/null @@ -1,7 +0,0 @@ -// File generated from our OpenAPI spec -namespace Stripe -{ - public class AccountSessionComponentsPayoutReconciliationReportFeatures : StripeEntity - { - } -} diff --git a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsBalanceReportFeaturesOptions.cs b/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsBalanceReportFeaturesOptions.cs deleted file mode 100644 index 50d38a5e87..0000000000 --- a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsBalanceReportFeaturesOptions.cs +++ /dev/null @@ -1,7 +0,0 @@ -// File generated from our OpenAPI spec -namespace Stripe -{ - public class AccountSessionComponentsBalanceReportFeaturesOptions : INestedOptions - { - } -} diff --git a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsBalanceReportOptions.cs b/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsBalanceReportOptions.cs deleted file mode 100644 index d7478a52ed..0000000000 --- a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsBalanceReportOptions.cs +++ /dev/null @@ -1,29 +0,0 @@ -// File generated from our OpenAPI spec -namespace Stripe -{ - using Newtonsoft.Json; -#if NET6_0_OR_GREATER - using STJS = System.Text.Json.Serialization; -#endif - - public class AccountSessionComponentsBalanceReportOptions : INestedOptions - { - /// - /// Whether the embedded component is enabled. - /// - [JsonProperty("enabled")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("enabled")] -#endif - public bool? Enabled { get; set; } - - /// - /// An empty list, because this embedded component has no features. - /// - [JsonProperty("features")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("features")] -#endif - public AccountSessionComponentsBalanceReportFeaturesOptions Features { get; set; } - } -} diff --git a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsOptions.cs b/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsOptions.cs index 4ca19356aa..7a93f819a6 100644 --- a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsOptions.cs +++ b/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsOptions.cs @@ -30,17 +30,6 @@ public class AccountSessionComponentsOptions : INestedOptions #endif public AccountSessionComponentsAccountOnboardingOptions AccountOnboarding { get; set; } - /// - /// Configuration for the balance - /// report embedded component. - /// - [JsonProperty("balance_report")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("balance_report")] -#endif - public AccountSessionComponentsBalanceReportOptions BalanceReport { get; set; } - /// /// Configuration for the balances @@ -184,17 +173,6 @@ public class AccountSessionComponentsOptions : INestedOptions #endif public AccountSessionComponentsPayoutDetailsOptions PayoutDetails { get; set; } - /// - /// Configuration for the payout - /// reconciliation report embedded component. - /// - [JsonProperty("payout_reconciliation_report")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("payout_reconciliation_report")] -#endif - public AccountSessionComponentsPayoutReconciliationReportOptions PayoutReconciliationReport { get; set; } - /// /// Configuration for the payouts diff --git a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsPayoutReconciliationReportFeaturesOptions.cs b/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsPayoutReconciliationReportFeaturesOptions.cs deleted file mode 100644 index fd0344837f..0000000000 --- a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsPayoutReconciliationReportFeaturesOptions.cs +++ /dev/null @@ -1,7 +0,0 @@ -// File generated from our OpenAPI spec -namespace Stripe -{ - public class AccountSessionComponentsPayoutReconciliationReportFeaturesOptions : INestedOptions - { - } -} diff --git a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsPayoutReconciliationReportOptions.cs b/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsPayoutReconciliationReportOptions.cs deleted file mode 100644 index 98afcc79eb..0000000000 --- a/src/Stripe.net/Services/AccountSessions/AccountSessionComponentsPayoutReconciliationReportOptions.cs +++ /dev/null @@ -1,29 +0,0 @@ -// File generated from our OpenAPI spec -namespace Stripe -{ - using Newtonsoft.Json; -#if NET6_0_OR_GREATER - using STJS = System.Text.Json.Serialization; -#endif - - public class AccountSessionComponentsPayoutReconciliationReportOptions : INestedOptions - { - /// - /// Whether the embedded component is enabled. - /// - [JsonProperty("enabled")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("enabled")] -#endif - public bool? Enabled { get; set; } - - /// - /// An empty list, because this embedded component has no features. - /// - [JsonProperty("features")] -#if NET6_0_OR_GREATER - [STJS.JsonPropertyName("features")] -#endif - public AccountSessionComponentsPayoutReconciliationReportFeaturesOptions Features { get; set; } - } -}