package com.ECS.client.jax;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Points" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
* <element name="TypicalRedemptionValue" type="{http://webservices.amazon.com/AWSECommerceService/2010-11-01}Price" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"points",
"typicalRedemptionValue"
})
@XmlRootElement(name = "LoyaltyPoints")
public class LoyaltyPoints {
@XmlElement(name = "Points")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger points;
@XmlElement(name = "TypicalRedemptionValue")
protected Price typicalRedemptionValue;
/**
* Gets the value of the points property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getPoints() {
return points;
}
/**
* Sets the value of the points property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setPoints(BigInteger value) {
this.points = value;
}
/**
* Gets the value of the typicalRedemptionValue property.
*
* @return
* possible object is
* {@link Price }
*
*/
public Price getTypicalRedemptionValue() {
return typicalRedemptionValue;
}
/**
* Sets the value of the typicalRedemptionValue property.
*
* @param value
* allowed object is
* {@link Price }
*
*/
public void setTypicalRedemptionValue(Price value) {
this.typicalRedemptionValue = value;
}
}