![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.cte400.classes.nota.CTeNotaInfoDadosComplementaresEntregaSemDataDefinida 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.nota;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte400.classes.CTTipoPrazoDataEntrega;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
/**
* Entrega sem data definida
* Esta opção é proibida para o modal aéreo.
*/
@Root(name = "semData")
public class CTeNotaInfoDadosComplementaresEntregaSemDataDefinida extends DFBase {
private static final long serialVersionUID = 1360672619291000662L;
@Element(name = "tpPer")
private CTTipoPrazoDataEntrega tipoPrazoDataEntrega;
public CTTipoPrazoDataEntrega getTipoPrazoDataEntrega() {
return this.tipoPrazoDataEntrega;
}
/**
* Tipo de data/período programado para entrega
* 0 - Sem data definida
*/
public void setTipoPrazoDataEntrega(final CTTipoPrazoDataEntrega tipoPrazoDataEntrega) {
this.tipoPrazoDataEntrega = tipoPrazoDataEntrega;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy