View Javadoc

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 java.math.BigInteger;
12  import javax.xml.bind.annotation.XmlAccessType;
13  import javax.xml.bind.annotation.XmlAccessorType;
14  import javax.xml.bind.annotation.XmlElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for Price complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="Price">
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element name="Amount" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
29   *         &lt;element name="CurrencyCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30   *         &lt;element name="FormattedPrice" type="{http://www.w3.org/2001/XMLSchema}string"/>
31   *       &lt;/sequence>
32   *     &lt;/restriction>
33   *   &lt;/complexContent>
34   * &lt;/complexType>
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "Price", propOrder = {
41      "amount",
42      "currencyCode",
43      "formattedPrice"
44  })
45  public class Price {
46  
47      @XmlElement(name = "Amount")
48      protected BigInteger amount;
49      @XmlElement(name = "CurrencyCode")
50      protected String currencyCode;
51      @XmlElement(name = "FormattedPrice", required = true)
52      protected String formattedPrice;
53  
54      /**
55       * Gets the value of the amount property.
56       * 
57       * @return
58       *     possible object is
59       *     {@link BigInteger }
60       *     
61       */
62      public BigInteger getAmount() {
63          return amount;
64      }
65  
66      /**
67       * Sets the value of the amount property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link BigInteger }
72       *     
73       */
74      public void setAmount(BigInteger value) {
75          this.amount = value;
76      }
77  
78      /**
79       * Gets the value of the currencyCode property.
80       * 
81       * @return
82       *     possible object is
83       *     {@link String }
84       *     
85       */
86      public String getCurrencyCode() {
87          return currencyCode;
88      }
89  
90      /**
91       * Sets the value of the currencyCode property.
92       * 
93       * @param value
94       *     allowed object is
95       *     {@link String }
96       *     
97       */
98      public void setCurrencyCode(String value) {
99          this.currencyCode = value;
100     }
101 
102     /**
103      * Gets the value of the formattedPrice property.
104      * 
105      * @return
106      *     possible object is
107      *     {@link String }
108      *     
109      */
110     public String getFormattedPrice() {
111         return formattedPrice;
112     }
113 
114     /**
115      * Sets the value of the formattedPrice property.
116      * 
117      * @param value
118      *     allowed object is
119      *     {@link String }
120      *     
121      */
122     public void setFormattedPrice(String value) {
123         this.formattedPrice = value;
124     }
125 
126 }