![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.cte400.classes.os.CTeOSInfoCTeNormal 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.cte400.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 = "infCTeNorm")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeOSInfoCTeNormal extends DFBase {
private static final long serialVersionUID = -2211331295487410228L;
@Element(name = "infServico")
private CTeOSInfoCTeNormalInfoServico infoCarga;
@ElementList(name = "infDocRef", inline = true, required = false)
private List infoDocumentos;
@ElementList(name = "seg", inline = true, required = false)
private List seguros;
@Element(name = "infModal")
private CTeOSInfoCTeNormalInfoModal infoModal;
@Element(name = "infCteSub", required = false)
private CTeOSInfoCTeNormalInfoCTeSubstituicao infoCTeSubstituicao;
@Element(name = "cobr", required = false)
private CTeOSInfoCTeNormalInfoCobranca cobranca;
@ElementList(name = "infGTVe", inline = true, required = false)
private List infoGTVe;
public CTeOSInfoCTeNormalInfoServico getInfoCarga() {
return infoCarga;
}
public void setInfoCarga(final CTeOSInfoCTeNormalInfoServico infoCarga) {
this.infoCarga = infoCarga;
}
public List getInfoDocumentos() {
return infoDocumentos;
}
public void setInfoDocumentos(List infoDocumentos) {
this.infoDocumentos = infoDocumentos;
}
public List getSeguros() {
return seguros;
}
public void setSeguros(List seguros) {
this.seguros = seguros;
}
public CTeOSInfoCTeNormalInfoModal getInfoModal() {
return infoModal;
}
public void setInfoModal(final CTeOSInfoCTeNormalInfoModal infoModal) {
this.infoModal = infoModal;
}
public CTeOSInfoCTeNormalInfoCTeSubstituicao getInfoCTeSubstituicao() {
return infoCTeSubstituicao;
}
public void setInfoCTeSubstituicao(final CTeOSInfoCTeNormalInfoCTeSubstituicao infoCTeSubstituicao) {
this.infoCTeSubstituicao = infoCTeSubstituicao;
}
public CTeOSInfoCTeNormalInfoCobranca getCobranca() {
return cobranca;
}
public void setCobranca(final CTeOSInfoCTeNormalInfoCobranca cobranca) {
this.cobranca = cobranca;
}
public List getInfoGTVe() {
return infoGTVe;
}
public void setInfoGTVe(final List infoGTVe) {
this.infoGTVe = infoGTVe;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy