![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.nfe400.classes.nota.NFInformacaoImpostoDevolvido 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.nota;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import org.simpleframework.xml.Element;
import java.math.BigDecimal;
public class NFInformacaoImpostoDevolvido extends DFBase {
private static final long serialVersionUID = 4422209113713178240L;
@Element(name = "vIPIDevol")
private String valorIPIDevolvido;
public String getValorIPIDevolvido() {
return this.valorIPIDevolvido;
}
public void setValorIPIDevolvido(final BigDecimal valorIPIDevolvido) {
this.valorIPIDevolvido = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorIPIDevolvido, "Valor IPI Devolvido");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy