Back to project page Book-MetaSearch.
The source code is released under:
Apache License
If you think the Android project Book-MetaSearch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ECS.client.jax; /*from ww w .j a va 2 s . com*/ import java.math.BigInteger; public class LoyaltyPoints { protected BigInteger points; 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; } }