com.fincatto.documentofiscal.cte400.classes.os.CTeOSInfoSuplementares 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.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
@Root(name = "infCTeSupl")
@Namespace(reference = CTeConfig.NAMESPACE)
public class CTeOSInfoSuplementares extends DFBase {
private static final long serialVersionUID = 5643192963806193737L;
@Element(name = "qrCodCTe")
private String qrCode;
public String getQrCode() {
return qrCode;
}
public CTeOSInfoSuplementares setQrCode(String qrCode) {
this.qrCode = qrCode;
return this;
}
}