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 * <complexType> 25 * <complexContent> 26 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 27 * <sequence> 28 * <element name="ExchangeId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 29 * <element name="ListingId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 30 * <element name="ASIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 31 * <element name="SKU" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 32 * <element name="UPC" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 33 * <element name="EAN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 34 * <element name="WillShipExpedited" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> 35 * <element name="WillShipInternational" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> 36 * <element name="Title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 37 * <element name="Price" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/> 38 * <element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 39 * <element name="EndDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 40 * <element name="Status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 41 * <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 42 * <element name="Condition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 43 * <element name="SubCondition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 44 * <element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Seller" minOccurs="0"/> 45 * </sequence> 46 * </restriction> 47 * </complexContent> 48 * </complexType> 49 * </pre> 50 * 51 * 52 */ 53 @XmlAccessorType(XmlAccessType.FIELD) 54 @XmlType(name = "", propOrder = { 55 "exchangeId", 56 "listingId", 57 "asin", 58 "sku", 59 "upc", 60 "ean", 61 "willShipExpedited", 62 "willShipInternational", 63 "title", 64 "price", 65 "startDate", 66 "endDate", 67 "status", 68 "quantity", 69 "condition", 70 "subCondition", 71 "seller" 72 }) 73 @XmlRootElement(name = "SellerListing") 74 public class SellerListing { 75 76 @XmlElement(name = "ExchangeId") 77 protected String exchangeId; 78 @XmlElement(name = "ListingId") 79 protected String listingId; 80 @XmlElement(name = "ASIN") 81 protected String asin; 82 @XmlElement(name = "SKU") 83 protected String sku; 84 @XmlElement(name = "UPC") 85 protected String upc; 86 @XmlElement(name = "EAN") 87 protected String ean; 88 @XmlElement(name = "WillShipExpedited") 89 protected Boolean willShipExpedited; 90 @XmlElement(name = "WillShipInternational") 91 protected Boolean willShipInternational; 92 @XmlElement(name = "Title") 93 protected String title; 94 @XmlElement(name = "Price") 95 protected Price price; 96 @XmlElement(name = "StartDate") 97 protected String startDate; 98 @XmlElement(name = "EndDate") 99 protected String endDate; 100 @XmlElement(name = "Status") 101 protected String status; 102 @XmlElement(name = "Quantity") 103 protected String quantity; 104 @XmlElement(name = "Condition") 105 protected String condition; 106 @XmlElement(name = "SubCondition") 107 protected String subCondition; 108 @XmlElement(name = "Seller") 109 protected Seller seller; 110 111 /** 112 * Gets the value of the exchangeId property. 113 * 114 * @return 115 * possible object is 116 * {@link String } 117 * 118 */ 119 public String getExchangeId() { 120 return exchangeId; 121 } 122 123 /** 124 * Sets the value of the exchangeId property. 125 * 126 * @param value 127 * allowed object is 128 * {@link String } 129 * 130 */ 131 public void setExchangeId(String value) { 132 this.exchangeId = value; 133 } 134 135 /** 136 * Gets the value of the listingId property. 137 * 138 * @return 139 * possible object is 140 * {@link String } 141 * 142 */ 143 public String getListingId() { 144 return listingId; 145 } 146 147 /** 148 * Sets the value of the listingId property. 149 * 150 * @param value 151 * allowed object is 152 * {@link String } 153 * 154 */ 155 public void setListingId(String value) { 156 this.listingId = value; 157 } 158 159 /** 160 * Gets the value of the asin property. 161 * 162 * @return 163 * possible object is 164 * {@link String } 165 * 166 */ 167 public String getASIN() { 168 return asin; 169 } 170 171 /** 172 * Sets the value of the asin property. 173 * 174 * @param value 175 * allowed object is 176 * {@link String } 177 * 178 */ 179 public void setASIN(String value) { 180 this.asin = value; 181 } 182 183 /** 184 * Gets the value of the sku property. 185 * 186 * @return 187 * possible object is 188 * {@link String } 189 * 190 */ 191 public String getSKU() { 192 return sku; 193 } 194 195 /** 196 * Sets the value of the sku property. 197 * 198 * @param value 199 * allowed object is 200 * {@link String } 201 * 202 */ 203 public void setSKU(String value) { 204 this.sku = value; 205 } 206 207 /** 208 * Gets the value of the upc property. 209 * 210 * @return 211 * possible object is 212 * {@link String } 213 * 214 */ 215 public String getUPC() { 216 return upc; 217 } 218 219 /** 220 * Sets the value of the upc property. 221 * 222 * @param value 223 * allowed object is 224 * {@link String } 225 * 226 */ 227 public void setUPC(String value) { 228 this.upc = value; 229 } 230 231 /** 232 * Gets the value of the ean property. 233 * 234 * @return 235 * possible object is 236 * {@link String } 237 * 238 */ 239 public String getEAN() { 240 return ean; 241 } 242 243 /** 244 * Sets the value of the ean property. 245 * 246 * @param value 247 * allowed object is 248 * {@link String } 249 * 250 */ 251 public void setEAN(String value) { 252 this.ean = value; 253 } 254 255 /** 256 * Gets the value of the willShipExpedited property. 257 * 258 * @return 259 * possible object is 260 * {@link Boolean } 261 * 262 */ 263 public Boolean isWillShipExpedited() { 264 return willShipExpedited; 265 } 266 267 /** 268 * Sets the value of the willShipExpedited property. 269 * 270 * @param value 271 * allowed object is 272 * {@link Boolean } 273 * 274 */ 275 public void setWillShipExpedited(Boolean value) { 276 this.willShipExpedited = value; 277 } 278 279 /** 280 * Gets the value of the willShipInternational property. 281 * 282 * @return 283 * possible object is 284 * {@link Boolean } 285 * 286 */ 287 public Boolean isWillShipInternational() { 288 return willShipInternational; 289 } 290 291 /** 292 * Sets the value of the willShipInternational property. 293 * 294 * @param value 295 * allowed object is 296 * {@link Boolean } 297 * 298 */ 299 public void setWillShipInternational(Boolean value) { 300 this.willShipInternational = value; 301 } 302 303 /** 304 * Gets the value of the title property. 305 * 306 * @return 307 * possible object is 308 * {@link String } 309 * 310 */ 311 public String getTitle() { 312 return title; 313 } 314 315 /** 316 * Sets the value of the title property. 317 * 318 * @param value 319 * allowed object is 320 * {@link String } 321 * 322 */ 323 public void setTitle(String value) { 324 this.title = value; 325 } 326 327 /** 328 * Gets the value of the price property. 329 * 330 * @return 331 * possible object is 332 * {@link Price } 333 * 334 */ 335 public Price getPrice() { 336 return price; 337 } 338 339 /** 340 * Sets the value of the price property. 341 * 342 * @param value 343 * allowed object is 344 * {@link Price } 345 * 346 */ 347 public void setPrice(Price value) { 348 this.price = value; 349 } 350 351 /** 352 * Gets the value of the startDate property. 353 * 354 * @return 355 * possible object is 356 * {@link String } 357 * 358 */ 359 public String getStartDate() { 360 return startDate; 361 } 362 363 /** 364 * Sets the value of the startDate property. 365 * 366 * @param value 367 * allowed object is 368 * {@link String } 369 * 370 */ 371 public void setStartDate(String value) { 372 this.startDate = value; 373 } 374 375 /** 376 * Gets the value of the endDate property. 377 * 378 * @return 379 * possible object is 380 * {@link String } 381 * 382 */ 383 public String getEndDate() { 384 return endDate; 385 } 386 387 /** 388 * Sets the value of the endDate property. 389 * 390 * @param value 391 * allowed object is 392 * {@link String } 393 * 394 */ 395 public void setEndDate(String value) { 396 this.endDate = value; 397 } 398 399 /** 400 * Gets the value of the status property. 401 * 402 * @return 403 * possible object is 404 * {@link String } 405 * 406 */ 407 public String getStatus() { 408 return status; 409 } 410 411 /** 412 * Sets the value of the status property. 413 * 414 * @param value 415 * allowed object is 416 * {@link String } 417 * 418 */ 419 public void setStatus(String value) { 420 this.status = value; 421 } 422 423 /** 424 * Gets the value of the quantity property. 425 * 426 * @return 427 * possible object is 428 * {@link String } 429 * 430 */ 431 public String getQuantity() { 432 return quantity; 433 } 434 435 /** 436 * Sets the value of the quantity property. 437 * 438 * @param value 439 * allowed object is 440 * {@link String } 441 * 442 */ 443 public void setQuantity(String value) { 444 this.quantity = value; 445 } 446 447 /** 448 * Gets the value of the condition property. 449 * 450 * @return 451 * possible object is 452 * {@link String } 453 * 454 */ 455 public String getCondition() { 456 return condition; 457 } 458 459 /** 460 * Sets the value of the condition property. 461 * 462 * @param value 463 * allowed object is 464 * {@link String } 465 * 466 */ 467 public void setCondition(String value) { 468 this.condition = value; 469 } 470 471 /** 472 * Gets the value of the subCondition property. 473 * 474 * @return 475 * possible object is 476 * {@link String } 477 * 478 */ 479 public String getSubCondition() { 480 return subCondition; 481 } 482 483 /** 484 * Sets the value of the subCondition property. 485 * 486 * @param value 487 * allowed object is 488 * {@link String } 489 * 490 */ 491 public void setSubCondition(String value) { 492 this.subCondition = value; 493 } 494 495 /** 496 * Gets the value of the seller property. 497 * 498 * @return 499 * possible object is 500 * {@link Seller } 501 * 502 */ 503 public Seller getSeller() { 504 return seller; 505 } 506 507 /** 508 * Sets the value of the seller property. 509 * 510 * @param value 511 * allowed object is 512 * {@link Seller } 513 * 514 */ 515 public void setSeller(Seller value) { 516 this.seller = value; 517 } 518 519 }