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

Commit

Permalink
Release 6.24.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
IngenicoEPayments authored and jenkins committed Aug 3, 2021
1 parent 1396d2d commit ecd76a0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 35 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.23.0</version>
<version>6.24.0</version>
<packaging>jar</packaging>

<name>connect-sdk-java</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,67 +9,51 @@
*/
public class RedirectPaymentProduct4101SpecificInput {

private String integrationType = null;

private String merchantName = null;

private String transactionNote = null;
private String displayName = null;

private String vpa = null;
private String integrationType = null;

/**
* The value of this property must be either or 'vpa', 'QRCode', or 'urlIntent'.
*/
public String getIntegrationType() {
return integrationType;
}

/**
* The value of this property must be either or 'vpa', 'QRCode', or 'urlIntent'.
*/
public void setIntegrationType(String value) {
this.integrationType = value;
}
private String virtualPaymentAddress = null;

/**
* The merchant name as shown to the customer in some payment applications.
*/
public String getMerchantName() {
return merchantName;
public String getDisplayName() {
return displayName;
}

/**
* The merchant name as shown to the customer in some payment applications.
*/
public void setMerchantName(String value) {
this.merchantName = value;
public void setDisplayName(String value) {
this.displayName = value;
}

/**
* Some additional transaction information as shown to the customer in some payment applications.
* The value of this property must be either or 'vpa', 'QRCode', or 'urlIntent'.
*/
public String getTransactionNote() {
return transactionNote;
public String getIntegrationType() {
return integrationType;
}

/**
* Some additional transaction information as shown to the customer in some payment applications.
* The value of this property must be either or 'vpa', 'QRCode', or 'urlIntent'.
*/
public void setTransactionNote(String value) {
this.transactionNote = value;
public void setIntegrationType(String value) {
this.integrationType = value;
}

/**
* The Virtual Payment Address (VPA) of the customer.
*/
public String getVpa() {
return vpa;
public String getVirtualPaymentAddress() {
return virtualPaymentAddress;
}

/**
* The Virtual Payment Address (VPA) of the customer.
*/
public void setVpa(String value) {
this.vpa = value;
public void setVirtualPaymentAddress(String value) {
this.virtualPaymentAddress = value;
}
}
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.23.0";
private static final String SDK_VERSION = "6.24.0";

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

0 comments on commit ecd76a0

Please sign in to comment.