com.fincatto.documentofiscal.mdfe3.classes.nota.evento.MDFeEventoRetorno 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 com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.nfe310.classes.nota.assinatura.NFSignature;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import java.math.BigDecimal;
public class MDFeEventoRetorno extends DFBase {
private static final long serialVersionUID = 8963520421150918484L;
@Attribute(name = "versao")
private String versao;
@Element(name = "infEvento")
private MDFeInfoEventoRetorno infoEventoRetorno;
@Element(name = "Signature", required = false)
private NFSignature assinatura;
public String getVersao() {
return this.versao;
}
public void setVersao(final BigDecimal versao) {
this.versao = DFBigDecimalValidador.tamanho4Com2CasasDecimais(versao, "Versao");
}
public MDFeInfoEventoRetorno getInfoEventoRetorno() {
return this.infoEventoRetorno;
}
public void setInfoEventoRetorno(final MDFeInfoEventoRetorno infoEventoRetorno) {
this.infoEventoRetorno = infoEventoRetorno;
}
public NFSignature getAssinatura() {
return this.assinatura;
}
public void setAssinatura(final NFSignature assinatura) {
this.assinatura = assinatura;
}
}