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: 4 additions & 4 deletions sdk-generation-log/payment.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"service": "payment",
"project": "java",
"generatedAt": "2026-04-14T07:37:56Z",
"openapiCommitSha": "a1f4b19cca472f4d51aa7568fc8ff0f838ca9f57",
"automationCommitSha": "855b6c5526cb5fae757e921687c38df66d31dc4b",
"libraryCommitSha": "4a7c8d4eb02058d9d3215ba0497d4b2aa8905bea"
"generatedAt": "2026-04-23T11:37:41Z",
"openapiCommitSha": "ae28b691b7da78d2abedb5fa8baff05c59b00ae0",
"automationCommitSha": "4ad0c0c7e87bc0e5994a9a3350a991d0691350bb",
"libraryCommitSha": "039fe6c5dfc76f775fbda396c7ac54498aa73770"
}
4 changes: 2 additions & 2 deletions src/main/java/com/adyen/service/TerminalCloudAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
import java.io.IOException;

/**
* Terminal API for cloud integrations.
* You should consider migrating to {@link com.adyen.service.clouddevice.CloudDeviceApi}.
* Terminal API for cloud integrations. You should consider migrating to {@link
* com.adyen.service.clouddevice.CloudDeviceApi}.
*/
public class TerminalCloudAPI extends ApiKeyAuthenticatedService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import com.adyen.Client;
import com.adyen.Service;
import com.adyen.constants.ApiConstants;
import com.adyen.model.RequestOptions;
import com.adyen.model.clouddevice.*;
import com.adyen.model.clouddevice.CloudDeviceApiAsyncResponse;
import com.adyen.service.exception.ApiException;
Expand Down Expand Up @@ -142,7 +141,8 @@ public CloudDeviceApiAsyncResponse async(
/**
* Get a list of connected devices
*
* @param merchantAccount {@link String } The unique identifier of the merchant account. (required)
* @param merchantAccount {@link String } The unique identifier of the merchant account.
* (required)
* @return {@link ConnectedDevicesResponse }
* @throws ApiException if fails to make API call
*/
Expand All @@ -154,7 +154,8 @@ public ConnectedDevicesResponse getConnectedDevices(String merchantAccount)
/**
* Get a list of connected devices
*
* @param merchantAccount {@link String } The unique identifier of the merchant account. (required)
* @param merchantAccount {@link String } The unique identifier of the merchant account.
* (required)
* @param store {@link String } Query: The store ID of the store belonging to the merchant account
* specified in the path. (optional)
* @return {@link ConnectedDevicesResponse }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@ public CloudDeviceApiResponse sync(
return CloudDeviceApiResponse.fromJson(response);
}

return CloudDeviceApiResponse.fromJson(
nexoSecurityManager.decrypt(saleToPOISecuredResponse));
return CloudDeviceApiResponse.fromJson(nexoSecurityManager.decrypt(saleToPOISecuredResponse));
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public void sendSync() throws Exception {

Assertions.assertNotNull(response);
Assertions.assertNotNull(response.getSaleToPOIResponse());
Assertions.assertEquals(getTerminalDeviceId(), response.getSaleToPOIResponse().getMessageHeader().getPOIID());
Assertions.assertEquals(
getTerminalDeviceId(), response.getSaleToPOIResponse().getMessageHeader().getPOIID());
}

@Disabled("Enable when you want to test with the Terminal")
Expand Down Expand Up @@ -96,7 +97,8 @@ public void sendEncryptedSync() throws Exception {

Assertions.assertNotNull(response);
Assertions.assertNotNull(response.getSaleToPOIResponse());
Assertions.assertEquals(getTerminalDeviceId(), response.getSaleToPOIResponse().getMessageHeader().getPOIID());
Assertions.assertEquals(
getTerminalDeviceId(), response.getSaleToPOIResponse().getMessageHeader().getPOIID());
}

@Disabled("Enable when you want to test with the Terminal")
Expand Down