Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ public BalancePlatformNotificationResponse() {}

/**
* Respond with any **2xx** HTTP status code to [accept the
* webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
* webhook](https://docs.adyen.com/development-resources/webhooks/#accept-webhooks).
*
* @param notificationResponse Respond with any **2xx** HTTP status code to [accept the
* webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
* webhook](https://docs.adyen.com/development-resources/webhooks/#accept-webhooks).
* @return the current {@code BalancePlatformNotificationResponse} instance, allowing for method
* chaining
*/
Expand All @@ -41,10 +41,10 @@ public BalancePlatformNotificationResponse notificationResponse(String notificat

/**
* Respond with any **2xx** HTTP status code to [accept the
* webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
* webhook](https://docs.adyen.com/development-resources/webhooks/#accept-webhooks).
*
* @return notificationResponse Respond with any **2xx** HTTP status code to [accept the
* webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
* webhook](https://docs.adyen.com/development-resources/webhooks/#accept-webhooks).
*/
@JsonProperty(JSON_PROPERTY_NOTIFICATION_RESPONSE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand All @@ -54,10 +54,10 @@ public String getNotificationResponse() {

/**
* Respond with any **2xx** HTTP status code to [accept the
* webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
* webhook](https://docs.adyen.com/development-resources/webhooks/#accept-webhooks).
*
* @param notificationResponse Respond with any **2xx** HTTP status code to [accept the
* webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
* webhook](https://docs.adyen.com/development-resources/webhooks/#accept-webhooks).
*/
@JsonProperty(JSON_PROPERTY_NOTIFICATION_RESPONSE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/com/adyen/model/acswebhooks/Resource.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ public void setBalancePlatform(String balancePlatform) {

/**
* The date and time when the event was triggered, in ISO 8601 extended format. For example,
* **2020-12-18T10:15:30+01:00**.
* **2025-03-19T10:15:30+01:00**.
*
* @param creationDate The date and time when the event was triggered, in ISO 8601 extended
* format. For example, **2020-12-18T10:15:30+01:00**.
* format. For example, **2025-03-19T10:15:30+01:00**.
* @return the current {@code Resource} instance, allowing for method chaining
*/
public Resource creationDate(OffsetDateTime creationDate) {
Expand All @@ -84,10 +84,10 @@ public Resource creationDate(OffsetDateTime creationDate) {

/**
* The date and time when the event was triggered, in ISO 8601 extended format. For example,
* **2020-12-18T10:15:30+01:00**.
* **2025-03-19T10:15:30+01:00**.
*
* @return creationDate The date and time when the event was triggered, in ISO 8601 extended
* format. For example, **2020-12-18T10:15:30+01:00**.
* format. For example, **2025-03-19T10:15:30+01:00**.
*/
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand All @@ -97,10 +97,10 @@ public OffsetDateTime getCreationDate() {

/**
* The date and time when the event was triggered, in ISO 8601 extended format. For example,
* **2020-12-18T10:15:30+01:00**.
* **2025-03-19T10:15:30+01:00**.
*
* @param creationDate The date and time when the event was triggered, in ISO 8601 extended
* format. For example, **2020-12-18T10:15:30+01:00**.
* format. For example, **2025-03-19T10:15:30+01:00**.
*/
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand Down
Loading