com.safecharge.response.Verify3dResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of safecharge-sdk-java Show documentation
Show all versions of safecharge-sdk-java Show documentation
SafeCharge’s REST API SDK for Java provides developer tools for accessing Safecharge's REST API. SafeCharge’s REST API is a simple,
easy to use, secure and stateless API, which enables online merchants and service providers to process consumer payments through SafeCharge’s
payment gateway. The API supports merchants of all levels of PCI certification, from their online and mobile merchant applications, and is
compatible with a large variety of payment options, i.e. payment cards, alternative payment methods, etc.
package com.safecharge.response;
import com.safecharge.model.MerchantDetails;
import com.safecharge.model.PaymentOptionResponse;
public class Verify3dResponse extends SafechargeResponse {
private String orderId;
private String userTokenId;
private String transactionStatus;
private String transactionType;
private String transactionId;
private String customData;
private MerchantDetails merchantDetails;
private PaymentOptionResponse paymentOption;
private Integer gwErrorCode;
private String gwErrorReason;
private Integer gwExtendedErrorCode;
public String getOrderId() {
return orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getUserTokenId() {
return userTokenId;
}
public void setUserTokenId(String userTokenId) {
this.userTokenId = userTokenId;
}
public String getTransactionStatus() {
return transactionStatus;
}
public void setTransactionStatus(String transactionStatus) {
this.transactionStatus = transactionStatus;
}
public String getTransactionType() {
return transactionType;
}
public void setTransactionType(String transactionType) {
this.transactionType = transactionType;
}
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getCustomData() {
return customData;
}
public void setCustomData(String customData) {
this.customData = customData;
}
public MerchantDetails getMerchantDetails() {
return merchantDetails;
}
public void setMerchantDetails(MerchantDetails merchantDetails) {
this.merchantDetails = merchantDetails;
}
public PaymentOptionResponse getPaymentOption() {
return paymentOption;
}
public void setPaymentOption(PaymentOptionResponse paymentOption) {
this.paymentOption = paymentOption;
}
public Integer getGwErrorCode() {
return gwErrorCode;
}
public void setGwErrorCode(Integer gwErrorCode) {
this.gwErrorCode = gwErrorCode;
}
public String getGwErrorReason() {
return gwErrorReason;
}
public void setGwErrorReason(String gwErrorReason) {
this.gwErrorReason = gwErrorReason;
}
public Integer getGwExtendedErrorCode() {
return gwExtendedErrorCode;
}
public void setGwExtendedErrorCode(Integer gwExtendedErrorCode) {
this.gwExtendedErrorCode = gwExtendedErrorCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy