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.XmlType;
15
16
17 /**
18 * <p>Java class for PromotionEligibilityRequirement complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="PromotionEligibilityRequirement">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="EligibilityRequirementType" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="Quantity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
29 * <element name="CurrencyAmount" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/>
30 * </sequence>
31 * </restriction>
32 * </complexContent>
33 * </complexType>
34 * </pre>
35 *
36 *
37 */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "PromotionEligibilityRequirement", propOrder = {
40 "eligibilityRequirementType",
41 "quantity",
42 "currencyAmount"
43 })
44 public class PromotionEligibilityRequirement {
45
46 @XmlElement(name = "EligibilityRequirementType", required = true)
47 protected String eligibilityRequirementType;
48 @XmlElement(name = "Quantity")
49 protected Integer quantity;
50 @XmlElement(name = "CurrencyAmount")
51 protected Price currencyAmount;
52
53 /**
54 * Gets the value of the eligibilityRequirementType property.
55 *
56 * @return
57 * possible object is
58 * {@link String }
59 *
60 */
61 public String getEligibilityRequirementType() {
62 return eligibilityRequirementType;
63 }
64
65 /**
66 * Sets the value of the eligibilityRequirementType property.
67 *
68 * @param value
69 * allowed object is
70 * {@link String }
71 *
72 */
73 public void setEligibilityRequirementType(String value) {
74 this.eligibilityRequirementType = value;
75 }
76
77 /**
78 * Gets the value of the quantity property.
79 *
80 * @return
81 * possible object is
82 * {@link Integer }
83 *
84 */
85 public Integer getQuantity() {
86 return quantity;
87 }
88
89 /**
90 * Sets the value of the quantity property.
91 *
92 * @param value
93 * allowed object is
94 * {@link Integer }
95 *
96 */
97 public void setQuantity(Integer value) {
98 this.quantity = value;
99 }
100
101 /**
102 * Gets the value of the currencyAmount property.
103 *
104 * @return
105 * possible object is
106 * {@link Price }
107 *
108 */
109 public Price getCurrencyAmount() {
110 return currencyAmount;
111 }
112
113 /**
114 * Sets the value of the currencyAmount property.
115 *
116 * @param value
117 * allowed object is
118 * {@link Price }
119 *
120 */
121 public void setCurrencyAmount(Price value) {
122 this.currencyAmount = value;
123 }
124
125 }