com.fincatto.documentofiscal.cte400.classes.evento.insucessoentrega.CTeInformacaoInsucessoEntrega 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.evento.insucessoentrega;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.cte.CTeConfig;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
@Root(name = "infEntrega")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeInformacaoInsucessoEntrega extends DFBase {
private static final long serialVersionUID = 7255162350594909010L;
@Element(name = "chNFe")
private String chaveNFe;
public String getChaveNFe() {
return chaveNFe;
}
public void setChaveNFe(String chaveNFe) {
DFStringValidador.exatamente44N(chaveNFe, "Chave de Acesso");
this.chaveNFe = chaveNFe;
}
}