All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ebay.apis.shopping.eblbasecomponents.GetCategoryInfoRequestType Maven / Gradle / Ivy

Go to download

This Java client enables you to use Java to make API calls in the eBay Shopping API, which is an XML API. This maven build is simply the Apache CXF generated client code for the Shopping API WSDL.

The newest version!

package ebay.apis.shopping.eblbasecomponents;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 * 				This call will give you the ability to retrieve high level
 * 				Category information, relevant for a buy-side application.
 * 			
 * 
 * 

Java class for GetCategoryInfoRequestType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="GetCategoryInfoRequestType">
 *   <complexContent>
 *     <extension base="{urn:ebay:apis:eBLBaseComponents}AbstractRequestType">
 *       <sequence>
 *         <element name="CategoryID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="IncludeSelector" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetCategoryInfoRequestType", propOrder = { "categoryID", "includeSelector" }) public class GetCategoryInfoRequestType extends AbstractRequestType { @XmlElement(name = "CategoryID") protected String categoryID; @XmlElement(name = "IncludeSelector") protected String includeSelector; /** * Gets the value of the categoryID property. * * @return * possible object is * {@link String } * */ public String getCategoryID() { return categoryID; } /** * Sets the value of the categoryID property. * * @param value * allowed object is * {@link String } * */ public void setCategoryID(String value) { this.categoryID = value; } /** * Gets the value of the includeSelector property. * * @return * possible object is * {@link String } * */ public String getIncludeSelector() { return includeSelector; } /** * Sets the value of the includeSelector property. * * @param value * allowed object is * {@link String } * */ public void setIncludeSelector(String value) { this.includeSelector = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy