
com.ecs.client.jax.CorrectedQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paapi-client Show documentation
Show all versions of paapi-client Show documentation
Java library for Amazon's Product Advertising API
The newest version!
package com.ecs.client.jax;
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;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Keywords" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"keywords",
"message"
})
@XmlRootElement(name = "CorrectedQuery")
public class CorrectedQuery {
@XmlElement(name = "Keywords")
protected String keywords;
@XmlElement(name = "Message")
protected String message;
/**
* Gets the value of the keywords property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeywords() {
return keywords;
}
/**
* Sets the value of the keywords property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKeywords(String value) {
this.keywords = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy