br.com.anteros.payment.api.braspag.domain.Fares 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 Fares {
@JsonProperty("Fee")
private Long fee;
@JsonProperty("Mdr")
private Long mdr;
public Long getFee() {
return fee;
}
public void setFee(Long fee) {
this.fee = fee;
}
public Long getMdr() {
return mdr;
}
public void setMdr(Long mdr) {
this.mdr = mdr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy