Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Release 6.36.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
IngenicoEPayments committed Mar 9, 2023
1 parent 5cde090 commit 083add3
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.ingenico.connect.gateway</groupId>
<artifactId>connect-sdk-java</artifactId>
<version>6.35.0</version>
<version>6.36.0</version>
<packaging>jar</packaging>

<name>connect-sdk-java</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public class PaymentStatusOutput extends OrderStatusOutput {

private Boolean isRefundable = null;

private Boolean isRetriable = null;

private String threeDSecureStatus = null;

/**
Expand Down Expand Up @@ -54,6 +56,26 @@ public void setIsRefundable(Boolean value) {
this.isRefundable = value;
}

/**
* Flag indicating whether a rejected payment may be retried by the merchant without incurring a fee
* <ul class="paragraph-width"><li>true
* <li>false
* </ul>
*/
public Boolean getIsRetriable() {
return isRetriable;
}

/**
* Flag indicating whether a rejected payment may be retried by the merchant without incurring a fee
* <ul class="paragraph-width"><li>true
* <li>false
* </ul>
*/
public void setIsRetriable(Boolean value) {
this.isRetriable = value;
}

/**
* The 3D Secure status, with the following possible values:
* <ul class="paragraph-width"><li>ENROLLED: the card is enrolled for 3D Secure authentication. The customer can be redirected to a 3D Secure access control server (ACS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
public class MetaDataProvider {

private static final String SDK_VERSION = "6.35.0";
private static final String SDK_VERSION = "6.36.0";

private static final String SERVER_META_INFO_HEADER = "X-GCS-ServerMetaInfo";
static final Set<String> PROHIBITED_HEADERS;
Expand Down

0 comments on commit 083add3

Please sign in to comment.