com.fincatto.documentofiscal.cte200.classes.cte.CTInfoCobranca 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.cte200.classes.cte;
import java.util.List;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;
import com.fincatto.documentofiscal.DFBase;
public class CTInfoCobranca extends DFBase {
private static final long serialVersionUID = 700731826125271744L;
@Element(name = "fat", required = false)
private CTInfoCobrancaFatura fatura;
@ElementList(name = "dup", inline = true, required = false)
private List duplicatas;
public CTInfoCobrancaFatura getFatura() {
return this.fatura;
}
public void setFatura(final CTInfoCobrancaFatura fatura) {
this.fatura = fatura;
}
public List getDuplicatas() {
return this.duplicatas;
}
public void setDuplicatas(final List duplicatas) {
this.duplicatas = duplicatas;
}
}