Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9777 manish.sha 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 
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: 2014.02.05 at 12:01:10 PM IST 
6
//
7
 
8
 
9
package com.amazonaws.mws.model;
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 anonymous complex type.
19
 * 
20
 * <p>The following schema fragment specifies the expected content contained within this class.
21
 * 
22
 * <pre>
23
 * &lt;complexType>
24
 *   &lt;complexContent>
25
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26
 *       &lt;sequence>
27
 *         &lt;element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>
28
 *         &lt;element name="Amount">
29
 *           &lt;complexType>
30
 *             &lt;simpleContent>
31
 *               &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>float">
32
 *                 &lt;attribute name="currency" type="{http://www.w3.org/2001/XMLSchema}string" />
33
 *               &lt;/extension>
34
 *             &lt;/simpleContent>
35
 *           &lt;/complexType>
36
 *         &lt;/element>
37
 *       &lt;/sequence>
38
 *     &lt;/restriction>
39
 *   &lt;/complexContent>
40
 * &lt;/complexType>
41
 * </pre>
42
 * 
43
 * 
44
 */
45
@XmlAccessorType(XmlAccessType.FIELD)
46
@XmlType(name = "", propOrder = {
47
    "type",
48
    "amount"
49
})
50
public class Component {
51
 
52
    @XmlElement(name = "Type", required = true)
53
    protected String type;
54
    @XmlElement(name = "Amount", required = true)
55
    protected Amount amount;
56
 
57
    /**
58
     * Gets the value of the type property.
59
     * 
60
     * @return
61
     *     possible object is
62
     *     {@link String }
63
     *     
64
     */
65
    public String getType() {
66
        return type;
67
    }
68
 
69
    /**
70
     * Sets the value of the type property.
71
     * 
72
     * @param value
73
     *     allowed object is
74
     *     {@link String }
75
     *     
76
     */
77
    public void setType(String value) {
78
        this.type = value;
79
    }
80
 
81
    /**
82
     * Gets the value of the amount property.
83
     * 
84
     * @return
85
     *     possible object is
86
     *     {@link Amount }
87
     *     
88
     */
89
    public Amount getAmount() {
90
        return amount;
91
    }
92
 
93
    /**
94
     * Sets the value of the amount property.
95
     * 
96
     * @param value
97
     *     allowed object is
98
     *     {@link Amount }
99
     *     
100
     */
101
    public void setAmount(Amount value) {
102
        this.amount = value;
103
    }
104
 
105
}