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.XmlRootElement; 16 import javax.xml.bind.annotation.XmlSchemaType; 17 import javax.xml.bind.annotation.XmlType; 18 19 20 /** 21 * <p>Java class for anonymous complex type. 22 * 23 * <p>The following schema fragment specifies the expected content contained within this class. 24 * 25 * <pre> 26 * <complexType> 27 * <complexContent> 28 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 29 * <sequence> 30 * <element name="Points" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> 31 * <element name="TypicalRedemptionValue" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Price" minOccurs="0"/> 32 * </sequence> 33 * </restriction> 34 * </complexContent> 35 * </complexType> 36 * </pre> 37 * 38 * 39 */ 40 @XmlAccessorType(XmlAccessType.FIELD) 41 @XmlType(name = "", propOrder = { 42 "points", 43 "typicalRedemptionValue" 44 }) 45 @XmlRootElement(name = "LoyaltyPoints") 46 public class LoyaltyPoints { 47 48 @XmlElement(name = "Points") 49 @XmlSchemaType(name = "nonNegativeInteger") 50 protected BigInteger points; 51 @XmlElement(name = "TypicalRedemptionValue") 52 protected Price typicalRedemptionValue; 53 54 /** 55 * Gets the value of the points property. 56 * 57 * @return 58 * possible object is 59 * {@link BigInteger } 60 * 61 */ 62 public BigInteger getPoints() { 63 return points; 64 } 65 66 /** 67 * Sets the value of the points property. 68 * 69 * @param value 70 * allowed object is 71 * {@link BigInteger } 72 * 73 */ 74 public void setPoints(BigInteger value) { 75 this.points = value; 76 } 77 78 /** 79 * Gets the value of the typicalRedemptionValue property. 80 * 81 * @return 82 * possible object is 83 * {@link Price } 84 * 85 */ 86 public Price getTypicalRedemptionValue() { 87 return typicalRedemptionValue; 88 } 89 90 /** 91 * Sets the value of the typicalRedemptionValue property. 92 * 93 * @param value 94 * allowed object is 95 * {@link Price } 96 * 97 */ 98 public void setTypicalRedemptionValue(Price value) { 99 this.typicalRedemptionValue = value; 100 } 101 102 }