com.fincatto.documentofiscal.cte200.classes.cte.CTInfoObservacaoContribuinte 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 = "ObsCont")
public class CTInfoObservacaoContribuinte extends DFBase {
private static final long serialVersionUID = 4590687379510866778L;
@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;
}
}