com.fincatto.documentofiscal.cte200.classes.cte.CTInfoRecebedor 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 com.fincatto.documentofiscal.DFBase;
public class CTInfoRecebedor extends DFBase {
private static final long serialVersionUID = 6364028832707270314L;
@Element(name = "CNPJ", required = false)
private String cnpj;
@Element(name = "CPF", required = false)
private String cpf;
@Element(name = "IE", required = false)
private String inscricaoEstadual;
@Element(name = "xNome")
private String razaoSocial;
@Element(name = "fone", required = false)
private String telefone;
@Element(name = "enderReceb")
private CTInfoEndereco endereco;
@Element(name = "email", required = false)
private String email;
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;
}
public String getInscricaoEstadual() {
return this.inscricaoEstadual;
}
public void setInscricaoEstadual(final String inscricaoEstadual) {
this.inscricaoEstadual = inscricaoEstadual;
}
public String getRazaoSocial() {
return this.razaoSocial;
}
public void setRazaoSocial(final String razaoSocial) {
this.razaoSocial = razaoSocial;
}
public String getTelefone() {
return this.telefone;
}
public void setTelefone(final String telefone) {
this.telefone = telefone;
}
public CTInfoEndereco getEndereco() {
return this.endereco;
}
public void setEndereco(final CTInfoEndereco endereco) {
this.endereco = endereco;
}
public String getEmail() {
return this.email;
}
public void setEmail(final String email) {
this.email = email;
}
}