com.fincatto.documentofiscal.cte200.classes.cte.CTInfoAutorizadoXML Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal.cte200.classes.cte;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
import com.fincatto.documentofiscal.DFBase;
@Root(name = "autXML")
public class CTInfoAutorizadoXML extends DFBase {
private static final long serialVersionUID = 7510024008615524921L;
@Element(name = "CNPJ", required = false)
private String cnpj;
@Element(name = "CPF", required = false)
private String cpf;
public String getCnpj() {
return this.cnpj;
}
public void setCnpj(final String cnpj) {
this.cnpj = cnpj;
}
public String getCpf() {
return this.cpf;
}
public void setCpf(final String cpf) {
this.cpf = cpf;
}
}