com.safecharge.model.Card 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.model;
import javax.validation.constraints.Size;
public class Card extends CardData {
private ExternalToken externalToken;
private StoredCredentials storedCredentials;
@Size(max = 2, message = "acquirerId size must be up to 2 characters long!")
private String acquirerId;
private ThreeD threeD;
public ExternalToken getExternalToken() {
return externalToken;
}
public void setExternalToken(ExternalToken externalToken) {
this.externalToken = externalToken;
}
public StoredCredentials getStoredCredentials() {
return storedCredentials;
}
public void setStoredCredentials(StoredCredentials storedCredentials) {
this.storedCredentials = storedCredentials;
}
public String getAcquirerId() {
return acquirerId;
}
public void setAcquirerId(String acquirerId) {
this.acquirerId = acquirerId;
}
public ThreeD getThreeD() {
return threeD;
}
public void setThreeD(ThreeD threeD) {
this.threeD = threeD;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy