Skip to content

Commit 7987a07

Browse files
[checkout] Automated update from Adyen/adyen-openapi@a1f4b19
1 parent 4a7c8d4 commit 7987a07

78 files changed

Lines changed: 5351 additions & 918 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

sdk-generation-log/checkout.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"service": "checkout",
3+
"project": "java",
4+
"generatedAt": "2026-04-14T07:38:09Z",
5+
"openapiCommitSha": "a1f4b19cca472f4d51aa7568fc8ff0f838ca9f57",
6+
"automationCommitSha": "855b6c5526cb5fae757e921687c38df66d31dc4b",
7+
"libraryCommitSha": "4a7c8d4eb02058d9d3215ba0497d4b2aa8905bea"
8+
}

src/main/java/com/adyen/model/checkout/AccountInfo.java

Lines changed: 24 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -291,17 +291,15 @@ public static DeliveryAddressUsageIndicatorEnum fromValue(String value) {
291291
private boolean isSetDeliveryAddressUsageIndicator = false;
292292

293293
public static final String JSON_PROPERTY_HOME_PHONE = "homePhone";
294-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.homePhone`
295-
// instead.
296-
private String homePhone;
294+
/* deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.homePhone` instead. */
295+
@Deprecated private String homePhone;
297296

298297
/** Mark when the attribute has been explicitly set. */
299298
private boolean isSetHomePhone = false;
300299

301300
public static final String JSON_PROPERTY_MOBILE_PHONE = "mobilePhone";
302-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.mobilePhone`
303-
// instead.
304-
private String mobilePhone;
301+
/* deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.mobilePhone` instead. */
302+
@Deprecated private String mobilePhone;
305303

306304
/** Mark when the attribute has been explicitly set. */
307305
private boolean isSetMobilePhone = false;
@@ -456,9 +454,8 @@ public static PaymentAccountIndicatorEnum fromValue(String value) {
456454
private boolean isSetSuspiciousActivity = false;
457455

458456
public static final String JSON_PROPERTY_WORK_PHONE = "workPhone";
459-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.workPhone`
460-
// instead.
461-
private String workPhone;
457+
/* deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.workPhone` instead. */
458+
@Deprecated private String workPhone;
462459

463460
/** Mark when the attribute has been explicitly set. */
464461
private boolean isSetWorkPhone = false;
@@ -797,10 +794,9 @@ public void setDeliveryAddressUsageIndicator(
797794
*
798795
* @param homePhone Shopper's home phone number (including the country code).
799796
* @return the current {@code AccountInfo} instance, allowing for method chaining
800-
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.homePhone` instead.
797+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.homePhone` instead.
801798
*/
802-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.homePhone`
803-
// instead.
799+
@Deprecated
804800
public AccountInfo homePhone(String homePhone) {
805801
this.homePhone = homePhone;
806802
isSetHomePhone = true; // mark as set
@@ -811,11 +807,9 @@ public AccountInfo homePhone(String homePhone) {
811807
* Shopper's home phone number (including the country code).
812808
*
813809
* @return homePhone Shopper's home phone number (including the country code).
814-
* @deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.homePhone`
815-
* instead.
810+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.homePhone` instead.
816811
*/
817-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.homePhone`
818-
// instead.
812+
@Deprecated
819813
@JsonProperty(JSON_PROPERTY_HOME_PHONE)
820814
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
821815
public String getHomePhone() {
@@ -826,10 +820,9 @@ public String getHomePhone() {
826820
* Shopper's home phone number (including the country code).
827821
*
828822
* @param homePhone Shopper's home phone number (including the country code).
829-
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.homePhone` instead.
823+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.homePhone` instead.
830824
*/
831-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.homePhone`
832-
// instead.
825+
@Deprecated
833826
@JsonProperty(JSON_PROPERTY_HOME_PHONE)
834827
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
835828
public void setHomePhone(String homePhone) {
@@ -842,11 +835,9 @@ public void setHomePhone(String homePhone) {
842835
*
843836
* @param mobilePhone Shopper's mobile phone number (including the country code).
844837
* @return the current {@code AccountInfo} instance, allowing for method chaining
845-
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.mobilePhone`
846-
* instead.
838+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.mobilePhone` instead.
847839
*/
848-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.mobilePhone`
849-
// instead.
840+
@Deprecated
850841
public AccountInfo mobilePhone(String mobilePhone) {
851842
this.mobilePhone = mobilePhone;
852843
isSetMobilePhone = true; // mark as set
@@ -857,11 +848,9 @@ public AccountInfo mobilePhone(String mobilePhone) {
857848
* Shopper's mobile phone number (including the country code).
858849
*
859850
* @return mobilePhone Shopper's mobile phone number (including the country code).
860-
* @deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.mobilePhone`
861-
* instead.
851+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.mobilePhone` instead.
862852
*/
863-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.mobilePhone`
864-
// instead.
853+
@Deprecated
865854
@JsonProperty(JSON_PROPERTY_MOBILE_PHONE)
866855
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
867856
public String getMobilePhone() {
@@ -872,11 +861,9 @@ public String getMobilePhone() {
872861
* Shopper's mobile phone number (including the country code).
873862
*
874863
* @param mobilePhone Shopper's mobile phone number (including the country code).
875-
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.mobilePhone`
876-
* instead.
864+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.mobilePhone` instead.
877865
*/
878-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.mobilePhone`
879-
// instead.
866+
@Deprecated
880867
@JsonProperty(JSON_PROPERTY_MOBILE_PHONE)
881868
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
882869
public void setMobilePhone(String mobilePhone) {
@@ -1196,10 +1183,9 @@ public void setSuspiciousActivity(Boolean suspiciousActivity) {
11961183
*
11971184
* @param workPhone Shopper's work phone number (including the country code).
11981185
* @return the current {@code AccountInfo} instance, allowing for method chaining
1199-
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.workPhone` instead.
1186+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.workPhone` instead.
12001187
*/
1201-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.workPhone`
1202-
// instead.
1188+
@Deprecated
12031189
public AccountInfo workPhone(String workPhone) {
12041190
this.workPhone = workPhone;
12051191
isSetWorkPhone = true; // mark as set
@@ -1210,11 +1196,9 @@ public AccountInfo workPhone(String workPhone) {
12101196
* Shopper's work phone number (including the country code).
12111197
*
12121198
* @return workPhone Shopper's work phone number (including the country code).
1213-
* @deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.workPhone`
1214-
* instead.
1199+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.workPhone` instead.
12151200
*/
1216-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.workPhone`
1217-
// instead.
1201+
@Deprecated
12181202
@JsonProperty(JSON_PROPERTY_WORK_PHONE)
12191203
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
12201204
public String getWorkPhone() {
@@ -1225,10 +1209,9 @@ public String getWorkPhone() {
12251209
* Shopper's work phone number (including the country code).
12261210
*
12271211
* @param workPhone Shopper's work phone number (including the country code).
1228-
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.workPhone` instead.
1212+
* @deprecated since Adyen Checkout API v68 Use `ThreeDS2RequestData.workPhone` instead.
12291213
*/
1230-
@Deprecated // deprecated since Adyen Checkout API v68: Use `ThreeDS2RequestData.workPhone`
1231-
// instead.
1214+
@Deprecated
12321215
@JsonProperty(JSON_PROPERTY_WORK_PHONE)
12331216
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
12341217
public void setWorkPhone(String workPhone) {

src/main/java/com/adyen/model/checkout/AchDetails.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ public static BankAccountTypeEnum fromValue(String value) {
182182
private boolean isSetOwnerName = false;
183183

184184
public static final String JSON_PROPERTY_RECURRING_DETAIL_REFERENCE = "recurringDetailReference";
185-
@Deprecated // deprecated since Adyen Checkout API v49: Use `storedPaymentMethodId` instead.
186-
private String recurringDetailReference;
185+
/* deprecated since Adyen Checkout API v49: Use `storedPaymentMethodId` instead. */
186+
@Deprecated private String recurringDetailReference;
187187

188188
/** Mark when the attribute has been explicitly set. */
189189
private boolean isSetRecurringDetailReference = false;
@@ -608,9 +608,9 @@ public void setOwnerName(String ownerName) {
608608
* @param recurringDetailReference This is the `recurringDetailReference` returned in
609609
* the response when you created the token.
610610
* @return the current {@code AchDetails} instance, allowing for method chaining
611-
* @deprecated since Adyen Checkout API v49 Use `storedPaymentMethodId` instead.
611+
* @deprecated since Adyen Checkout API v49 Use `storedPaymentMethodId` instead.
612612
*/
613-
@Deprecated // deprecated since Adyen Checkout API v49: Use `storedPaymentMethodId` instead.
613+
@Deprecated
614614
public AchDetails recurringDetailReference(String recurringDetailReference) {
615615
this.recurringDetailReference = recurringDetailReference;
616616
isSetRecurringDetailReference = true; // mark as set
@@ -623,9 +623,9 @@ public AchDetails recurringDetailReference(String recurringDetailReference) {
623623
*
624624
* @return recurringDetailReference This is the `recurringDetailReference` returned in
625625
* the response when you created the token.
626-
* @deprecated // deprecated since Adyen Checkout API v49: Use `storedPaymentMethodId` instead.
626+
* @deprecated since Adyen Checkout API v49 Use `storedPaymentMethodId` instead.
627627
*/
628-
@Deprecated // deprecated since Adyen Checkout API v49: Use `storedPaymentMethodId` instead.
628+
@Deprecated
629629
@JsonProperty(JSON_PROPERTY_RECURRING_DETAIL_REFERENCE)
630630
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
631631
public String getRecurringDetailReference() {
@@ -638,9 +638,9 @@ public String getRecurringDetailReference() {
638638
*
639639
* @param recurringDetailReference This is the `recurringDetailReference` returned in
640640
* the response when you created the token.
641-
* @deprecated since Adyen Checkout API v49 Use `storedPaymentMethodId` instead.
641+
* @deprecated since Adyen Checkout API v49 Use `storedPaymentMethodId` instead.
642642
*/
643-
@Deprecated // deprecated since Adyen Checkout API v49: Use `storedPaymentMethodId` instead.
643+
@Deprecated
644644
@JsonProperty(JSON_PROPERTY_RECURRING_DETAIL_REFERENCE)
645645
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
646646
public void setRecurringDetailReference(String recurringDetailReference) {

src/main/java/com/adyen/model/checkout/AdditionalData3DSecure.java

Lines changed: 16 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434
})
3535
public class AdditionalData3DSecure {
3636
public static final String JSON_PROPERTY_ALLOW3_D_S2 = "allow3DS2";
37-
@Deprecated // deprecated since Adyen Checkout API v69: Use
38-
// `authenticationData.threeDSRequestData.nativeThreeDS` instead.
39-
private String allow3DS2;
37+
/* deprecated since Adyen Checkout API v69: Use `authenticationData.threeDSRequestData.nativeThreeDS` instead. */
38+
@Deprecated private String allow3DS2;
4039

4140
/** Mark when the attribute has been explicitly set. */
4241
private boolean isSetAllow3DS2 = false;
@@ -99,9 +98,8 @@ public static ChallengeWindowSizeEnum fromValue(String value) {
9998
private boolean isSetChallengeWindowSize = false;
10099

101100
public static final String JSON_PROPERTY_EXECUTE_THREE_D = "executeThreeD";
102-
@Deprecated // deprecated since Adyen Checkout API v69: Use
103-
// [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication) instead
104-
private String executeThreeD;
101+
/* deprecated since Adyen Checkout API v69: Use [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication) instead */
102+
@Deprecated private String executeThreeD;
105103

106104
/** Mark when the attribute has been explicitly set. */
107105
private boolean isSetExecuteThreeD = false;
@@ -160,10 +158,9 @@ public AdditionalData3DSecure() {}
160158
* instead, based on your configuration.
161159
* @return the current {@code AdditionalData3DSecure} instance, allowing for method chaining
162160
* @deprecated since Adyen Checkout API v69 Use
163-
* `authenticationData.threeDSRequestData.nativeThreeDS` instead.
161+
* `authenticationData.threeDSRequestData.nativeThreeDS` instead.
164162
*/
165-
@Deprecated // deprecated since Adyen Checkout API v69: Use
166-
// `authenticationData.threeDSRequestData.nativeThreeDS` instead.
163+
@Deprecated
167164
public AdditionalData3DSecure allow3DS2(String allow3DS2) {
168165
this.allow3DS2 = allow3DS2;
169166
isSetAllow3DS2 = true; // mark as set
@@ -196,11 +193,10 @@ public AdditionalData3DSecure allow3DS2(String allow3DS2) {
196193
* authorization rates and improve the shopper's experience. * **false** – Not ready to
197194
* support native 3D Secure 2 authentication. Adyen offers redirect 3D Secure 2 authentication
198195
* instead, based on your configuration.
199-
* @deprecated // deprecated since Adyen Checkout API v69: Use
196+
* @deprecated since Adyen Checkout API v69 Use
200197
* `authenticationData.threeDSRequestData.nativeThreeDS` instead.
201198
*/
202-
@Deprecated // deprecated since Adyen Checkout API v69: Use
203-
// `authenticationData.threeDSRequestData.nativeThreeDS` instead.
199+
@Deprecated
204200
@JsonProperty(JSON_PROPERTY_ALLOW3_D_S2)
205201
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
206202
public String getAllow3DS2() {
@@ -234,10 +230,9 @@ public String getAllow3DS2() {
234230
* support native 3D Secure 2 authentication. Adyen offers redirect 3D Secure 2 authentication
235231
* instead, based on your configuration.
236232
* @deprecated since Adyen Checkout API v69 Use
237-
* `authenticationData.threeDSRequestData.nativeThreeDS` instead.
233+
* `authenticationData.threeDSRequestData.nativeThreeDS` instead.
238234
*/
239-
@Deprecated // deprecated since Adyen Checkout API v69: Use
240-
// `authenticationData.threeDSRequestData.nativeThreeDS` instead.
235+
@Deprecated
241236
@JsonProperty(JSON_PROPERTY_ALLOW3_D_S2)
242237
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
243238
public void setAllow3DS2(String allow3DS2) {
@@ -307,11 +302,10 @@ public void setChallengeWindowSize(ChallengeWindowSizeEnum challengeWindowSize)
307302
* mandates 3D Secure because of the PSD2 directive or other, national regulations.
308303
* @return the current {@code AdditionalData3DSecure} instance, allowing for method chaining
309304
* @deprecated since Adyen Checkout API v69 Use
310-
* [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication)
305+
* [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication)
311306
* instead
312307
*/
313-
@Deprecated // deprecated since Adyen Checkout API v69: Use
314-
// [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication) instead
308+
@Deprecated
315309
public AdditionalData3DSecure executeThreeD(String executeThreeD) {
316310
this.executeThreeD = executeThreeD;
317311
isSetExecuteThreeD = true; // mark as set
@@ -331,12 +325,11 @@ public AdditionalData3DSecure executeThreeD(String executeThreeD) {
331325
* Possible values: * **true** – Perform 3D Secure authentication. * **false** – Don't
332326
* perform 3D Secure authentication. Note that this setting results in refusals if the issuer
333327
* mandates 3D Secure because of the PSD2 directive or other, national regulations.
334-
* @deprecated // deprecated since Adyen Checkout API v69: Use
328+
* @deprecated since Adyen Checkout API v69 Use
335329
* [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication)
336330
* instead
337331
*/
338-
@Deprecated // deprecated since Adyen Checkout API v69: Use
339-
// [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication) instead
332+
@Deprecated
340333
@JsonProperty(JSON_PROPERTY_EXECUTE_THREE_D)
341334
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
342335
public String getExecuteThreeD() {
@@ -357,11 +350,10 @@ public String getExecuteThreeD() {
357350
* perform 3D Secure authentication. Note that this setting results in refusals if the issuer
358351
* mandates 3D Secure because of the PSD2 directive or other, national regulations.
359352
* @deprecated since Adyen Checkout API v69 Use
360-
* [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication)
353+
* [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication)
361354
* instead
362355
*/
363-
@Deprecated // deprecated since Adyen Checkout API v69: Use
364-
// [`authenticationData.attemptAuthentication`](https://docs.adyen.com/api-explorer/Checkout/latest/post/payments?target=_blank#request-authenticationData-attemptAuthentication) instead
356+
@Deprecated
365357
@JsonProperty(JSON_PROPERTY_EXECUTE_THREE_D)
366358
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
367359
public void setExecuteThreeD(String executeThreeD) {

0 commit comments

Comments
 (0)