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="LowestNewPrice" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
29   *         &lt;element name="LowestUsedPrice" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
30   *         &lt;element name="LowestCollectiblePrice" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
31   *         &lt;element name="LowestRefurbishedPrice" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
32   *         &lt;element name="TotalNew" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
33   *         &lt;element name="TotalUsed" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
34   *         &lt;element name="TotalCollectible" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
35   *         &lt;element name="TotalRefurbished" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
36   *       &lt;/sequence>
37   *     &lt;/restriction>
38   *   &lt;/complexContent>
39   * &lt;/complexType>
40   * </pre>
41   * 
42   * 
43   */
44  @XmlAccessorType(XmlAccessType.FIELD)
45  @XmlType(name = "", propOrder = {
46      "lowestNewPrice",
47      "lowestUsedPrice",
48      "lowestCollectiblePrice",
49      "lowestRefurbishedPrice",
50      "totalNew",
51      "totalUsed",
52      "totalCollectible",
53      "totalRefurbished"
54  })
55  @XmlRootElement(name = "OfferSummary")
56  public class OfferSummary {
57  
58      @XmlElement(name = "LowestNewPrice")
59      protected Price lowestNewPrice;
60      @XmlElement(name = "LowestUsedPrice")
61      protected Price lowestUsedPrice;
62      @XmlElement(name = "LowestCollectiblePrice")
63      protected Price lowestCollectiblePrice;
64      @XmlElement(name = "LowestRefurbishedPrice")
65      protected Price lowestRefurbishedPrice;
66      @XmlElement(name = "TotalNew")
67      protected String totalNew;
68      @XmlElement(name = "TotalUsed")
69      protected String totalUsed;
70      @XmlElement(name = "TotalCollectible")
71      protected String totalCollectible;
72      @XmlElement(name = "TotalRefurbished")
73      protected String totalRefurbished;
74  
75      /**
76       * Gets the value of the lowestNewPrice property.
77       * 
78       * @return
79       *     possible object is
80       *     {@link Price }
81       *     
82       */
83      public Price getLowestNewPrice() {
84          return lowestNewPrice;
85      }
86  
87      /**
88       * Sets the value of the lowestNewPrice property.
89       * 
90       * @param value
91       *     allowed object is
92       *     {@link Price }
93       *     
94       */
95      public void setLowestNewPrice(Price value) {
96          this.lowestNewPrice = value;
97      }
98  
99      /**
100      * Gets the value of the lowestUsedPrice property.
101      * 
102      * @return
103      *     possible object is
104      *     {@link Price }
105      *     
106      */
107     public Price getLowestUsedPrice() {
108         return lowestUsedPrice;
109     }
110 
111     /**
112      * Sets the value of the lowestUsedPrice property.
113      * 
114      * @param value
115      *     allowed object is
116      *     {@link Price }
117      *     
118      */
119     public void setLowestUsedPrice(Price value) {
120         this.lowestUsedPrice = value;
121     }
122 
123     /**
124      * Gets the value of the lowestCollectiblePrice property.
125      * 
126      * @return
127      *     possible object is
128      *     {@link Price }
129      *     
130      */
131     public Price getLowestCollectiblePrice() {
132         return lowestCollectiblePrice;
133     }
134 
135     /**
136      * Sets the value of the lowestCollectiblePrice property.
137      * 
138      * @param value
139      *     allowed object is
140      *     {@link Price }
141      *     
142      */
143     public void setLowestCollectiblePrice(Price value) {
144         this.lowestCollectiblePrice = value;
145     }
146 
147     /**
148      * Gets the value of the lowestRefurbishedPrice property.
149      * 
150      * @return
151      *     possible object is
152      *     {@link Price }
153      *     
154      */
155     public Price getLowestRefurbishedPrice() {
156         return lowestRefurbishedPrice;
157     }
158 
159     /**
160      * Sets the value of the lowestRefurbishedPrice property.
161      * 
162      * @param value
163      *     allowed object is
164      *     {@link Price }
165      *     
166      */
167     public void setLowestRefurbishedPrice(Price value) {
168         this.lowestRefurbishedPrice = value;
169     }
170 
171     /**
172      * Gets the value of the totalNew property.
173      * 
174      * @return
175      *     possible object is
176      *     {@link String }
177      *     
178      */
179     public String getTotalNew() {
180         return totalNew;
181     }
182 
183     /**
184      * Sets the value of the totalNew property.
185      * 
186      * @param value
187      *     allowed object is
188      *     {@link String }
189      *     
190      */
191     public void setTotalNew(String value) {
192         this.totalNew = value;
193     }
194 
195     /**
196      * Gets the value of the totalUsed property.
197      * 
198      * @return
199      *     possible object is
200      *     {@link String }
201      *     
202      */
203     public String getTotalUsed() {
204         return totalUsed;
205     }
206 
207     /**
208      * Sets the value of the totalUsed property.
209      * 
210      * @param value
211      *     allowed object is
212      *     {@link String }
213      *     
214      */
215     public void setTotalUsed(String value) {
216         this.totalUsed = value;
217     }
218 
219     /**
220      * Gets the value of the totalCollectible property.
221      * 
222      * @return
223      *     possible object is
224      *     {@link String }
225      *     
226      */
227     public String getTotalCollectible() {
228         return totalCollectible;
229     }
230 
231     /**
232      * Sets the value of the totalCollectible property.
233      * 
234      * @param value
235      *     allowed object is
236      *     {@link String }
237      *     
238      */
239     public void setTotalCollectible(String value) {
240         this.totalCollectible = value;
241     }
242 
243     /**
244      * Gets the value of the totalRefurbished property.
245      * 
246      * @return
247      *     possible object is
248      *     {@link String }
249      *     
250      */
251     public String getTotalRefurbished() {
252         return totalRefurbished;
253     }
254 
255     /**
256      * Sets the value of the totalRefurbished property.
257      * 
258      * @param value
259      *     allowed object is
260      *     {@link String }
261      *     
262      */
263     public void setTotalRefurbished(String value) {
264         this.totalRefurbished = value;
265     }
266 
267 }