package com.fp.frontend.webservices.snap.ruc; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *
Clase Java para consultarRuc complex type. * *
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *
* <complexType name="consultarRuc">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ruc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "consultarRuc", propOrder = {
"ruc"
})
public class ConsultarRuc {
protected String ruc;
/**
* Obtiene el valor de la propiedad ruc.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRuc() {
return ruc;
}
/**
* Define el valor de la propiedad ruc.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRuc(String value) {
this.ruc = value;
}
}