package com.titanic.ventapasajes.ws; 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>Java class for ResultIdentidad complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ResultIdentidad"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Return" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * <element name="Errores" type="{http://wshr.mtc.gob.pe/}Errores" minOccurs="0"/> * <element name="NroDoc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Paterno" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Materno" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResultIdentidad", propOrder = { "_return", "errores", "nroDoc", "nombre", "paterno", "materno" }) public class ResultIdentidad { @XmlElement(name = "Return") protected boolean _return; @XmlElement(name = "Errores") protected Errores errores; @XmlElement(name = "NroDoc") protected String nroDoc; @XmlElement(name = "Nombre") protected String nombre; @XmlElement(name = "Paterno") protected String paterno; @XmlElement(name = "Materno") protected String materno; /** * Gets the value of the return property. * */ public boolean isReturn() { return _return; } /** * Sets the value of the return property. * */ public void setReturn(boolean value) { this._return = value; } /** * Gets the value of the errores property. * * @return * possible object is * {@link Errores } * */ public Errores getErrores() { return errores; } /** * Sets the value of the errores property. * * @param value * allowed object is * {@link Errores } * */ public void setErrores(Errores value) { this.errores = value; } /** * Gets the value of the nroDoc property. * * @return * possible object is * {@link String } * */ public String getNroDoc() { return nroDoc; } /** * Sets the value of the nroDoc property. * * @param value * allowed object is * {@link String } * */ public void setNroDoc(String value) { this.nroDoc = value; } /** * Gets the value of the nombre property. * * @return * possible object is * {@link String } * */ public String getNombre() { return nombre; } /** * Sets the value of the nombre property. * * @param value * allowed object is * {@link String } * */ public void setNombre(String value) { this.nombre = value; } /** * Gets the value of the paterno property. * * @return * possible object is * {@link String } * */ public String getPaterno() { return paterno; } /** * Sets the value of the paterno property. * * @param value * allowed object is * {@link String } * */ public void setPaterno(String value) { this.paterno = value; } /** * Gets the value of the materno property. * * @return * possible object is * {@link String } * */ public String getMaterno() { return materno; } /** * Sets the value of the materno property. * * @param value * allowed object is * {@link String } * */ public void setMaterno(String value) { this.materno = value; } }