Skip to content

Commit f56348d

Browse files
false[adyen-sdk-automation] automated change
1 parent 8461104 commit f56348d

21 files changed

+2629
-49
lines changed

src/main/java/com/adyen/model/acswebhooks/AuthenticationNotificationData.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ public void setBalancePlatform(String balancePlatform) {
163163
}
164164

165165
/**
166-
* Unique identifier of the authentication.
166+
* The unique identifier of the authentication.
167167
*
168-
* @param id Unique identifier of the authentication.
168+
* @param id The unique identifier of the authentication.
169169
* @return the current {@code AuthenticationNotificationData} instance, allowing for method chaining
170170
*/
171171
public AuthenticationNotificationData id(String id) {
@@ -174,8 +174,8 @@ public AuthenticationNotificationData id(String id) {
174174
}
175175

176176
/**
177-
* Unique identifier of the authentication.
178-
* @return id Unique identifier of the authentication.
177+
* The unique identifier of the authentication.
178+
* @return id The unique identifier of the authentication.
179179
*/
180180
@JsonProperty(JSON_PROPERTY_ID)
181181
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -184,9 +184,9 @@ public String getId() {
184184
}
185185

186186
/**
187-
* Unique identifier of the authentication.
187+
* The unique identifier of the authentication.
188188
*
189-
* @param id Unique identifier of the authentication.
189+
* @param id The unique identifier of the authentication.
190190
*/
191191
@JsonProperty(JSON_PROPERTY_ID)
192192
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -195,9 +195,9 @@ public void setId(String id) {
195195
}
196196

197197
/**
198-
* Unique identifier of the payment instrument that was used for the authentication.
198+
* The unique identifier of the payment instrument that was used for the authentication.
199199
*
200-
* @param paymentInstrumentId Unique identifier of the payment instrument that was used for the authentication.
200+
* @param paymentInstrumentId The unique identifier of the payment instrument that was used for the authentication.
201201
* @return the current {@code AuthenticationNotificationData} instance, allowing for method chaining
202202
*/
203203
public AuthenticationNotificationData paymentInstrumentId(String paymentInstrumentId) {
@@ -206,8 +206,8 @@ public AuthenticationNotificationData paymentInstrumentId(String paymentInstrume
206206
}
207207

208208
/**
209-
* Unique identifier of the payment instrument that was used for the authentication.
210-
* @return paymentInstrumentId Unique identifier of the payment instrument that was used for the authentication.
209+
* The unique identifier of the payment instrument that was used for the authentication.
210+
* @return paymentInstrumentId The unique identifier of the payment instrument that was used for the authentication.
211211
*/
212212
@JsonProperty(JSON_PROPERTY_PAYMENT_INSTRUMENT_ID)
213213
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -216,9 +216,9 @@ public String getPaymentInstrumentId() {
216216
}
217217

218218
/**
219-
* Unique identifier of the payment instrument that was used for the authentication.
219+
* The unique identifier of the payment instrument that was used for the authentication.
220220
*
221-
* @param paymentInstrumentId Unique identifier of the payment instrument that was used for the authentication.
221+
* @param paymentInstrumentId The unique identifier of the payment instrument that was used for the authentication.
222222
*/
223223
@JsonProperty(JSON_PROPERTY_PAYMENT_INSTRUMENT_ID)
224224
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

src/main/java/com/adyen/model/acswebhooks/PurchaseInfo.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ public PurchaseInfo() {
4949
}
5050

5151
/**
52-
* Date of the purchase.
52+
* The date of the purchase.
5353
*
54-
* @param date Date of the purchase.
54+
* @param date The date of the purchase.
5555
* @return the current {@code PurchaseInfo} instance, allowing for method chaining
5656
*/
5757
public PurchaseInfo date(String date) {
@@ -60,8 +60,8 @@ public PurchaseInfo date(String date) {
6060
}
6161

6262
/**
63-
* Date of the purchase.
64-
* @return date Date of the purchase.
63+
* The date of the purchase.
64+
* @return date The date of the purchase.
6565
*/
6666
@JsonProperty(JSON_PROPERTY_DATE)
6767
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -70,9 +70,9 @@ public String getDate() {
7070
}
7171

7272
/**
73-
* Date of the purchase.
73+
* The date of the purchase.
7474
*
75-
* @param date Date of the purchase.
75+
* @param date The date of the purchase.
7676
*/
7777
@JsonProperty(JSON_PROPERTY_DATE)
7878
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -81,9 +81,9 @@ public void setDate(String date) {
8181
}
8282

8383
/**
84-
* Name of the merchant.
84+
* The name of the business that the cardholder purchased from.
8585
*
86-
* @param merchantName Name of the merchant.
86+
* @param merchantName The name of the business that the cardholder purchased from.
8787
* @return the current {@code PurchaseInfo} instance, allowing for method chaining
8888
*/
8989
public PurchaseInfo merchantName(String merchantName) {
@@ -92,8 +92,8 @@ public PurchaseInfo merchantName(String merchantName) {
9292
}
9393

9494
/**
95-
* Name of the merchant.
96-
* @return merchantName Name of the merchant.
95+
* The name of the business that the cardholder purchased from.
96+
* @return merchantName The name of the business that the cardholder purchased from.
9797
*/
9898
@JsonProperty(JSON_PROPERTY_MERCHANT_NAME)
9999
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -102,9 +102,9 @@ public String getMerchantName() {
102102
}
103103

104104
/**
105-
* Name of the merchant.
105+
* The name of the business that the cardholder purchased from.
106106
*
107-
* @param merchantName Name of the merchant.
107+
* @param merchantName The name of the business that the cardholder purchased from.
108108
*/
109109
@JsonProperty(JSON_PROPERTY_MERCHANT_NAME)
110110
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

src/main/java/com/adyen/model/balanceplatform/Card.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -500,9 +500,9 @@ public String getNumber() {
500500

501501

502502
/**
503-
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
503+
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
504504
*
505-
* @param threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
505+
* @param threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
506506
* @return the current {@code Card} instance, allowing for method chaining
507507
*/
508508
public Card threeDSecure(String threeDSecure) {
@@ -511,8 +511,8 @@ public Card threeDSecure(String threeDSecure) {
511511
}
512512

513513
/**
514-
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
515-
* @return threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
514+
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
515+
* @return threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
516516
*/
517517
@JsonProperty(JSON_PROPERTY_THREE_D_SECURE)
518518
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -521,9 +521,9 @@ public String getThreeDSecure() {
521521
}
522522

523523
/**
524-
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
524+
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
525525
*
526-
* @param threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
526+
* @param threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
527527
*/
528528
@JsonProperty(JSON_PROPERTY_THREE_D_SECURE)
529529
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

src/main/java/com/adyen/model/balanceplatform/CardInfo.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ public void setFormFactor(FormFactorEnum formFactor) {
332332
}
333333

334334
/**
335-
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
335+
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
336336
*
337-
* @param threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
337+
* @param threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
338338
* @return the current {@code CardInfo} instance, allowing for method chaining
339339
*/
340340
public CardInfo threeDSecure(String threeDSecure) {
@@ -343,8 +343,8 @@ public CardInfo threeDSecure(String threeDSecure) {
343343
}
344344

345345
/**
346-
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
347-
* @return threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
346+
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
347+
* @return threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
348348
*/
349349
@JsonProperty(JSON_PROPERTY_THREE_D_SECURE)
350350
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -353,9 +353,9 @@ public String getThreeDSecure() {
353353
}
354354

355355
/**
356-
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
356+
* Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
357357
*
358-
* @param threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. >Reach out to your Adyen contact to get the values relevant for your integration.
358+
* @param threeDSecure Allocates a specific product range for either a physical or a virtual card. Possible values: **fullySupported**, **secureCorporate**. > Reach out to your Adyen contact to get the values relevant for your integration.
359359
*/
360360
@JsonProperty(JSON_PROPERTY_THREE_D_SECURE)
361361
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

src/main/java/com/adyen/model/balanceplatform/TransactionRuleRestrictions.java

Lines changed: 42 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
import com.adyen.model.balanceplatform.TotalAmountRestriction;
4040
import com.adyen.model.balanceplatform.WalletProviderAccountScoreRestriction;
4141
import com.adyen.model.balanceplatform.WalletProviderDeviceScore;
42+
import com.adyen.model.balanceplatform.WalletProviderDeviceType;
4243
import com.fasterxml.jackson.annotation.JsonInclude;
4344
import com.fasterxml.jackson.annotation.JsonProperty;
4445
import com.fasterxml.jackson.annotation.JsonCreator;
@@ -76,7 +77,8 @@
7677
TransactionRuleRestrictions.JSON_PROPERTY_TOKEN_REQUESTORS,
7778
TransactionRuleRestrictions.JSON_PROPERTY_TOTAL_AMOUNT,
7879
TransactionRuleRestrictions.JSON_PROPERTY_WALLET_PROVIDER_ACCOUNT_SCORE,
79-
TransactionRuleRestrictions.JSON_PROPERTY_WALLET_PROVIDER_DEVICE_SCORE
80+
TransactionRuleRestrictions.JSON_PROPERTY_WALLET_PROVIDER_DEVICE_SCORE,
81+
TransactionRuleRestrictions.JSON_PROPERTY_WALLET_PROVIDER_DEVICE_TYPE
8082
})
8183

8284
public class TransactionRuleRestrictions {
@@ -152,6 +154,9 @@ public class TransactionRuleRestrictions {
152154
public static final String JSON_PROPERTY_WALLET_PROVIDER_DEVICE_SCORE = "walletProviderDeviceScore";
153155
private WalletProviderDeviceScore walletProviderDeviceScore;
154156

157+
public static final String JSON_PROPERTY_WALLET_PROVIDER_DEVICE_TYPE = "walletProviderDeviceType";
158+
private WalletProviderDeviceType walletProviderDeviceType;
159+
155160
public TransactionRuleRestrictions() {
156161
}
157162

@@ -923,6 +928,38 @@ public void setWalletProviderDeviceScore(WalletProviderDeviceScore walletProvide
923928
this.walletProviderDeviceScore = walletProviderDeviceScore;
924929
}
925930

931+
/**
932+
* walletProviderDeviceType
933+
*
934+
* @param walletProviderDeviceType
935+
* @return the current {@code TransactionRuleRestrictions} instance, allowing for method chaining
936+
*/
937+
public TransactionRuleRestrictions walletProviderDeviceType(WalletProviderDeviceType walletProviderDeviceType) {
938+
this.walletProviderDeviceType = walletProviderDeviceType;
939+
return this;
940+
}
941+
942+
/**
943+
* Get walletProviderDeviceType
944+
* @return walletProviderDeviceType
945+
*/
946+
@JsonProperty(JSON_PROPERTY_WALLET_PROVIDER_DEVICE_TYPE)
947+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
948+
public WalletProviderDeviceType getWalletProviderDeviceType() {
949+
return walletProviderDeviceType;
950+
}
951+
952+
/**
953+
* walletProviderDeviceType
954+
*
955+
* @param walletProviderDeviceType
956+
*/
957+
@JsonProperty(JSON_PROPERTY_WALLET_PROVIDER_DEVICE_TYPE)
958+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
959+
public void setWalletProviderDeviceType(WalletProviderDeviceType walletProviderDeviceType) {
960+
this.walletProviderDeviceType = walletProviderDeviceType;
961+
}
962+
926963
/**
927964
* Return true if this TransactionRuleRestrictions object is equal to o.
928965
*/
@@ -958,12 +995,13 @@ public boolean equals(Object o) {
958995
Objects.equals(this.tokenRequestors, transactionRuleRestrictions.tokenRequestors) &&
959996
Objects.equals(this.totalAmount, transactionRuleRestrictions.totalAmount) &&
960997
Objects.equals(this.walletProviderAccountScore, transactionRuleRestrictions.walletProviderAccountScore) &&
961-
Objects.equals(this.walletProviderDeviceScore, transactionRuleRestrictions.walletProviderDeviceScore);
998+
Objects.equals(this.walletProviderDeviceScore, transactionRuleRestrictions.walletProviderDeviceScore) &&
999+
Objects.equals(this.walletProviderDeviceType, transactionRuleRestrictions.walletProviderDeviceType);
9621000
}
9631001

9641002
@Override
9651003
public int hashCode() {
966-
return Objects.hash(activeNetworkTokens, brandVariants, counterpartyBank, counterpartyTypes, countries, dayOfWeek, differentCurrencies, entryModes, internationalTransaction, matchingTransactions, matchingValues, mccs, merchantNames, merchants, processingTypes, riskScores, sameAmountRestriction, sameCounterpartyRestriction, sourceAccountTypes, timeOfDay, tokenRequestors, totalAmount, walletProviderAccountScore, walletProviderDeviceScore);
1004+
return Objects.hash(activeNetworkTokens, brandVariants, counterpartyBank, counterpartyTypes, countries, dayOfWeek, differentCurrencies, entryModes, internationalTransaction, matchingTransactions, matchingValues, mccs, merchantNames, merchants, processingTypes, riskScores, sameAmountRestriction, sameCounterpartyRestriction, sourceAccountTypes, timeOfDay, tokenRequestors, totalAmount, walletProviderAccountScore, walletProviderDeviceScore, walletProviderDeviceType);
9671005
}
9681006

9691007
@Override
@@ -994,6 +1032,7 @@ public String toString() {
9941032
sb.append(" totalAmount: ").append(toIndentedString(totalAmount)).append("\n");
9951033
sb.append(" walletProviderAccountScore: ").append(toIndentedString(walletProviderAccountScore)).append("\n");
9961034
sb.append(" walletProviderDeviceScore: ").append(toIndentedString(walletProviderDeviceScore)).append("\n");
1035+
sb.append(" walletProviderDeviceType: ").append(toIndentedString(walletProviderDeviceType)).append("\n");
9971036
sb.append("}");
9981037
return sb.toString();
9991038
}

src/main/java/com/adyen/model/balanceplatform/TransferRoute.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ public enum CategoryEnum {
5050

5151
GRANTS(String.valueOf("grants")),
5252

53+
INTEREST(String.valueOf("interest")),
54+
5355
INTERNAL(String.valueOf("internal")),
5456

5557
ISSUEDCARD(String.valueOf("issuedCard")),

0 commit comments

Comments
 (0)