Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7481 vikram.rag 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
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: 2013.03.04 at 03:57:00 PM IST 
6
//
7
 
8
 
9
package in.shop2020.feeds.products;
10
 
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlAttribute;
14
import javax.xml.bind.annotation.XmlElement;
15
import javax.xml.bind.annotation.XmlSchemaType;
16
import javax.xml.bind.annotation.XmlType;
17
import javax.xml.datatype.XMLGregorianCalendar;
18
 
19
 
20
/**
21
 * <p>Java class for DatedCompareAtPrice complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType name="DatedCompareAtPrice">
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
31
 *         &lt;element name="EndDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
32
 *         &lt;element name="CompareAtPrice" type="{}CurrencyAmount"/>
33
 *       &lt;/sequence>
34
 *       &lt;attribute name="delete" type="{http://www.w3.org/2001/XMLSchema}boolean" />
35
 *     &lt;/restriction>
36
 *   &lt;/complexContent>
37
 * &lt;/complexType>
38
 * </pre>
39
 * 
40
 * 
41
 */
42
@XmlAccessorType(XmlAccessType.FIELD)
43
@XmlType(name = "DatedCompareAtPrice", propOrder = {
44
    "startDate",
45
    "endDate",
46
    "compareAtPrice"
47
})
48
public class DatedCompareAtPrice {
49
 
50
    @XmlElement(name = "StartDate")
51
    @XmlSchemaType(name = "dateTime")
52
    protected XMLGregorianCalendar startDate;
53
    @XmlElement(name = "EndDate")
54
    @XmlSchemaType(name = "dateTime")
55
    protected XMLGregorianCalendar endDate;
56
    @XmlElement(name = "CompareAtPrice", required = true)
57
    protected CurrencyAmount compareAtPrice;
58
    @XmlAttribute
59
    protected Boolean delete;
60
 
61
    /**
62
     * Gets the value of the startDate property.
63
     * 
64
     * @return
65
     *     possible object is
66
     *     {@link XMLGregorianCalendar }
67
     *     
68
     */
69
    public XMLGregorianCalendar getStartDate() {
70
        return startDate;
71
    }
72
 
73
    /**
74
     * Sets the value of the startDate property.
75
     * 
76
     * @param value
77
     *     allowed object is
78
     *     {@link XMLGregorianCalendar }
79
     *     
80
     */
81
    public void setStartDate(XMLGregorianCalendar value) {
82
        this.startDate = value;
83
    }
84
 
85
    /**
86
     * Gets the value of the endDate property.
87
     * 
88
     * @return
89
     *     possible object is
90
     *     {@link XMLGregorianCalendar }
91
     *     
92
     */
93
    public XMLGregorianCalendar getEndDate() {
94
        return endDate;
95
    }
96
 
97
    /**
98
     * Sets the value of the endDate property.
99
     * 
100
     * @param value
101
     *     allowed object is
102
     *     {@link XMLGregorianCalendar }
103
     *     
104
     */
105
    public void setEndDate(XMLGregorianCalendar value) {
106
        this.endDate = value;
107
    }
108
 
109
    /**
110
     * Gets the value of the compareAtPrice property.
111
     * 
112
     * @return
113
     *     possible object is
114
     *     {@link CurrencyAmount }
115
     *     
116
     */
117
    public CurrencyAmount getCompareAtPrice() {
118
        return compareAtPrice;
119
    }
120
 
121
    /**
122
     * Sets the value of the compareAtPrice property.
123
     * 
124
     * @param value
125
     *     allowed object is
126
     *     {@link CurrencyAmount }
127
     *     
128
     */
129
    public void setCompareAtPrice(CurrencyAmount value) {
130
        this.compareAtPrice = value;
131
    }
132
 
133
    /**
134
     * Gets the value of the delete property.
135
     * 
136
     * @return
137
     *     possible object is
138
     *     {@link Boolean }
139
     *     
140
     */
141
    public Boolean isDelete() {
142
        return delete;
143
    }
144
 
145
    /**
146
     * Sets the value of the delete property.
147
     * 
148
     * @param value
149
     *     allowed object is
150
     *     {@link Boolean }
151
     *     
152
     */
153
    public void setDelete(Boolean value) {
154
        this.delete = value;
155
    }
156
 
157
}