![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.nfe400.classes.evento.manifestacaodestinatario.NFProtocoloEventoManifestacaoDestinatario 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.nfe400.classes.evento.manifestacaodestinatario;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.nfe400.classes.evento.NFEventoRetorno;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
@Root(name = "procEventoNFe")
@Namespace(reference = "http://www.portalfiscal.inf.br/nfe")
public class NFProtocoloEventoManifestacaoDestinatario extends DFBase {
private static final long serialVersionUID = 8058424887014735846L;
@Attribute(name = "versao")
private String versao;
@Element(name = "evento")
private NFEventoManifestacaoDestinatario evento;
@Element(name = "retEvento")
private NFEventoRetorno eventoRetorno;
public NFEventoManifestacaoDestinatario getEvento() {
return this.evento;
}
public void setEvento(final NFEventoManifestacaoDestinatario evento) {
this.evento = evento;
}
public NFEventoRetorno getEventoRetorno() {
return this.eventoRetorno;
}
public void setEventoRetorno(final NFEventoRetorno infoEventoRetorno) {
this.eventoRetorno = infoEventoRetorno;
}
public String getVersao() {
return this.versao;
}
public void setVersao(final String versao) {
this.versao = versao;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy