All Downloads are FREE. Search and download functionalities are using the official Maven repository.

service.sunat.gob.pe.billconsultservice.GetStatus Maven / Gradle / Ivy

There is a newer version: 1.3.4.Final
Show newest version

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 getStatus complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="getStatus">
 *   <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 = "getStatus", propOrder = { "rucComprobante", "tipoComprobante", "serieComprobante", "numeroComprobante" }) public class GetStatus { 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