From 07f01a25dd14131552f5540fa9dd383926792f55 Mon Sep 17 00:00:00 2001 From: AdyenAutomationBot <38424300+AdyenAutomationBot@users.noreply.github.com> Date: Mon, 12 Jan 2026 14:11:33 +0000 Subject: [PATCH] [legalentitymanagement] Automated update from Adyen/adyen-openapi@0a007ce --- .../model/legalentitymanagement/Support.java | 15 +++++++++------ src/test/java/com/adyen/CheckoutTest.java | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/adyen/model/legalentitymanagement/Support.java b/src/main/java/com/adyen/model/legalentitymanagement/Support.java index cea6608bc..84fb48102 100644 --- a/src/main/java/com/adyen/model/legalentitymanagement/Support.java +++ b/src/main/java/com/adyen/model/legalentitymanagement/Support.java @@ -43,9 +43,10 @@ public class Support { public Support() {} /** - * The support email address of the legal entity. + * The support email address of the legal entity. Required if you have a platform setup. * - * @param email The support email address of the legal entity. + * @param email The support email address of the legal entity. Required if you have a platform + * setup. * @return the current {@code Support} instance, allowing for method chaining */ public Support email(String email) { @@ -55,9 +56,10 @@ public Support email(String email) { } /** - * The support email address of the legal entity. + * The support email address of the legal entity. Required if you have a platform setup. * - * @return email The support email address of the legal entity. + * @return email The support email address of the legal entity. Required if you have a platform + * setup. */ @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) @@ -66,9 +68,10 @@ public String getEmail() { } /** - * The support email address of the legal entity. + * The support email address of the legal entity. Required if you have a platform setup. * - * @param email The support email address of the legal entity. + * @param email The support email address of the legal entity. Required if you have a platform + * setup. */ @JsonProperty(JSON_PROPERTY_EMAIL) @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) diff --git a/src/test/java/com/adyen/CheckoutTest.java b/src/test/java/com/adyen/CheckoutTest.java index b81e95531..396880cdc 100644 --- a/src/test/java/com/adyen/CheckoutTest.java +++ b/src/test/java/com/adyen/CheckoutTest.java @@ -889,7 +889,7 @@ public void testForwardCardDetails() throws Exception { CheckoutForwardResponse response = recurringApi.forward(checkoutForwardRequest); - assertNull(response.getStoredPaymentMethodId()); // card is not tokenized + assertNull(response.getStoredPaymentMethodId()); // card is not tokenized assertNotNull(response.getResponse()); assertEquals(200, (int) response.getResponse().getStatus()); assertTrue(response.getResponse().getBody().contains("PAYMENT_METHOD_ID"));