br.com.anteros.payment.api.braspag.domain.antifraud.MerchantDefinedField 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.antifraud;
import com.fasterxml.jackson.annotation.JsonProperty;
public class MerchantDefinedField {
@JsonProperty("Id")
private int id ;
@JsonProperty("Value")
private String value ;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy