1
2
3
4
5
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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
74
75
76
77
78
79
80 public String getMerchantId() {
81 return merchantId;
82 }
83
84
85
86
87
88
89
90
91
92 public void setMerchantId(String value) {
93 this.merchantId = value;
94 }
95
96
97
98
99
100
101
102
103
104 public String getName() {
105 return name;
106 }
107
108
109
110
111
112
113
114
115
116 public void setName(String value) {
117 this.name = value;
118 }
119
120
121
122
123
124
125
126
127
128 public String getGlancePage() {
129 return glancePage;
130 }
131
132
133
134
135
136
137
138
139
140 public void setGlancePage(String value) {
141 this.glancePage = value;
142 }
143
144
145
146
147
148
149
150
151
152 public BigDecimal getAverageFeedbackRating() {
153 return averageFeedbackRating;
154 }
155
156
157
158
159
160
161
162
163
164 public void setAverageFeedbackRating(BigDecimal value) {
165 this.averageFeedbackRating = value;
166 }
167
168
169
170
171
172
173
174
175
176 public BigInteger getTotalFeedback() {
177 return totalFeedback;
178 }
179
180
181
182
183
184
185
186
187
188 public void setTotalFeedback(BigInteger value) {
189 this.totalFeedback = value;
190 }
191
192
193
194
195
196
197
198
199
200 public BigInteger getTotalFeedbackPages() {
201 return totalFeedbackPages;
202 }
203
204
205
206
207
208
209
210
211
212 public void setTotalFeedbackPages(BigInteger value) {
213 this.totalFeedbackPages = value;
214 }
215
216 }