![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.cte200.classes.cte.CTInfoObservacaoFisco 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 org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
import com.fincatto.documentofiscal.DFBase;
@Root(name = "ObsFisco")
public class CTInfoObservacaoFisco extends DFBase {
private static final long serialVersionUID = -1816423666185748482L;
@Attribute(name = "xCampo")
private String identificador;
@Element(name = "xTexto")
private String conteudo;
public String getIdentificador() {
return this.identificador;
}
public void setIdentificador(final String identificador) {
this.identificador = identificador;
}
public String getConteudo() {
return this.conteudo;
}
public void setConteudo(final String conteudo) {
this.conteudo = conteudo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy