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 representanteLegal complex type. * *
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *
* <complexType name="representanteLegal">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="cargo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="identificacion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "representanteLegal", propOrder = {
"cargo",
"identificacion",
"nombre"
})
public class RepresentanteLegal {
protected String cargo;
protected String identificacion;
protected String nombre;
/**
* Obtiene el valor de la propiedad cargo.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCargo() {
return cargo;
}
/**
* Define el valor de la propiedad cargo.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCargo(String value) {
this.cargo = value;
}
/**
* Obtiene el valor de la propiedad identificacion.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdentificacion() {
return identificacion;
}
/**
* Define el valor de la propiedad identificacion.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdentificacion(String value) {
this.identificacion = value;
}
/**
* Obtiene el valor de la propiedad nombre.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNombre() {
return nombre;
}
/**
* Define el valor de la propiedad nombre.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNombre(String value) {
this.nombre = value;
}
}