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

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

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource;

public class TaxDocument {

    private Type type;
    private String number;

    public Type getType() {
        return type;
    }

    public String getNumber() {
        return number;
    }

    @Override
    public String toString() {
        return "TaxDocument{" +
                "type='" + type + '\'' +
                ", number='" + number + '\'' +
                '}';
    }

    private enum Type {
        CPF, CNPJ
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy