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="Condition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 29 * <element name="SubCondition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 30 * <element name="ConditionNote" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 31 * <element name="WillShipExpedited" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> 32 * <element name="WillShipInternational" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> 33 * </sequence> 34 * </restriction> 35 * </complexContent> 36 * </complexType> 37 * </pre> 38 * 39 * 40 */ 41 @XmlAccessorType(XmlAccessType.FIELD) 42 @XmlType(name = "", propOrder = { 43 "condition", 44 "subCondition", 45 "conditionNote", 46 "willShipExpedited", 47 "willShipInternational" 48 }) 49 @XmlRootElement(name = "OfferAttributes") 50 public class OfferAttributes { 51 52 @XmlElement(name = "Condition") 53 protected String condition; 54 @XmlElement(name = "SubCondition") 55 protected String subCondition; 56 @XmlElement(name = "ConditionNote") 57 protected String conditionNote; 58 @XmlElement(name = "WillShipExpedited") 59 protected Boolean willShipExpedited; 60 @XmlElement(name = "WillShipInternational") 61 protected Boolean willShipInternational; 62 63 /** 64 * Gets the value of the condition property. 65 * 66 * @return 67 * possible object is 68 * {@link String } 69 * 70 */ 71 public String getCondition() { 72 return condition; 73 } 74 75 /** 76 * Sets the value of the condition property. 77 * 78 * @param value 79 * allowed object is 80 * {@link String } 81 * 82 */ 83 public void setCondition(String value) { 84 this.condition = value; 85 } 86 87 /** 88 * Gets the value of the subCondition property. 89 * 90 * @return 91 * possible object is 92 * {@link String } 93 * 94 */ 95 public String getSubCondition() { 96 return subCondition; 97 } 98 99 /** 100 * Sets the value of the subCondition property. 101 * 102 * @param value 103 * allowed object is 104 * {@link String } 105 * 106 */ 107 public void setSubCondition(String value) { 108 this.subCondition = value; 109 } 110 111 /** 112 * Gets the value of the conditionNote property. 113 * 114 * @return 115 * possible object is 116 * {@link String } 117 * 118 */ 119 public String getConditionNote() { 120 return conditionNote; 121 } 122 123 /** 124 * Sets the value of the conditionNote property. 125 * 126 * @param value 127 * allowed object is 128 * {@link String } 129 * 130 */ 131 public void setConditionNote(String value) { 132 this.conditionNote = value; 133 } 134 135 /** 136 * Gets the value of the willShipExpedited property. 137 * 138 * @return 139 * possible object is 140 * {@link Boolean } 141 * 142 */ 143 public Boolean isWillShipExpedited() { 144 return willShipExpedited; 145 } 146 147 /** 148 * Sets the value of the willShipExpedited property. 149 * 150 * @param value 151 * allowed object is 152 * {@link Boolean } 153 * 154 */ 155 public void setWillShipExpedited(Boolean value) { 156 this.willShipExpedited = value; 157 } 158 159 /** 160 * Gets the value of the willShipInternational property. 161 * 162 * @return 163 * possible object is 164 * {@link Boolean } 165 * 166 */ 167 public Boolean isWillShipInternational() { 168 return willShipInternational; 169 } 170 171 /** 172 * Sets the value of the willShipInternational property. 173 * 174 * @param value 175 * allowed object is 176 * {@link Boolean } 177 * 178 */ 179 public void setWillShipInternational(Boolean value) { 180 this.willShipInternational = value; 181 } 182 183 }