package ec.gov.sri.wsconsultacontribuyente; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *
Clase Java para obtenerDatosResponse complex type. * *
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *
* <complexType name="obtenerDatosResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="return" type="{http://sri.gov.ec/wsConsultaContribuyente}contribuyenteOnLine" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "obtenerDatosResponse", propOrder = {
"_return"
})
public class ObtenerDatosResponse {
@XmlElement(name = "return")
protected ContribuyenteOnLine _return;
/**
* Obtiene el valor de la propiedad return.
*
* @return
* possible object is
* {@link ContribuyenteOnLine }
*
*/
public ContribuyenteOnLine getReturn() {
return _return;
}
/**
* Define el valor de la propiedad return.
*
* @param value
* allowed object is
* {@link ContribuyenteOnLine }
*
*/
public void setReturn(ContribuyenteOnLine value) {
this._return = value;
}
}