Skip to content

Commit 4e21ff1

Browse files
false[adyen-sdk-automation] automated change (#1485)
1 parent de0a28f commit 4e21ff1

15 files changed

+725
-259
lines changed

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

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,52 @@
2929
* AfterpayTouchInfo
3030
*/
3131
@JsonPropertyOrder({
32+
AfterpayTouchInfo.JSON_PROPERTY_SUPPORT_EMAIL,
3233
AfterpayTouchInfo.JSON_PROPERTY_SUPPORT_URL
3334
})
3435

3536
public class AfterpayTouchInfo {
37+
public static final String JSON_PROPERTY_SUPPORT_EMAIL = "supportEmail";
38+
private String supportEmail;
39+
3640
public static final String JSON_PROPERTY_SUPPORT_URL = "supportUrl";
3741
private String supportUrl;
3842

3943
public AfterpayTouchInfo() {
4044
}
4145

46+
/**
47+
* Support Email
48+
*
49+
* @param supportEmail Support Email
50+
* @return the current {@code AfterpayTouchInfo} instance, allowing for method chaining
51+
*/
52+
public AfterpayTouchInfo supportEmail(String supportEmail) {
53+
this.supportEmail = supportEmail;
54+
return this;
55+
}
56+
57+
/**
58+
* Support Email
59+
* @return supportEmail Support Email
60+
*/
61+
@JsonProperty(JSON_PROPERTY_SUPPORT_EMAIL)
62+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
63+
public String getSupportEmail() {
64+
return supportEmail;
65+
}
66+
67+
/**
68+
* Support Email
69+
*
70+
* @param supportEmail Support Email
71+
*/
72+
@JsonProperty(JSON_PROPERTY_SUPPORT_EMAIL)
73+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
74+
public void setSupportEmail(String supportEmail) {
75+
this.supportEmail = supportEmail;
76+
}
77+
4278
/**
4379
* Support Url
4480
*
@@ -83,18 +119,20 @@ public boolean equals(Object o) {
83119
return false;
84120
}
85121
AfterpayTouchInfo afterpayTouchInfo = (AfterpayTouchInfo) o;
86-
return Objects.equals(this.supportUrl, afterpayTouchInfo.supportUrl);
122+
return Objects.equals(this.supportEmail, afterpayTouchInfo.supportEmail) &&
123+
Objects.equals(this.supportUrl, afterpayTouchInfo.supportUrl);
87124
}
88125

89126
@Override
90127
public int hashCode() {
91-
return Objects.hash(supportUrl);
128+
return Objects.hash(supportEmail, supportUrl);
92129
}
93130

94131
@Override
95132
public String toString() {
96133
StringBuilder sb = new StringBuilder();
97134
sb.append("class AfterpayTouchInfo {\n");
135+
sb.append(" supportEmail: ").append(toIndentedString(supportEmail)).append("\n");
98136
sb.append(" supportUrl: ").append(toIndentedString(supportUrl)).append("\n");
99137
sb.append("}");
100138
return sb.toString();

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -673,9 +673,9 @@ public void setPopulateSoapActionHeader(Boolean populateSoapActionHeader) {
673673
}
674674

675675
/**
676-
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
676+
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **direct-debit-notice-of-change** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
677677
*
678-
* @param type The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
678+
* @param type The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **direct-debit-notice-of-change** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
679679
* @return the current {@code CreateCompanyWebhookRequest} instance, allowing for method chaining
680680
*/
681681
public CreateCompanyWebhookRequest type(String type) {
@@ -684,8 +684,8 @@ public CreateCompanyWebhookRequest type(String type) {
684684
}
685685

686686
/**
687-
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
688-
* @return type The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
687+
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **direct-debit-notice-of-change** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
688+
* @return type The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **direct-debit-notice-of-change** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
689689
*/
690690
@JsonProperty(JSON_PROPERTY_TYPE)
691691
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -694,9 +694,9 @@ public String getType() {
694694
}
695695

696696
/**
697-
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
697+
* The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **direct-debit-notice-of-change** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
698698
*
699-
* @param type The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
699+
* @param type The type of webhook that is being created. Possible values are: - **standard** - **account-settings-notification** - **banktransfer-notification** - **boletobancario-notification** - **directdebit-notification** - **ach-notification-of-change-notification** - **direct-debit-notice-of-change** - **pending-notification** - **ideal-notification** - **ideal-pending-notification** - **report-notification** - **rreq-notification** - **terminal-settings** - **terminal-boarding** Find out more about [standard notification webhooks](https://docs.adyen.com/development-resources/webhooks/understand-notifications#event-codes) and [other types of notifications](https://docs.adyen.com/development-resources/webhooks/understand-notifications#other-notifications).
700700
*/
701701
@JsonProperty(JSON_PROPERTY_TYPE)
702702
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

0 commit comments

Comments
 (0)