mx.bigdata.sat.cfdi.schema.TimbreFiscalDigital Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.03.13 at 09:36:11 AM MST
//
package mx.bigdata.sat.cfdi.schema;
import java.io.Serializable;
import java.util.Date;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" fixed="1.0" />
* <attribute name="UUID" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <whiteSpace value="collapse"/>
* <length value="36"/>
* <pattern value="[a-f0-9A-F]{8}-[a-f0-9A-F]{4}-[a-f0-9A-F]{4}-[a-f0-9A-F]{4}-[a-f0-9A-F]{12}"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="FechaTimbrado" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}dateTime">
* <whiteSpace value="collapse"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="selloCFD" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <whiteSpace value="collapse"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="noCertificadoSAT" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <whiteSpace value="collapse"/>
* <length value="20"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="selloSAT" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <whiteSpace value="collapse"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "TimbreFiscalDigital", namespace = "http://www.sat.gob.mx/TimbreFiscalDigital")
public class TimbreFiscalDigital
implements Serializable
{
private final static long serialVersionUID = -6026937020915831338L;
@XmlAttribute(required = true)
@XmlSchemaType(name = "anySimpleType")
protected String version;
@XmlAttribute(name = "UUID", required = true)
protected String uuid;
@XmlAttribute(name = "FechaTimbrado", required = true)
@XmlJavaTypeAdapter(Adapter1 .class)
protected Date fechaTimbrado;
@XmlAttribute(required = true)
protected String selloCFD;
@XmlAttribute(required = true)
protected String noCertificadoSAT;
@XmlAttribute(required = true)
protected String selloSAT;
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
if (version == null) {
return "1.0";
} else {
return version;
}
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
/**
* Gets the value of the uuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUUID() {
return uuid;
}
/**
* Sets the value of the uuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUUID(String value) {
this.uuid = value;
}
/**
* Gets the value of the fechaTimbrado property.
*
* @return
* possible object is
* {@link String }
*
*/
public Date getFechaTimbrado() {
return fechaTimbrado;
}
/**
* Sets the value of the fechaTimbrado property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFechaTimbrado(Date value) {
this.fechaTimbrado = value;
}
/**
* Gets the value of the selloCFD property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSelloCFD() {
return selloCFD;
}
/**
* Sets the value of the selloCFD property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSelloCFD(String value) {
this.selloCFD = value;
}
/**
* Gets the value of the noCertificadoSAT property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNoCertificadoSAT() {
return noCertificadoSAT;
}
/**
* Sets the value of the noCertificadoSAT property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNoCertificadoSAT(String value) {
this.noCertificadoSAT = value;
}
/**
* Gets the value of the selloSAT property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSelloSAT() {
return selloSAT;
}
/**
* Sets the value of the selloSAT property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSelloSAT(String value) {
this.selloSAT = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy