package fr.insa.soap.wsdltojava; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Clase Java para anonymous complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * &lt;complexType&gt; * &lt;complexContent&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;sequence&gt; * &lt;element name="NumberToDollarsResult" type="{http://www.w3.org/2001/XMLSchema}string"/&gt; * &lt;/sequence&gt; * &lt;/restriction&gt; * &lt;/complexContent&gt; * &lt;/complexType&gt; * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "numberToDollarsResult" }) @XmlRootElement(name = "NumberToDollarsResponse") public class NumberToDollarsResponse { @XmlElement(name = "NumberToDollarsResult", required = true) protected String numberToDollarsResult; /** * Obtiene el valor de la propiedad numberToDollarsResult. * * @return * possible object is * {@link String } * */ public String getNumberToDollarsResult() { return numberToDollarsResult; } /** * Define el valor de la propiedad numberToDollarsResult. * * @param value * allowed object is * {@link String } * */ public void setNumberToDollarsResult(String value) { this.numberToDollarsResult = value; } }