br.com.moip.request.TaxDocumentRequest 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 TaxDocumentRequest {
private Type type;
private String number;
private TaxDocumentRequest() {
}
public Type getType() {
return type;
}
private TaxDocumentRequest type(final Type type) {
this.type = type;
return this;
}
public String getNumber() {
return number;
}
public TaxDocumentRequest number(final String number) {
this.number = number;
return this;
}
public static TaxDocumentRequest cpf(final String number) {
return new TaxDocumentRequest()
.type(Type.CPF)
.number(number);
}
public static TaxDocumentRequest cnpj(final String number) {
return new TaxDocumentRequest()
.type(Type.CNPJ)
.number(number);
}
@Override
public String toString() {
return "TaxDocument{" +
"type='" + type + '\'' +
", number='" + number + '\'' +
'}';
}
private enum Type {
CPF, CNPJ
}
}