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 ResultManifiesto complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ResultManifiesto"> * <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="Code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResultManifiesto", propOrder = { "_return", "errores", "code" }) public class ResultManifiesto { @XmlElement(name = "Return") protected boolean _return; @XmlElement(name = "Errores") protected Errores errores; @XmlElement(name = "Code") protected String code; /** * 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 code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } }