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

ebay.apis.shopping.eblbasecomponents.ProductIDType 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.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 
 * 				Product ID has an attribute of ProductIDCodeType and a string value.
 * 			
 * 
 * 

Java class for ProductIDType complex type. * *

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

 * <complexType name="ProductIDType">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="type" type="{urn:ebay:apis:eBLBaseComponents}ProductIDCodeType" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProductIDType", propOrder = { "value" }) public class ProductIDType { @XmlValue protected String value; @XmlAttribute(name = "type") protected ProductIDCodeType type; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link ProductIDCodeType } * */ public ProductIDCodeType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link ProductIDCodeType } * */ public void setType(ProductIDCodeType value) { this.type = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy