com.safecharge.model.FraudRule 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;
public class FraudRule {
private String ruleId;
private String ruleDescription;
public FraudRule() {
super();
}
public FraudRule(String ruleId, String ruleDescription) {
super();
this.ruleId = ruleId;
this.ruleDescription = ruleDescription;
}
public String getRuleId() {
return ruleId;
}
public String getRuleDescription() {
return ruleDescription;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
public void setRuleDescription(String ruleDescription) {
this.ruleDescription = ruleDescription;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("FraudRule [ruleId=");
builder.append(ruleId);
builder.append(", ruleDescription=");
builder.append(ruleDescription);
builder.append("]");
return builder.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy