br.com.moip.request.AmountRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Moip v2 APIs
package br.com.moip.request;
public class AmountRequest {
private Integer fixed;
private Integer percentual;
public AmountRequest fixed(final Integer value) {
this.fixed = value;
return this;
}
public AmountRequest percentual(final Integer value) {
this.percentual = value;
return this;
}
public Integer getValue() {
return fixed != null ? fixed : percentual;
}
}