View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2007.04.05 at 10:47:13 AM CEST 
6   //
7   
8   
9   package com.amazon.webservices.awsecommerceservice._2007_04_04;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlElement;
14  import javax.xml.bind.annotation.XmlRootElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for anonymous complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType>
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element name="LowestPrice" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
29   *         &lt;element name="HighestPrice" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
30   *         &lt;element name="LowestSalePrice" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
31   *         &lt;element name="HighestSalePrice" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
32   *         &lt;element name="SingleMerchantId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
33   *       &lt;/sequence>
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "", propOrder = {
43      "lowestPrice",
44      "highestPrice",
45      "lowestSalePrice",
46      "highestSalePrice",
47      "singleMerchantId"
48  })
49  @XmlRootElement(name = "VariationSummary")
50  public class VariationSummary {
51  
52      @XmlElement(name = "LowestPrice")
53      protected Price lowestPrice;
54      @XmlElement(name = "HighestPrice")
55      protected Price highestPrice;
56      @XmlElement(name = "LowestSalePrice")
57      protected Price lowestSalePrice;
58      @XmlElement(name = "HighestSalePrice")
59      protected Price highestSalePrice;
60      @XmlElement(name = "SingleMerchantId")
61      protected String singleMerchantId;
62  
63      /**
64       * Gets the value of the lowestPrice property.
65       * 
66       * @return
67       *     possible object is
68       *     {@link Price }
69       *     
70       */
71      public Price getLowestPrice() {
72          return lowestPrice;
73      }
74  
75      /**
76       * Sets the value of the lowestPrice property.
77       * 
78       * @param value
79       *     allowed object is
80       *     {@link Price }
81       *     
82       */
83      public void setLowestPrice(Price value) {
84          this.lowestPrice = value;
85      }
86  
87      /**
88       * Gets the value of the highestPrice property.
89       * 
90       * @return
91       *     possible object is
92       *     {@link Price }
93       *     
94       */
95      public Price getHighestPrice() {
96          return highestPrice;
97      }
98  
99      /**
100      * Sets the value of the highestPrice property.
101      * 
102      * @param value
103      *     allowed object is
104      *     {@link Price }
105      *     
106      */
107     public void setHighestPrice(Price value) {
108         this.highestPrice = value;
109     }
110 
111     /**
112      * Gets the value of the lowestSalePrice property.
113      * 
114      * @return
115      *     possible object is
116      *     {@link Price }
117      *     
118      */
119     public Price getLowestSalePrice() {
120         return lowestSalePrice;
121     }
122 
123     /**
124      * Sets the value of the lowestSalePrice property.
125      * 
126      * @param value
127      *     allowed object is
128      *     {@link Price }
129      *     
130      */
131     public void setLowestSalePrice(Price value) {
132         this.lowestSalePrice = value;
133     }
134 
135     /**
136      * Gets the value of the highestSalePrice property.
137      * 
138      * @return
139      *     possible object is
140      *     {@link Price }
141      *     
142      */
143     public Price getHighestSalePrice() {
144         return highestSalePrice;
145     }
146 
147     /**
148      * Sets the value of the highestSalePrice property.
149      * 
150      * @param value
151      *     allowed object is
152      *     {@link Price }
153      *     
154      */
155     public void setHighestSalePrice(Price value) {
156         this.highestSalePrice = value;
157     }
158 
159     /**
160      * Gets the value of the singleMerchantId property.
161      * 
162      * @return
163      *     possible object is
164      *     {@link String }
165      *     
166      */
167     public String getSingleMerchantId() {
168         return singleMerchantId;
169     }
170 
171     /**
172      * Sets the value of the singleMerchantId property.
173      * 
174      * @param value
175      *     allowed object is
176      *     {@link String }
177      *     
178      */
179     public void setSingleMerchantId(String value) {
180         this.singleMerchantId = value;
181     }
182 
183 }