![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.cte400.classes.os.CTeOSInfoCTeNormalInfoModal 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.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
@Root(name = "infModal")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeOSInfoCTeNormalInfoModal extends DFBase {
private static final long serialVersionUID = 8987158163135069115L;
@Element(name = "rodoOS", required = false)
private CTeOSInfoCTeNormalInfoModalRodoviario rodoviario;
@Attribute(name = "versaoModal")
private String versao;
public CTeOSInfoCTeNormalInfoModalRodoviario getRodoviario() {
return this.rodoviario;
}
public void setRodoviario(final CTeOSInfoCTeNormalInfoModalRodoviario rodoviario) {
this.rodoviario = rodoviario;
}
public String getVersao() {
return this.versao;
}
/**
* Versão do leiaute específico para o Modal
*/
public void setVersao(final String versaoModal) {
this.versao = versaoModal;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy