com.fincatto.documentofiscal.nfe310.classes.statusservico.consulta.NFStatusServicoConsultaRetorno 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.nfe310.classes.statusservico.consulta;
import com.fincatto.documentofiscal.DFAmbiente;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.DFUnidadeFederativa;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import java.time.LocalDateTime;
@Root(name = "retConsStatServ")
@Namespace(reference = "http://www.portalfiscal.inf.br/nfe")
public class NFStatusServicoConsultaRetorno extends DFBase {
private static final long serialVersionUID = -5022679215397514727L;
@Attribute(name = "versao")
private String versao;
@Element(name = "tpAmb")
private DFAmbiente ambiente;
@Element(name = "verAplic")
private String versaoAplicacao;
@Element(name = "cStat")
private String status;
@Element(name = "xMotivo")
private String motivo;
@Element(name = "cUF")
private DFUnidadeFederativa uf;
@Element(name = "dhRecbto")
private LocalDateTime dataRecebimento;
@Element(name = "dhRetorno", required = false)
private LocalDateTime dataRetorno;
@Element(name = "xObs", required = false)
private String observacao;
@Element(name = "tMed", required = false)
private String tempoMedio;
public NFStatusServicoConsultaRetorno() {
this.versao = null;
this.ambiente = null;
this.versaoAplicacao = null;
this.status = null;
this.motivo = null;
this.uf = null;
this.dataRecebimento = null;
this.dataRetorno = null;
this.observacao = null;
this.tempoMedio = null;
}
public String getVersao() {
return this.versao;
}
public void setVersao(final String versao) {
this.versao = versao;
}
public DFAmbiente getAmbiente() {
return this.ambiente;
}
public void setAmbiente(final DFAmbiente ambiente) {
this.ambiente = ambiente;
}
public String getVersaoAplicacao() {
return this.versaoAplicacao;
}
public void setVersaoAplicacao(final String versaoAplicacao) {
this.versaoAplicacao = versaoAplicacao;
}
public String getStatus() {
return this.status;
}
public void setStatus(final String status) {
this.status = status;
}
public String getMotivo() {
return this.motivo;
}
public void setMotivo(final String motivo) {
this.motivo = motivo;
}
public DFUnidadeFederativa getUf() {
return this.uf;
}
public void setUf(final DFUnidadeFederativa uf) {
this.uf = uf;
}
public LocalDateTime getDataRecebimento() {
return this.dataRecebimento;
}
public void setDataRecebimento(final LocalDateTime dataRecebimento) {
this.dataRecebimento = dataRecebimento;
}
public LocalDateTime getDataRetorno() {
return this.dataRetorno;
}
public void setDataRetorno(final LocalDateTime dataRetorno) {
this.dataRetorno = dataRetorno;
}
public String getObservacao() {
return this.observacao;
}
public void setObservacao(final String observacao) {
this.observacao = observacao;
}
public String getTempoMedio() {
return this.tempoMedio;
}
public void setTempoMedio(final String tempoMedio) {
this.tempoMedio = tempoMedio;
}
}