63 lines
1.6 KiB
Plaintext
Executable File
63 lines
1.6 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 obtenerCompletoResponse complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <complexType name="obtenerCompletoResponse">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="return" type="{http://sri.gov.ec/wsConsultaContribuyente}contribuyenteCompleto" minOccurs="0" form="qualified"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "obtenerCompletoResponse", propOrder = {
|
|
"_return"
|
|
})
|
|
public class ObtenerCompletoResponse {
|
|
|
|
@XmlElement(name = "return")
|
|
protected ContribuyenteCompleto _return;
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad return.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link ContribuyenteCompleto }
|
|
*
|
|
*/
|
|
public ContribuyenteCompleto getReturn() {
|
|
return _return;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad return.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link ContribuyenteCompleto }
|
|
*
|
|
*/
|
|
public void setReturn(ContribuyenteCompleto value) {
|
|
this._return = value;
|
|
}
|
|
|
|
}
|