com.fincatto.documentofiscal.cte400.classes.consultastatusservico.CTeConsStatServ 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.cte400.classes.consultastatusservico;
import com.fincatto.documentofiscal.DFAmbiente;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte.CTeConfig;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
@Root(name = "consStatServCTe")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeConsStatServ extends DFBase {
private static final long serialVersionUID = 3473836544443619832L;
@Element(name = "tpAmb")
private DFAmbiente ambiente;
@Element(name = "cUF")
private String uf;
@Element(name = "xServ")
private String servico;
@Attribute(name = "versao")
private String versao;
public DFAmbiente getAmbiente() {
return this.ambiente;
}
public void setAmbiente(final DFAmbiente ambiente) {
this.ambiente = ambiente;
}
public String getUf() {
return uf;
}
public void setUf(String uf) {
this.uf = uf;
}
public String getServico() {
return this.servico;
}
public void setServico(final String servico) {
this.servico = servico;
}
public String getVersao() {
return this.versao;
}
public void setVersao(final String versao) {
this.versao = versao;
}
}