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 java.math.BigDecimal;
12 import java.math.BigInteger;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlSchemaType;
18 import javax.xml.bind.annotation.XmlType;
19
20
21 /**
22 * <p>Java class for anonymous complex type.
23 *
24 * <p>The following schema fragment specifies the expected content contained within this class.
25 *
26 * <pre>
27 * <complexType>
28 * <complexContent>
29 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30 * <sequence>
31 * <element name="MerchantId" type="{http://www.w3.org/2001/XMLSchema}string"/>
32 * <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
33 * <element name="GlancePage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
34 * <element name="AverageFeedbackRating" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
35 * <element name="TotalFeedback" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
36 * <element name="TotalFeedbackPages" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
37 * </sequence>
38 * </restriction>
39 * </complexContent>
40 * </complexType>
41 * </pre>
42 *
43 *
44 */
45 @XmlAccessorType(XmlAccessType.FIELD)
46 @XmlType(name = "", propOrder = {
47 "merchantId",
48 "name",
49 "glancePage",
50 "averageFeedbackRating",
51 "totalFeedback",
52 "totalFeedbackPages"
53 })
54 @XmlRootElement(name = "Merchant")
55 public class Merchant {
56
57 @XmlElement(name = "MerchantId", required = true)
58 protected String merchantId;
59 @XmlElement(name = "Name")
60 protected String name;
61 @XmlElement(name = "GlancePage")
62 protected String glancePage;
63 @XmlElement(name = "AverageFeedbackRating")
64 protected BigDecimal averageFeedbackRating;
65 @XmlElement(name = "TotalFeedback")
66 @XmlSchemaType(name = "nonNegativeInteger")
67 protected BigInteger totalFeedback;
68 @XmlElement(name = "TotalFeedbackPages")
69 @XmlSchemaType(name = "nonNegativeInteger")
70 protected BigInteger totalFeedbackPages;
71
72 /**
73 * Gets the value of the merchantId property.
74 *
75 * @return
76 * possible object is
77 * {@link String }
78 *
79 */
80 public String getMerchantId() {
81 return merchantId;
82 }
83
84 /**
85 * Sets the value of the merchantId property.
86 *
87 * @param value
88 * allowed object is
89 * {@link String }
90 *
91 */
92 public void setMerchantId(String value) {
93 this.merchantId = value;
94 }
95
96 /**
97 * Gets the value of the name property.
98 *
99 * @return
100 * possible object is
101 * {@link String }
102 *
103 */
104 public String getName() {
105 return name;
106 }
107
108 /**
109 * Sets the value of the name property.
110 *
111 * @param value
112 * allowed object is
113 * {@link String }
114 *
115 */
116 public void setName(String value) {
117 this.name = value;
118 }
119
120 /**
121 * Gets the value of the glancePage property.
122 *
123 * @return
124 * possible object is
125 * {@link String }
126 *
127 */
128 public String getGlancePage() {
129 return glancePage;
130 }
131
132 /**
133 * Sets the value of the glancePage property.
134 *
135 * @param value
136 * allowed object is
137 * {@link String }
138 *
139 */
140 public void setGlancePage(String value) {
141 this.glancePage = value;
142 }
143
144 /**
145 * Gets the value of the averageFeedbackRating property.
146 *
147 * @return
148 * possible object is
149 * {@link BigDecimal }
150 *
151 */
152 public BigDecimal getAverageFeedbackRating() {
153 return averageFeedbackRating;
154 }
155
156 /**
157 * Sets the value of the averageFeedbackRating property.
158 *
159 * @param value
160 * allowed object is
161 * {@link BigDecimal }
162 *
163 */
164 public void setAverageFeedbackRating(BigDecimal value) {
165 this.averageFeedbackRating = value;
166 }
167
168 /**
169 * Gets the value of the totalFeedback property.
170 *
171 * @return
172 * possible object is
173 * {@link BigInteger }
174 *
175 */
176 public BigInteger getTotalFeedback() {
177 return totalFeedback;
178 }
179
180 /**
181 * Sets the value of the totalFeedback property.
182 *
183 * @param value
184 * allowed object is
185 * {@link BigInteger }
186 *
187 */
188 public void setTotalFeedback(BigInteger value) {
189 this.totalFeedback = value;
190 }
191
192 /**
193 * Gets the value of the totalFeedbackPages property.
194 *
195 * @return
196 * possible object is
197 * {@link BigInteger }
198 *
199 */
200 public BigInteger getTotalFeedbackPages() {
201 return totalFeedbackPages;
202 }
203
204 /**
205 * Sets the value of the totalFeedbackPages property.
206 *
207 * @param value
208 * allowed object is
209 * {@link BigInteger }
210 *
211 */
212 public void setTotalFeedbackPages(BigInteger value) {
213 this.totalFeedbackPages = value;
214 }
215
216 }