com.fincatto.documentofiscal.mdfe3.classes.nota.evento.MDFeEnviaEventoRegistroPassagemAutomatica 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.mdfe3.classes.nota.evento;
import org.simpleframework.xml.Element;
import com.fincatto.documentofiscal.DFBase;
/**
* Created by Eldevan Nery Junior on 17/11/17.
*/
public class MDFeEnviaEventoRegistroPassagemAutomatica extends DFBase {
private static final long serialVersionUID = 1116018734443127135L;
@Element(name = "descEvento")
private String descricaoEvento;
@Element(name = "tpTransm")
private String tpTransm;
@Element(name = "infPass")
private MDFeEnviaEventoRegistroPassagemAutomaticaInfPass infPass;
public String getDescricaoEvento() {
return this.descricaoEvento;
}
public void setDescricaoEvento(final String descricaoEvento) {
this.descricaoEvento = descricaoEvento;
}
public String getTpTransm() {
return this.tpTransm;
}
public void setTpTransm(final String tpTransm) {
this.tpTransm = tpTransm;
}
public MDFeEnviaEventoRegistroPassagemAutomaticaInfPass getInfPass() {
return this.infPass;
}
public void setInfPass(final MDFeEnviaEventoRegistroPassagemAutomaticaInfPass infPass) {
this.infPass = infPass;
}
}