br.com.moip.resource.Amount 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 Amount {
private Integer total;
public Integer getTotal() {
return total;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("Amount{");
sb.append("total=").append(total);
sb.append('}');
return sb.toString();
}
}