Blame | Last modification | View Log | RSS feed
//// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>// Any modifications to this file will be lost upon recompilation of the source schema.// Generated on: 2014.02.05 at 12:01:10 PM IST//package com.amazonaws.mws.model;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlType;/*** <p>Java class for anonymous complex type.** <p>The following schema fragment specifies the expected content contained within this class.** <pre>* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="ASIN" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="SKU" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="ItemStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>* <element name="ProductName" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}byte"/>* <element name="ItemPrice" minOccurs="0">* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="Component" maxOccurs="unbounded" minOccurs="0">* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>* <element name="Amount">* <complexType>* <simpleContent>* <extension base="<http://www.w3.org/2001/XMLSchema>float">* <attribute name="currency" type="{http://www.w3.org/2001/XMLSchema}string" />* </extension>* </simpleContent>* </complexType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </element>* <element name="Promotion" minOccurs="0">* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="ShipPromotionDiscount" type="{http://www.w3.org/2001/XMLSchema}float"/>* <element name="ItemPromotionDiscount" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"asin","sku","itemStatus","productName","quantity","itemPrice","promotion"})public class OrderItem {@XmlElement(name = "ASIN", required = true)protected String asin;@XmlElement(name = "SKU", required = true)protected String sku;@XmlElement(name = "ItemStatus")protected String itemStatus;@XmlElement(name = "ProductName", required = true)protected String productName;@XmlElement(name = "Quantity")protected byte quantity;@XmlElement(name = "ItemPrice")protected ItemPrice itemPrice;@XmlElement(name = "Promotion")protected Promotion promotion;/*** Gets the value of the asin property.** @return* possible object is* {@link String }**/public String getASIN() {return asin;}/*** Sets the value of the asin property.** @param value* allowed object is* {@link String }**/public void setASIN(String value) {this.asin = value;}/*** Gets the value of the sku property.** @return* possible object is* {@link String }**/public String getSKU() {return sku;}/*** Sets the value of the sku property.** @param value* allowed object is* {@link String }**/public void setSKU(String value) {this.sku = value;}/*** Gets the value of the itemStatus property.** @return* possible object is* {@link String }**/public String getItemStatus() {return itemStatus;}/*** Sets the value of the itemStatus property.** @param value* allowed object is* {@link String }**/public void setItemStatus(String value) {this.itemStatus = value;}/*** Gets the value of the productName property.** @return* possible object is* {@link String }**/public String getProductName() {return productName;}/*** Sets the value of the productName property.** @param value* allowed object is* {@link String }**/public void setProductName(String value) {this.productName = value;}/*** Gets the value of the quantity property.**/public byte getQuantity() {return quantity;}/*** Sets the value of the quantity property.**/public void setQuantity(byte value) {this.quantity = value;}/*** Gets the value of the itemPrice property.** @return* possible object is* {@link ItemPrice }**/public ItemPrice getItemPrice() {return itemPrice;}/*** Sets the value of the itemPrice property.** @param value* allowed object is* {@link ItemPrice }**/public void setItemPrice(ItemPrice value) {this.itemPrice = value;}/*** Gets the value of the promotion property.** @return* possible object is* {@link Promotion }**/public Promotion getPromotion() {return promotion;}/*** Sets the value of the promotion property.** @param value* allowed object is* {@link Promotion }**/public void setPromotion(Promotion value) {this.promotion = value;}}