br.com.moip.request.OrderAmountRequest 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 OrderAmountRequest {
private String currency;
private SubtotalsRequest subtotals;
public String getCurrency() {
return currency;
}
public OrderAmountRequest currency(String currency) {
this.currency = currency;
return this;
}
public SubtotalsRequest getSubtotals() {
return subtotals;
}
public OrderAmountRequest subtotals(SubtotalsRequest subtotals) {
this.subtotals = subtotals;
return this;
}
@Override
public String toString() {
return new StringBuilder("OrderAmountRequest{")
.append(", currency=").append(currency)
.append(", subtotals=").append(subtotals)
.append('}').toString();
}
}