com.fincatto.documentofiscal.mdfe3.classes.consultaRecibo.MDFeConsultaRecibo 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.mdfe3.classes.consultaRecibo;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import com.fincatto.documentofiscal.DFAmbiente;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFStringValidador;
/**
* Created by Eldevan Nery Junior on 30/11/17. Pedido de Consulta do Recibo do MDF-e.
*/
@Root(name = "consReciMDFe")
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
public class MDFeConsultaRecibo extends DFBase {
private static final long serialVersionUID = 6718245060599595093L;
@Element(name = "tpAmb", required = false)
private DFAmbiente ambiente;
/**
* Número do Recibo do envio de lote de MDF-e.
*/
@Element(name = "nRec", required = false)
private String numeroRecibo;
@Attribute(name = "versao", required = false)
private String versao;
public DFAmbiente getAmbiente() {
return this.ambiente;
}
public void setAmbiente(final DFAmbiente ambiente) {
this.ambiente = ambiente;
}
public String getNumeroRecibo() {
return this.numeroRecibo;
}
public void setNumeroRecibo(final String numeroRecibo) {
this.numeroRecibo = DFStringValidador.validaIntervalo(numeroRecibo, 0, 15, "Numero Recibo Lote MDFe", true);
}
public String getVersao() {
return this.versao;
}
public void setVersao(final String versao) {
this.versao = versao;
}
}