Blame | Last modification | View Log | RSS feed
package com.hotspotstore.model;import java.util.List;public class ItemPojo {private Double sellingPrice;private Double mrp;private Long id;private String color;private Double minEmi;private String buttonText;private Boolean showSellingPrice = true;private Boolean comingSoon = false;private String statusDescription;private String bestDealText;public Double getSellingPrice() {return sellingPrice;}public void setSellingPrice(Double sellingPrice) {this.sellingPrice = sellingPrice;}public Double getMrp() {return mrp;}public void setMrp(Double mrp) {this.mrp = mrp;}public Long getId() {return id;}public void setId(Long id) {this.id = id;}/*public boolean isAvailability() {return availability;}public void setAvailability(boolean availability) {this.availability = availability;}*/public void setColor(String color) {this.color = color;}public String getColor() {return color;}public void setMinEmi(double minEmi) {this.minEmi = minEmi;}public double getMinEmi() {return minEmi;}public void setButtonText(String buttonText) {this.buttonText = buttonText;}public String getButtonText() {return buttonText;}public void setShowSellingPrice(Boolean showSellingPrice) {this.showSellingPrice = showSellingPrice;}public Boolean getShowSellingPrice() {return showSellingPrice;}public void setComingSoon(Boolean comingSoon) {this.comingSoon = comingSoon;}public Boolean getComingSoon() {return comingSoon;}public void setStatusDescription(String statusDescription) {this.statusDescription = statusDescription;}public String getStatusDescription() {return statusDescription;}public void setBestDealText(String bestDealText) {this.bestDealText = bestDealText;}public String getBestDealText() {return bestDealText;}}