com.fincatto.documentofiscal.cte300.classes.os.CTeOSInfoCTeNormalInfoCobranca 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.cte300.classes.os;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte.CTeConfig;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import java.util.List;
@Root(name = "cobr")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeOSInfoCTeNormalInfoCobranca extends DFBase {
private static final long serialVersionUID = 512711961726591339L;
@Element(name = "fat", required = false)
private CTeOSInfoCTeNormalInfoCobrancaFatura fatura;
@ElementList(name = "dup", inline = true, required = false)
private List duplicatas;
public CTeOSInfoCTeNormalInfoCobrancaFatura getFatura() {
return fatura;
}
public void setFatura(final CTeOSInfoCTeNormalInfoCobrancaFatura fatura) {
this.fatura = fatura;
}
public List getDuplicatas() {
return duplicatas;
}
public void setDuplicatas(List duplicatas) {
this.duplicatas = duplicatas;
}
}