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

ebay.apis.shopping.eblbasecomponents.FindPopularItemsResponseType 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;


/**
 * 
 * 				Popular items, detail level is default for simple item type. addition with WatchCount.
 * 			
 * 
 * 

Java class for FindPopularItemsResponseType complex type. * *

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

 * <complexType name="FindPopularItemsResponseType">
 *   <complexContent>
 *     <extension base="{urn:ebay:apis:eBLBaseComponents}AbstractResponseType">
 *       <sequence>
 *         <element name="ItemArray" type="{urn:ebay:apis:eBLBaseComponents}SimpleItemArrayType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindPopularItemsResponseType", propOrder = { "itemArray" }) public class FindPopularItemsResponseType extends AbstractResponseType { @XmlElement(name = "ItemArray") protected SimpleItemArrayType itemArray; /** * Gets the value of the itemArray property. * * @return * possible object is * {@link SimpleItemArrayType } * */ public SimpleItemArrayType getItemArray() { return itemArray; } /** * Sets the value of the itemArray property. * * @param value * allowed object is * {@link SimpleItemArrayType } * */ public void setItemArray(SimpleItemArrayType value) { this.itemArray = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy