Skip to content

Commit 0cc5353

Browse files
Merge a60f52f into 9bb424b
2 parents 9bb424b + a60f52f commit 0cc5353

File tree

5 files changed

+51
-13
lines changed

5 files changed

+51
-13
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,10 @@ public FundRecipient walletOwnerTaxId(String walletOwnerTaxId) {
391391
}
392392

393393
/**
394-
* Indicates the tax identifier of the fund recepient
394+
* Indicates the tax identifier of the fund recipient
395395
* @return walletOwnerTaxId
396396
**/
397-
@ApiModelProperty(value = "Indicates the tax identifier of the fund recepient")
397+
@ApiModelProperty(value = "Indicates the tax identifier of the fund recipient")
398398
@JsonProperty(JSON_PROPERTY_WALLET_OWNER_TAX_ID)
399399
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
400400

@@ -404,7 +404,7 @@ public String getWalletOwnerTaxId() {
404404

405405

406406
/**
407-
* Indicates the tax identifier of the fund recepient
407+
* Indicates the tax identifier of the fund recipient
408408
*
409409
* @param walletOwnerTaxId
410410
*/

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

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
Mandate.JSON_PROPERTY_AMOUNT_RULE,
3636
Mandate.JSON_PROPERTY_BILLING_ATTEMPTS_RULE,
3737
Mandate.JSON_PROPERTY_BILLING_DAY,
38+
Mandate.JSON_PROPERTY_COUNT,
3839
Mandate.JSON_PROPERTY_ENDS_AT,
3940
Mandate.JSON_PROPERTY_FREQUENCY,
4041
Mandate.JSON_PROPERTY_REMARKS,
@@ -126,6 +127,9 @@ public static BillingAttemptsRuleEnum fromValue(String value) {
126127
public static final String JSON_PROPERTY_BILLING_DAY = "billingDay";
127128
private String billingDay;
128129

130+
public static final String JSON_PROPERTY_COUNT = "count";
131+
private String count;
132+
129133
public static final String JSON_PROPERTY_ENDS_AT = "endsAt";
130134
private String endsAt;
131135

@@ -308,6 +312,36 @@ public void setBillingDay(String billingDay) {
308312
}
309313

310314

315+
public Mandate count(String count) {
316+
this.count = count;
317+
return this;
318+
}
319+
320+
/**
321+
* The number of transactions that can be performed within the given frequency.
322+
* @return count
323+
**/
324+
@ApiModelProperty(value = "The number of transactions that can be performed within the given frequency.")
325+
@JsonProperty(JSON_PROPERTY_COUNT)
326+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
327+
328+
public String getCount() {
329+
return count;
330+
}
331+
332+
333+
/**
334+
* The number of transactions that can be performed within the given frequency.
335+
*
336+
* @param count
337+
*/
338+
@JsonProperty(JSON_PROPERTY_COUNT)
339+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
340+
public void setCount(String count) {
341+
this.count = count;
342+
}
343+
344+
311345
public Mandate endsAt(String endsAt) {
312346
this.endsAt = endsAt;
313347
return this;
@@ -444,6 +478,7 @@ public boolean equals(Object o) {
444478
Objects.equals(this.amountRule, mandate.amountRule) &&
445479
Objects.equals(this.billingAttemptsRule, mandate.billingAttemptsRule) &&
446480
Objects.equals(this.billingDay, mandate.billingDay) &&
481+
Objects.equals(this.count, mandate.count) &&
447482
Objects.equals(this.endsAt, mandate.endsAt) &&
448483
Objects.equals(this.frequency, mandate.frequency) &&
449484
Objects.equals(this.remarks, mandate.remarks) &&
@@ -452,7 +487,7 @@ public boolean equals(Object o) {
452487

453488
@Override
454489
public int hashCode() {
455-
return Objects.hash(amount, amountRule, billingAttemptsRule, billingDay, endsAt, frequency, remarks, startsAt);
490+
return Objects.hash(amount, amountRule, billingAttemptsRule, billingDay, count, endsAt, frequency, remarks, startsAt);
456491
}
457492

458493
@Override
@@ -463,6 +498,7 @@ public String toString() {
463498
sb.append(" amountRule: ").append(toIndentedString(amountRule)).append("\n");
464499
sb.append(" billingAttemptsRule: ").append(toIndentedString(billingAttemptsRule)).append("\n");
465500
sb.append(" billingDay: ").append(toIndentedString(billingDay)).append("\n");
501+
sb.append(" count: ").append(toIndentedString(count)).append("\n");
466502
sb.append(" endsAt: ").append(toIndentedString(endsAt)).append("\n");
467503
sb.append(" frequency: ").append(toIndentedString(frequency)).append("\n");
468504
sb.append(" remarks: ").append(toIndentedString(remarks)).append("\n");

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ public enum TypeEnum {
113113

114114
PIX("pix"),
115115

116+
BIZUM("bizum"),
117+
116118
WALLEY("walley"),
117119

118120
WALLEY_B2B("walley_b2b"),

src/main/java/com/adyen/model/management/AdditionalSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ public AdditionalSettings addIncludeEventCodesItem(String includeEventCodesItem)
6363
}
6464

6565
/**
66-
* Object containing list of event codes for which the notifcation will be sent.
66+
* Object containing list of event codes for which the notification will be sent.
6767
* @return includeEventCodes
6868
**/
69-
@ApiModelProperty(value = "Object containing list of event codes for which the notifcation will be sent. ")
69+
@ApiModelProperty(value = "Object containing list of event codes for which the notification will be sent. ")
7070
@JsonProperty(JSON_PROPERTY_INCLUDE_EVENT_CODES)
7171
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
7272

@@ -76,7 +76,7 @@ public List<String> getIncludeEventCodes() {
7676

7777

7878
/**
79-
* Object containing list of event codes for which the notifcation will be sent.
79+
* Object containing list of event codes for which the notification will be sent.
8080
*
8181
* @param includeEventCodes
8282
*/

src/main/java/com/adyen/model/management/AdditionalSettingsResponse.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ public AdditionalSettingsResponse addExcludeEventCodesItem(String excludeEventCo
6767
}
6868

6969
/**
70-
* Object containing list of event codes for which the notifcation will not be sent.
70+
* Object containing list of event codes for which the notification will not be sent.
7171
* @return excludeEventCodes
7272
**/
73-
@ApiModelProperty(value = "Object containing list of event codes for which the notifcation will not be sent. ")
73+
@ApiModelProperty(value = "Object containing list of event codes for which the notification will not be sent. ")
7474
@JsonProperty(JSON_PROPERTY_EXCLUDE_EVENT_CODES)
7575
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
7676

@@ -80,7 +80,7 @@ public List<String> getExcludeEventCodes() {
8080

8181

8282
/**
83-
* Object containing list of event codes for which the notifcation will not be sent.
83+
* Object containing list of event codes for which the notification will not be sent.
8484
*
8585
* @param excludeEventCodes
8686
*/
@@ -105,10 +105,10 @@ public AdditionalSettingsResponse addIncludeEventCodesItem(String includeEventCo
105105
}
106106

107107
/**
108-
* Object containing list of event codes for which the notifcation will be sent.
108+
* Object containing list of event codes for which the notification will be sent.
109109
* @return includeEventCodes
110110
**/
111-
@ApiModelProperty(value = "Object containing list of event codes for which the notifcation will be sent. ")
111+
@ApiModelProperty(value = "Object containing list of event codes for which the notification will be sent. ")
112112
@JsonProperty(JSON_PROPERTY_INCLUDE_EVENT_CODES)
113113
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
114114

@@ -118,7 +118,7 @@ public List<String> getIncludeEventCodes() {
118118

119119

120120
/**
121-
* Object containing list of event codes for which the notifcation will be sent.
121+
* Object containing list of event codes for which the notification will be sent.
122122
*
123123
* @param includeEventCodes
124124
*/

0 commit comments

Comments
 (0)