br.com.anteros.payment.api.braspag.domain.ExternalAuthentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Payment-Api Show documentation
Show all versions of Anteros-Payment-Api Show documentation
Anteros Payment Integration Api for Java.
The newest version!
package br.com.anteros.payment.api.braspag.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ExternalAuthentication {
@JsonProperty("Cavv")
private String cavv;
@JsonProperty("Xi")
private String xi;
@JsonProperty("Eci")
private String eci;
public String getCavv() {
return cavv;
}
public void setCavv(String cavv) {
this.cavv = cavv;
}
public String getXi() {
return xi;
}
public void setXi(String xi) {
this.xi = xi;
}
public String getEci() {
return eci;
}
public void setEci(String eci) {
this.eci = eci;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy