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