br.com.moip.resource.Fees 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.resource;
public class Fees {
private int amount;
private String type;
public int getAmount() { return amount; }
public String getType() { return type; }
@Override
public String toString() {
return new StringBuilder("Fees{")
.append("amount=").append(amount)
.append(", type").append(type)
.append('}').toString();
}
}