| 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 |
* <complexType>
|
|
|
24 |
* <complexContent>
|
|
|
25 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
26 |
* <sequence>
|
|
|
27 |
* <element name="ShipPromotionDiscount" type="{http://www.w3.org/2001/XMLSchema}float"/>
|
|
|
28 |
* <element name="ItemPromotionDiscount" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
|
|
|
29 |
* </sequence>
|
|
|
30 |
* </restriction>
|
|
|
31 |
* </complexContent>
|
|
|
32 |
* </complexType>
|
|
|
33 |
* </pre>
|
|
|
34 |
*
|
|
|
35 |
*
|
|
|
36 |
*/
|
|
|
37 |
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
38 |
@XmlType(name = "", propOrder = {
|
|
|
39 |
"shipPromotionDiscount",
|
|
|
40 |
"itemPromotionDiscount"
|
|
|
41 |
})
|
|
|
42 |
public class Promotion {
|
|
|
43 |
|
|
|
44 |
@XmlElement(name = "ShipPromotionDiscount")
|
|
|
45 |
protected float shipPromotionDiscount;
|
|
|
46 |
@XmlElement(name = "ItemPromotionDiscount")
|
|
|
47 |
protected Float itemPromotionDiscount;
|
|
|
48 |
|
|
|
49 |
/**
|
|
|
50 |
* Gets the value of the shipPromotionDiscount property.
|
|
|
51 |
*
|
|
|
52 |
*/
|
|
|
53 |
public float getShipPromotionDiscount() {
|
|
|
54 |
return shipPromotionDiscount;
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
/**
|
|
|
58 |
* Sets the value of the shipPromotionDiscount property.
|
|
|
59 |
*
|
|
|
60 |
*/
|
|
|
61 |
public void setShipPromotionDiscount(float value) {
|
|
|
62 |
this.shipPromotionDiscount = value;
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
/**
|
|
|
66 |
* Gets the value of the itemPromotionDiscount property.
|
|
|
67 |
*
|
|
|
68 |
* @return
|
|
|
69 |
* possible object is
|
|
|
70 |
* {@link Float }
|
|
|
71 |
*
|
|
|
72 |
*/
|
|
|
73 |
public Float getItemPromotionDiscount() {
|
|
|
74 |
return itemPromotionDiscount;
|
|
|
75 |
}
|
|
|
76 |
|
|
|
77 |
/**
|
|
|
78 |
* Sets the value of the itemPromotionDiscount property.
|
|
|
79 |
*
|
|
|
80 |
* @param value
|
|
|
81 |
* allowed object is
|
|
|
82 |
* {@link Float }
|
|
|
83 |
*
|
|
|
84 |
*/
|
|
|
85 |
public void setItemPromotionDiscount(Float value) {
|
|
|
86 |
this.itemPromotionDiscount = value;
|
|
|
87 |
}
|
|
|
88 |
|
|
|
89 |
}
|