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

br.com.moip.resource.invoice.Summary Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource.invoice;

public class Summary {

    private int count;
    private long amount;

    public int getCount() {
        return count;
    }

    public long getAmount() {
        return amount;
    }

    @Override
    public String toString() {
        return new StringBuilder("Summary{")
                .append("count=").append(count)
                .append(", amount=").append(amount)
                .append('}').toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy