br.com.moip.resource.Installment 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;
import java.util.Arrays;
public class Installment {
private int[] quantity;
public int[] getQuantity() {
return quantity;
}
@Override
public String toString() {
return "Installment{" +
"quantity=" + Arrays.toString(quantity) +
'}';
}
public Installment setQuantity(int[] quantity) {
this.quantity = quantity;
return this;
}
}