service.sunat.gob.pe.billconsultservice.GetStatusCdr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sunat-web-services Show documentation
Show all versions of sunat-web-services Show documentation
Sunat Web Services Endpoints
package service.sunat.gob.pe.billconsultservice;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for getStatusCdr complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="getStatusCdr">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="rucComprobante" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="tipoComprobante" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="serieComprobante" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="numeroComprobante" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getStatusCdr", propOrder = {
"rucComprobante",
"tipoComprobante",
"serieComprobante",
"numeroComprobante"
})
public class GetStatusCdr {
protected String rucComprobante;
protected String tipoComprobante;
protected String serieComprobante;
protected Integer numeroComprobante;
/**
* Gets the value of the rucComprobante property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRucComprobante() {
return rucComprobante;
}
/**
* Sets the value of the rucComprobante property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRucComprobante(String value) {
this.rucComprobante = value;
}
/**
* Gets the value of the tipoComprobante property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTipoComprobante() {
return tipoComprobante;
}
/**
* Sets the value of the tipoComprobante property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTipoComprobante(String value) {
this.tipoComprobante = value;
}
/**
* Gets the value of the serieComprobante property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerieComprobante() {
return serieComprobante;
}
/**
* Sets the value of the serieComprobante property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerieComprobante(String value) {
this.serieComprobante = value;
}
/**
* Gets the value of the numeroComprobante property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumeroComprobante() {
return numeroComprobante;
}
/**
* Sets the value of the numeroComprobante property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumeroComprobante(Integer value) {
this.numeroComprobante = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy