service.sunat.gob.pe.billvalidservice.VerificaCPEarchivo 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.billvalidservice;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for verificaCPEarchivo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="verificaCPEarchivo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="archivo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "verificaCPEarchivo", propOrder = {
"nombre",
"archivo"
})
public class VerificaCPEarchivo {
protected String nombre;
protected String archivo;
/**
* Gets the value of the nombre property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNombre() {
return nombre;
}
/**
* Sets the value of the nombre property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNombre(String value) {
this.nombre = value;
}
/**
* Gets the value of the archivo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArchivo() {
return archivo;
}
/**
* Sets the value of the archivo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArchivo(String value) {
this.archivo = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy