63 lines
1.5 KiB
Plaintext
Executable File
63 lines
1.5 KiB
Plaintext
Executable File
|
|
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;
|
|
|
|
|
|
/**
|
|
* <p>Clase Java para obtenerDatosResponse complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <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" form="qualified"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@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;
|
|
}
|
|
|
|
}
|