package ec.gov.sri.wsconsultacontribuyente; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *

Clase Java para obtenerCompleto complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="obtenerCompleto">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="numeroRuc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fuenteDatos" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "obtenerCompleto", propOrder = { "numeroRuc", "fuenteDatos" }) public class ObtenerCompleto { protected String numeroRuc; protected String fuenteDatos; /** * Obtiene el valor de la propiedad numeroRuc. * * @return * possible object is * {@link String } * */ public String getNumeroRuc() { return numeroRuc; } /** * Define el valor de la propiedad numeroRuc. * * @param value * allowed object is * {@link String } * */ public void setNumeroRuc(String value) { this.numeroRuc = value; } /** * Obtiene el valor de la propiedad fuenteDatos. * * @return * possible object is * {@link String } * */ public String getFuenteDatos() { return fuenteDatos; } /** * Define el valor de la propiedad fuenteDatos. * * @param value * allowed object is * {@link String } * */ public void setFuenteDatos(String value) { this.fuenteDatos = value; } }