Skip to content
Open
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
8 changes: 8 additions & 0 deletions sdk-generation-log/transactionwebhooks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"service": "transactionwebhooks",
"project": "java",
"generatedAt": "2026-05-05T15:05:22Z",
"openapiCommitSha": "7824ebf60ac8c780120e550d6495a8f02e409859",
"automationCommitSha": "0b7ef4e0ed6a7963ab005efe76eab748250edafc",
"libraryCommitSha": "3653edbb62e06f986f9d010b6e9f0a9c5945cf6f"
}
Comment on lines +1 to +8
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The pull request title and description indicate that this PR contains automated changes for the transactionwebhooks service, including updates to services and models. However, the actual Java service and model files for transactionwebhooks (typically expected in com.adyen.service.transactionwebhooks and com.adyen.model.transactionwebhooks) are missing from the changes.

Only the generation log and some unrelated formatting changes in the clouddevice service are present. Please verify if the code generation for transactionwebhooks was successful and if the resulting files should be included in this PR.

35 changes: 21 additions & 14 deletions src/main/java/com/adyen/model/transactionwebhooks/IssuedCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@ public static PanEntryModeEnum fromValue(String value) {
private PanEntryModeEnum panEntryMode;

/**
* Contains information about how the payment was processed. For example, **ecommerce** for online
* or **pos** for in-person payments.
* Contains information about how the payment was processed. Possible values: **atmWithdraw**,
* **balanceInquiry**, **ecommerce**, **moto**, **pos**, **purchaseWithCashback**, **recurring**,
* **token**.
*/
public enum ProcessingTypeEnum {
ATMWITHDRAW(String.valueOf("atmWithdraw")),
Expand Down Expand Up @@ -297,11 +298,13 @@ public void setPanEntryMode(PanEntryModeEnum panEntryMode) {
}

/**
* Contains information about how the payment was processed. For example, **ecommerce** for online
* or **pos** for in-person payments.
* Contains information about how the payment was processed. Possible values: **atmWithdraw**,
* **balanceInquiry**, **ecommerce**, **moto**, **pos**, **purchaseWithCashback**, **recurring**,
* **token**.
*
* @param processingType Contains information about how the payment was processed. For example,
* **ecommerce** for online or **pos** for in-person payments.
* @param processingType Contains information about how the payment was processed. Possible
* values: **atmWithdraw**, **balanceInquiry**, **ecommerce**, **moto**, **pos**,
* **purchaseWithCashback**, **recurring**, **token**.
* @return the current {@code IssuedCard} instance, allowing for method chaining
*/
public IssuedCard processingType(ProcessingTypeEnum processingType) {
Expand All @@ -310,11 +313,13 @@ public IssuedCard processingType(ProcessingTypeEnum processingType) {
}

/**
* Contains information about how the payment was processed. For example, **ecommerce** for online
* or **pos** for in-person payments.
* Contains information about how the payment was processed. Possible values: **atmWithdraw**,
* **balanceInquiry**, **ecommerce**, **moto**, **pos**, **purchaseWithCashback**, **recurring**,
* **token**.
*
* @return processingType Contains information about how the payment was processed. For example,
* **ecommerce** for online or **pos** for in-person payments.
* @return processingType Contains information about how the payment was processed. Possible
* values: **atmWithdraw**, **balanceInquiry**, **ecommerce**, **moto**, **pos**,
* **purchaseWithCashback**, **recurring**, **token**.
*/
@JsonProperty(JSON_PROPERTY_PROCESSING_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand All @@ -323,11 +328,13 @@ public ProcessingTypeEnum getProcessingType() {
}

/**
* Contains information about how the payment was processed. For example, **ecommerce** for online
* or **pos** for in-person payments.
* Contains information about how the payment was processed. Possible values: **atmWithdraw**,
* **balanceInquiry**, **ecommerce**, **moto**, **pos**, **purchaseWithCashback**, **recurring**,
* **token**.
*
* @param processingType Contains information about how the payment was processed. For example,
* **ecommerce** for online or **pos** for in-person payments.
* @param processingType Contains information about how the payment was processed. Possible
* values: **atmWithdraw**, **balanceInquiry**, **ecommerce**, **moto**, **pos**,
* **purchaseWithCashback**, **recurring**, **token**.
*/
@JsonProperty(JSON_PROPERTY_PROCESSING_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand Down