All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.moip.request.AmountRequest Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
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;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy