Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7480 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 java.util.ArrayList;
12
import java.util.List;
13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlElement;
16
import javax.xml.bind.annotation.XmlType;
17
 
18
 
19
/**
20
 * <p>Java class for AmazonFees complex type.
21
 * 
22
 * <p>The following schema fragment specifies the expected content contained within this class.
23
 * 
24
 * <pre>
25
 * &lt;complexType name="AmazonFees">
26
 *   &lt;complexContent>
27
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28
 *       &lt;sequence>
29
 *         &lt;element name="Fee" maxOccurs="unbounded">
30
 *           &lt;complexType>
31
 *             &lt;complexContent>
32
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33
 *                 &lt;sequence>
34
 *                   &lt;element name="Type">
35
 *                     &lt;simpleType>
36
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
37
 *                       &lt;/restriction>
38
 *                     &lt;/simpleType>
39
 *                   &lt;/element>
40
 *                   &lt;element name="Amount" type="{}CurrencyAmount"/>
41
 *                 &lt;/sequence>
42
 *               &lt;/restriction>
43
 *             &lt;/complexContent>
44
 *           &lt;/complexType>
45
 *         &lt;/element>
46
 *       &lt;/sequence>
47
 *     &lt;/restriction>
48
 *   &lt;/complexContent>
49
 * &lt;/complexType>
50
 * </pre>
51
 * 
52
 * 
53
 */
54
@XmlAccessorType(XmlAccessType.FIELD)
55
@XmlType(name = "AmazonFees", propOrder = {
56
    "fee"
57
})
58
public class AmazonFees {
59
 
60
    @XmlElement(name = "Fee", required = true)
61
    protected List<AmazonFees.Fee> fee;
62
 
63
    /**
64
     * Gets the value of the fee property.
65
     * 
66
     * <p>
67
     * This accessor method returns a reference to the live list,
68
     * not a snapshot. Therefore any modification you make to the
69
     * returned list will be present inside the JAXB object.
70
     * This is why there is not a <CODE>set</CODE> method for the fee property.
71
     * 
72
     * <p>
73
     * For example, to add a new item, do as follows:
74
     * <pre>
75
     *    getFee().add(newItem);
76
     * </pre>
77
     * 
78
     * 
79
     * <p>
80
     * Objects of the following type(s) are allowed in the list
81
     * {@link AmazonFees.Fee }
82
     * 
83
     * 
84
     */
85
    public List<AmazonFees.Fee> getFee() {
86
        if (fee == null) {
87
            fee = new ArrayList<AmazonFees.Fee>();
88
        }
89
        return this.fee;
90
    }
91
 
92
 
93
    /**
94
     * <p>Java class for anonymous complex type.
95
     * 
96
     * <p>The following schema fragment specifies the expected content contained within this class.
97
     * 
98
     * <pre>
99
     * &lt;complexType>
100
     *   &lt;complexContent>
101
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
102
     *       &lt;sequence>
103
     *         &lt;element name="Type">
104
     *           &lt;simpleType>
105
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
106
     *             &lt;/restriction>
107
     *           &lt;/simpleType>
108
     *         &lt;/element>
109
     *         &lt;element name="Amount" type="{}CurrencyAmount"/>
110
     *       &lt;/sequence>
111
     *     &lt;/restriction>
112
     *   &lt;/complexContent>
113
     * &lt;/complexType>
114
     * </pre>
115
     * 
116
     * 
117
     */
118
    @XmlAccessorType(XmlAccessType.FIELD)
119
    @XmlType(name = "", propOrder = {
120
        "type",
121
        "amount"
122
    })
123
    public static class Fee {
124
 
125
        @XmlElement(name = "Type", required = true)
126
        protected String type;
127
        @XmlElement(name = "Amount", required = true)
128
        protected CurrencyAmount amount;
129
 
130
        /**
131
         * Gets the value of the type property.
132
         * 
133
         * @return
134
         *     possible object is
135
         *     {@link String }
136
         *     
137
         */
138
        public String getType() {
139
            return type;
140
        }
141
 
142
        /**
143
         * Sets the value of the type property.
144
         * 
145
         * @param value
146
         *     allowed object is
147
         *     {@link String }
148
         *     
149
         */
150
        public void setType(String value) {
151
            this.type = value;
152
        }
153
 
154
        /**
155
         * Gets the value of the amount property.
156
         * 
157
         * @return
158
         *     possible object is
159
         *     {@link CurrencyAmount }
160
         *     
161
         */
162
        public CurrencyAmount getAmount() {
163
            return amount;
164
        }
165
 
166
        /**
167
         * Sets the value of the amount property.
168
         * 
169
         * @param value
170
         *     allowed object is
171
         *     {@link CurrencyAmount }
172
         *     
173
         */
174
        public void setAmount(CurrencyAmount value) {
175
            this.amount = value;
176
        }
177
 
178
    }
179
 
180
}