From 793902352cb48c462ade13fc117e519da51a07a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zcan?= Date: Wed, 9 Sep 2026 17:38:11 +0300 Subject: [PATCH 1/2] Replace `threedsKey` with `threedsKeyExists` in `MerchantPosResponse` --- src/main/java/io/craftgate/response/MerchantPosResponse.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/craftgate/response/MerchantPosResponse.java b/src/main/java/io/craftgate/response/MerchantPosResponse.java index 8f67c2a9..4ec1d33d 100644 --- a/src/main/java/io/craftgate/response/MerchantPosResponse.java +++ b/src/main/java/io/craftgate/response/MerchantPosResponse.java @@ -24,7 +24,7 @@ public class MerchantPosResponse { private String terminalId; private String threedsPosnetId; private String threedsTerminalId; - private String threedsKey; + private Boolean threedsKeyExists; private String threedsPath; private Boolean enableForeignCard; private Boolean enableInstallment; From a149f1700741db74c2e47361ec1eb32d7771bc5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zcan?= Date: Thu, 10 Sep 2026 15:32:14 +0300 Subject: [PATCH 2/2] Remove `threedsKeyExists` field from `MerchantPosResponse` --- src/main/java/io/craftgate/response/MerchantPosResponse.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/io/craftgate/response/MerchantPosResponse.java b/src/main/java/io/craftgate/response/MerchantPosResponse.java index 4ec1d33d..304ca635 100644 --- a/src/main/java/io/craftgate/response/MerchantPosResponse.java +++ b/src/main/java/io/craftgate/response/MerchantPosResponse.java @@ -24,7 +24,6 @@ public class MerchantPosResponse { private String terminalId; private String threedsPosnetId; private String threedsTerminalId; - private Boolean threedsKeyExists; private String threedsPath; private Boolean enableForeignCard; private Boolean enableInstallment;