br.com.moip.resource.TaxDocument 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 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 + '\'' +
'}';
}
public enum Type {
CPF, CNPJ
}
}