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.XmlAttribute;
14
import javax.xml.bind.annotation.XmlType;
15
import javax.xml.bind.annotation.XmlValue;
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
 * &lt;complexType>
25
 *   &lt;simpleContent>
26
 *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>float">
27
 *       &lt;attribute name="currency" type="{http://www.w3.org/2001/XMLSchema}string" />
28
 *     &lt;/extension>
29
 *   &lt;/simpleContent>
30
 * &lt;/complexType>
31
 * </pre>
32
 * 
33
 * 
34
 */
35
@XmlAccessorType(XmlAccessType.FIELD)
36
@XmlType(name = "", propOrder = {
37
    "value"
38
})
39
public class Amount {
40
 
41
    @XmlValue
42
    protected float value;
43
    @XmlAttribute
44
    protected String currency;
45
 
46
    /**
47
     * Gets the value of the value property.
48
     * 
49
     */
50
    public float getValue() {
51
        return value;
52
    }
53
 
54
    /**
55
     * Sets the value of the value property.
56
     * 
57
     */
58
    public void setValue(float value) {
59
        this.value = value;
60
    }
61
 
62
    /**
63
     * Gets the value of the currency property.
64
     * 
65
     * @return
66
     *     possible object is
67
     *     {@link String }
68
     *     
69
     */
70
    public String getCurrency() {
71
        return currency;
72
    }
73
 
74
    /**
75
     * Sets the value of the currency property.
76
     * 
77
     * @param value
78
     *     allowed object is
79
     *     {@link String }
80
     *     
81
     */
82
    public void setCurrency(String value) {
83
        this.currency = value;
84
    }
85
 
86
}