![JAR search and dependency download from the Maven repository](/logo.png)
com.fincatto.documentofiscal.cte300.classes.enviolote.CTeEnvioLoteRetornoInfoRecebimento 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.cte300.classes.enviolote;
import java.math.BigInteger;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import com.fincatto.documentofiscal.DFBase;
/**
* @author Caio
* @info Dados do Recibo do Lote
*/
@Root(name = "infRec")
@Namespace(reference = "http://www.portalfiscal.inf.br/cte")
public class CTeEnvioLoteRetornoInfoRecebimento extends DFBase {
private static final long serialVersionUID = -6279314138403086188L;
@Element(name = "nRec", required = false)
private String numeroRecibo;
@Element(name = "dhRecbto", required = false)
private String dataRecibo;
@Element(name = "tMed", required = false)
private BigInteger tempoMedio;
public CTeEnvioLoteRetornoInfoRecebimento() {
this.numeroRecibo = null;
this.dataRecibo = null;
this.tempoMedio = null;
}
public String getNumeroRecibo() {
return this.numeroRecibo;
}
/**
* Número do Recibo
*/
public void setNumeroRecibo(final String numeroRecibo) {
this.numeroRecibo = numeroRecibo;
}
public String getDataRecibo() {
return this.dataRecibo;
}
/**
* Data e hora do recebimento, no formato AAAA-MM-DDTHH:MM:SS TZD
*/
public void setDataRecibo(final String dataRecibo) {
this.dataRecibo = dataRecibo;
}
public BigInteger getTempoMedio() {
return this.tempoMedio;
}
/**
* Tempo médio de resposta do serviço (em segundos) dos últimos 5 minutos
*/
public void setTempoMedio(final BigInteger tempoMedio) {
this.tempoMedio = tempoMedio;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy