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

br.com.moip.resource.Installment Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy