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.XmlType;
15  
16  
17  /**
18   * <p>Java class for PromotionItemApplicability complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="PromotionItemApplicability">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;sequence>
27   *         &lt;element name="ASIN" type="{http://www.w3.org/2001/XMLSchema}string"/>
28   *         &lt;element name="IsInBenefitSet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
29   *         &lt;element name="IsInEligibilityRequirementSet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
30   *       &lt;/sequence>
31   *     &lt;/restriction>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "PromotionItemApplicability", propOrder = {
40      "asin",
41      "isInBenefitSet",
42      "isInEligibilityRequirementSet"
43  })
44  public class PromotionItemApplicability {
45  
46      @XmlElement(name = "ASIN", required = true)
47      protected String asin;
48      @XmlElement(name = "IsInBenefitSet")
49      protected boolean isInBenefitSet;
50      @XmlElement(name = "IsInEligibilityRequirementSet")
51      protected boolean isInEligibilityRequirementSet;
52  
53      /**
54       * Gets the value of the asin property.
55       * 
56       * @return
57       *     possible object is
58       *     {@link String }
59       *     
60       */
61      public String getASIN() {
62          return asin;
63      }
64  
65      /**
66       * Sets the value of the asin property.
67       * 
68       * @param value
69       *     allowed object is
70       *     {@link String }
71       *     
72       */
73      public void setASIN(String value) {
74          this.asin = value;
75      }
76  
77      /**
78       * Gets the value of the isInBenefitSet property.
79       * 
80       */
81      public boolean isIsInBenefitSet() {
82          return isInBenefitSet;
83      }
84  
85      /**
86       * Sets the value of the isInBenefitSet property.
87       * 
88       */
89      public void setIsInBenefitSet(boolean value) {
90          this.isInBenefitSet = value;
91      }
92  
93      /**
94       * Gets the value of the isInEligibilityRequirementSet property.
95       * 
96       */
97      public boolean isIsInEligibilityRequirementSet() {
98          return isInEligibilityRequirementSet;
99      }
100 
101     /**
102      * Sets the value of the isInEligibilityRequirementSet property.
103      * 
104      */
105     public void setIsInEligibilityRequirementSet(boolean value) {
106         this.isInEligibilityRequirementSet = value;
107     }
108 
109 }