![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.nfe310.classes.nota.NFNotaInfoCobranca 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.nota;
import java.util.List;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFListValidador;
public class NFNotaInfoCobranca extends DFBase {
private static final long serialVersionUID = -2471735975201108151L;
@Element(name = "fat", required = false)
private NFNotaInfoFatura fatura;
@ElementList(entry = "dup", inline = true, required = false)
private List duplicatas;
public void setFatura(final NFNotaInfoFatura fatura) {
this.fatura = fatura;
}
public void setDuplicatas(final List duplicatas) {
DFListValidador.tamanho120(duplicatas, "Duplicatas");
this.duplicatas = duplicatas;
}
public NFNotaInfoFatura getFatura() {
return this.fatura;
}
public List getDuplicatas() {
return this.duplicatas;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy