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 Image complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="Image">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="URL" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="Height" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}DecimalWithUnits"/>
29 * <element name="Width" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}DecimalWithUnits"/>
30 * <element name="IsVerified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31 * </sequence>
32 * </restriction>
33 * </complexContent>
34 * </complexType>
35 * </pre>
36 *
37 *
38 */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "Image", propOrder = {
41 "url",
42 "height",
43 "width",
44 "isVerified"
45 })
46 public class Image {
47
48 @XmlElement(name = "URL", required = true)
49 protected String url;
50 @XmlElement(name = "Height", required = true)
51 protected DecimalWithUnits height;
52 @XmlElement(name = "Width", required = true)
53 protected DecimalWithUnits width;
54 @XmlElement(name = "IsVerified")
55 protected String isVerified;
56
57 /**
58 * Gets the value of the url property.
59 *
60 * @return
61 * possible object is
62 * {@link String }
63 *
64 */
65 public String getURL() {
66 return url;
67 }
68
69 /**
70 * Sets the value of the url property.
71 *
72 * @param value
73 * allowed object is
74 * {@link String }
75 *
76 */
77 public void setURL(String value) {
78 this.url = value;
79 }
80
81 /**
82 * Gets the value of the height property.
83 *
84 * @return
85 * possible object is
86 * {@link DecimalWithUnits }
87 *
88 */
89 public DecimalWithUnits getHeight() {
90 return height;
91 }
92
93 /**
94 * Sets the value of the height property.
95 *
96 * @param value
97 * allowed object is
98 * {@link DecimalWithUnits }
99 *
100 */
101 public void setHeight(DecimalWithUnits value) {
102 this.height = value;
103 }
104
105 /**
106 * Gets the value of the width property.
107 *
108 * @return
109 * possible object is
110 * {@link DecimalWithUnits }
111 *
112 */
113 public DecimalWithUnits getWidth() {
114 return width;
115 }
116
117 /**
118 * Sets the value of the width property.
119 *
120 * @param value
121 * allowed object is
122 * {@link DecimalWithUnits }
123 *
124 */
125 public void setWidth(DecimalWithUnits value) {
126 this.width = value;
127 }
128
129 /**
130 * Gets the value of the isVerified property.
131 *
132 * @return
133 * possible object is
134 * {@link String }
135 *
136 */
137 public String getIsVerified() {
138 return isVerified;
139 }
140
141 /**
142 * Sets the value of the isVerified property.
143 *
144 * @param value
145 * allowed object is
146 * {@link String }
147 *
148 */
149 public void setIsVerified(String value) {
150 this.isVerified = value;
151 }
152
153 }