Skip to content

Commit

Permalink
DEV-29805 adds threeDsRedirectionUrl field to 3ds response (#161)
Browse files Browse the repository at this point in the history
Co-authored-by: Yigit TEKELER <yigit.tekeler@iyzico.com>
  • Loading branch information
yigittekeler and Yigit TEKELER authored Nov 29, 2024
1 parent 232de35 commit 4e18b73
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/iyzipay/model/ThreedsInitialize.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public class ThreedsInitialize extends IyzipayResource implements ResponseSignat
private String htmlContent;
private String paymentId;
private String signature;
private String threeDsRedirectionUrl;

public boolean verifySignature(String secretKey) {
String calculated = generateSignature(secretKey,
Expand Down Expand Up @@ -60,4 +61,13 @@ public String getSignature() {
public void setSignature(String signature) {
this.signature = signature;
}

public String getThreeDsRedirectionUrl() {
return threeDsRedirectionUrl;
}

public void setThreeDsRedirectionUrl(String threeDsRedirectionUrl) {
this.threeDsRedirectionUrl = threeDsRedirectionUrl;
}

}

0 comments on commit 4e18b73

Please sign in to comment.