mx.emite.sdk.proxy.response.extra.InfoCfdi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ef-sdk-java Show documentation
Show all versions of ef-sdk-java Show documentation
Este kit de consumo provee a los integradores de Apis de Java para construir software que consuma los diferentes servicios web publicados por Emite Facturacion
package mx.emite.sdk.proxy.response.extra;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import lombok.Data;
import mx.emite.sdk.utils.FechaHoraDeserializer;
/**
* InfoCfdi
* Objeto que contiene los principales atributos del Cfdi timbrado
*
* @author Enrique Sánchez de la Barquera
*
*/
@Data
public class InfoCfdi{
private String serie;
private Integer folio;
@JsonDeserialize(using=FechaHoraDeserializer.class)
private LocalDateTime fecha;
private String moneda;
private String tc;
private String nocertificado;
private BigDecimal total;
private String tipo;
private String version;
private String emisor;
private String receptor;
private String uuid;
private String selloCFD;
@JsonDeserialize(using=FechaHoraDeserializer.class)
private LocalDateTime fechaTimbrado;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy