diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index 9f46827f56a..bfb4a2e0eaa 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v2025 \ No newline at end of file +v2026 \ No newline at end of file diff --git a/src/test/java/com/stripe/functional/GeneratedExamples.java b/src/test/java/com/stripe/functional/GeneratedExamples.java index 9c3298155d8..cea52d72719 100644 --- a/src/test/java/com/stripe/functional/GeneratedExamples.java +++ b/src/test/java/com/stripe/functional/GeneratedExamples.java @@ -5118,9 +5118,7 @@ public void testCustomersSourcesPostServices() throws StripeException { StripeClient client = new StripeClient(networkSpy); com.stripe.param.CustomerPaymentSourceUpdateParams params = - com.stripe.param.CustomerPaymentSourceUpdateParams.builder() - .setAccountHolderName("Kamil") - .build(); + com.stripe.param.CustomerPaymentSourceUpdateParams.builder().setName("Kamil").build(); com.stripe.model.PaymentSource paymentSource = client.v1().customers().paymentSources().update("cus_123", "card_123", params); @@ -5138,9 +5136,7 @@ public void testCustomersSourcesPostServicesNonNamespaced() throws StripeExcepti StripeClient client = new StripeClient(networkSpy); com.stripe.param.CustomerPaymentSourceUpdateParams params = - com.stripe.param.CustomerPaymentSourceUpdateParams.builder() - .setAccountHolderName("Kamil") - .build(); + com.stripe.param.CustomerPaymentSourceUpdateParams.builder().setName("Kamil").build(); com.stripe.model.PaymentSource paymentSource = client.customers().paymentSources().update("cus_123", "card_123", params);