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; /* w ww . j a v a2 s . co m*/ public class OfferSummary { protected Price lowestNewPrice; protected Price lowestUsedPrice; protected Price lowestCollectiblePrice; protected Price lowestRefurbishedPrice; protected String totalNew; protected String totalUsed; protected String totalCollectible; protected String totalRefurbished; /** * Gets the value of the lowestNewPrice property. * * @return * possible object is * {@link Price } * */ public Price getLowestNewPrice() { return lowestNewPrice; } /** * Sets the value of the lowestNewPrice property. * * @param value * allowed object is * {@link Price } * */ public void setLowestNewPrice(Price value) { this.lowestNewPrice = value; } /** * Gets the value of the lowestUsedPrice property. * * @return * possible object is * {@link Price } * */ public Price getLowestUsedPrice() { return lowestUsedPrice; } /** * Sets the value of the lowestUsedPrice property. * * @param value * allowed object is * {@link Price } * */ public void setLowestUsedPrice(Price value) { this.lowestUsedPrice = value; } /** * Gets the value of the lowestCollectiblePrice property. * * @return * possible object is * {@link Price } * */ public Price getLowestCollectiblePrice() { return lowestCollectiblePrice; } /** * Sets the value of the lowestCollectiblePrice property. * * @param value * allowed object is * {@link Price } * */ public void setLowestCollectiblePrice(Price value) { this.lowestCollectiblePrice = value; } /** * Gets the value of the lowestRefurbishedPrice property. * * @return * possible object is * {@link Price } * */ public Price getLowestRefurbishedPrice() { return lowestRefurbishedPrice; } /** * Sets the value of the lowestRefurbishedPrice property. * * @param value * allowed object is * {@link Price } * */ public void setLowestRefurbishedPrice(Price value) { this.lowestRefurbishedPrice = value; } /** * Gets the value of the totalNew property. * * @return * possible object is * {@link String } * */ public String getTotalNew() { return totalNew; } /** * Sets the value of the totalNew property. * * @param value * allowed object is * {@link String } * */ public void setTotalNew(String value) { this.totalNew = value; } /** * Gets the value of the totalUsed property. * * @return * possible object is * {@link String } * */ public String getTotalUsed() { return totalUsed; } /** * Sets the value of the totalUsed property. * * @param value * allowed object is * {@link String } * */ public void setTotalUsed(String value) { this.totalUsed = value; } /** * Gets the value of the totalCollectible property. * * @return * possible object is * {@link String } * */ public String getTotalCollectible() { return totalCollectible; } /** * Sets the value of the totalCollectible property. * * @param value * allowed object is * {@link String } * */ public void setTotalCollectible(String value) { this.totalCollectible = value; } /** * Gets the value of the totalRefurbished property. * * @return * possible object is * {@link String } * */ public String getTotalRefurbished() { return totalRefurbished; } /** * Sets the value of the totalRefurbished property. * * @param value * allowed object is * {@link String } * */ public void setTotalRefurbished(String value) { this.totalRefurbished = value; } }