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

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


/**
 * 
 * 				Response to GetSingleItem request.
 * 			
 * 
 * 

Java class for GetSingleItemResponseType complex type. * *

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy